1 /*
2 * The Kuali Financial System, a comprehensive financial management system for higher education.
3 *
4 * Copyright 2005-2014 The Kuali Foundation
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU Affero General Public License as
8 * published by the Free Software Foundation, either version 3 of the
9 * License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Affero General Public License for more details.
15 *
16 * You should have received a copy of the GNU Affero General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19 package org.kuali.kfs.fp.document.authorization;
20
21 import org.kuali.kfs.fp.document.service.YearEndPendingEntryService;
22 import org.kuali.kfs.sys.context.SpringContext;
23 import org.kuali.kfs.sys.document.FinancialSystemTransactionalDocument;
24 import org.kuali.kfs.sys.document.LedgerPostingDocument;
25 import org.kuali.kfs.sys.document.authorization.FinancialSystemTransactionalDocumentPresentationControllerBase;
26 import org.springframework.util.ObjectUtils;
27
28 public class YearEndDistributionOfIncomeAndExpenseDocumentPresentationController extends DistributionOfIncomeAndExpenseDocumentPresentationController {
29
30 /**
31 * @see org.kuali.kfs.sys.document.authorization.FinancialSystemTransactionalDocumentPresentationControllerBase#canErrorCorrect(org.kuali.kfs.sys.document.FinancialSystemTransactionalDocument)
32 */
33 @Override
34 public boolean canErrorCorrect(FinancialSystemTransactionalDocument document) {
35
36 //We have to do this because we couldn't call super.canErrorCorrect, because we cannot use the
37 //canErrorCorrect method in LedgerPostingDocumentPresentationControllerBase for year end documents,
38 //which will return false if the posting year is not equal to current fiscal year. All of the year end
39 //documents are supposed to have previous fiscal year as posting year, therefore it will always be
40 //false and will cause the year end documents not error correctable.
41
42 FinancialSystemTransactionalDocumentPresentationControllerBase presentationController = new FinancialSystemTransactionalDocumentPresentationControllerBase();
43
44 final boolean result = presentationController.canErrorCorrect(document);
45
46 if (result) {
47 YearEndPendingEntryService yearEndPendingEntryService = SpringContext.getBean(YearEndPendingEntryService.class);
48 Integer previousFiscalYear = yearEndPendingEntryService.getPreviousFiscalYear();
49 if (!ObjectUtils.nullSafeEquals(previousFiscalYear, ((LedgerPostingDocument)document).getPostingYear())) {
50 return false;
51 }
52 }
53 return result;
54 }
55
56 }