001/*
002 * Copyright 2008 The Kuali Foundation
003 *
004 * Licensed under the Educational Community License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 * http://www.opensource.org/licenses/ecl2.php
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016package org.kuali.ole.sys.businessobject;
017
018import java.sql.Date;
019
020import org.apache.commons.lang.StringUtils;
021import org.kuali.ole.sys.OLEConstants;
022import org.kuali.ole.sys.context.SpringContext;
023import org.kuali.rice.core.api.util.type.KualiDecimal;
024import org.kuali.rice.kew.api.WorkflowDocument;
025import org.kuali.rice.kew.api.exception.WorkflowException;
026import org.kuali.rice.krad.bo.DocumentHeader;
027import org.kuali.rice.krad.util.GlobalVariables;
028import org.kuali.rice.krad.workflow.service.WorkflowDocumentService;
029
030/**
031 * This class is a custom {@link DocumentHeader} class used by OLE to facilitate custom data fields and a few UI fields
032 */
033public class FinancialSystemDocumentHeader extends DocumentHeader {
034
035    protected KualiDecimal financialDocumentTotalAmount;
036    protected String correctedByDocumentId;
037    protected String financialDocumentInErrorNumber;
038    protected String financialDocumentStatusCode;
039
040    /**
041     * Constructor - creates empty instances of dependent objects
042     *
043     */
044    public FinancialSystemDocumentHeader() {
045        super();
046        financialDocumentStatusCode = OLEConstants.DocumentStatusCodes.INITIATED;
047    }
048
049    /**
050     * Gets the financialDocumentTotalAmount attribute.
051     * @return Returns the financialDocumentTotalAmount.
052     */
053    public KualiDecimal getFinancialDocumentTotalAmount() {
054        return financialDocumentTotalAmount;
055    }
056
057    /**
058     * Sets the financialDocumentTotalAmount attribute value.
059     * @param financialDocumentTotalAmount The financialDocumentTotalAmount to set.
060     */
061    public void setFinancialDocumentTotalAmount(KualiDecimal financialDocumentTotalAmount) {
062        this.financialDocumentTotalAmount = financialDocumentTotalAmount;
063    }
064
065    /**
066     * Gets the correctedByDocumentId attribute.
067     * @return Returns the correctedByDocumentId.
068     */
069    public String getCorrectedByDocumentId() {
070        return correctedByDocumentId;
071    }
072
073    /**
074     * Sets the correctedByDocumentId attribute value.
075     * @param correctedByDocumentId The correctedByDocumentId to set.
076     */
077    public void setCorrectedByDocumentId(String correctedByDocumentId) {
078        this.correctedByDocumentId = correctedByDocumentId;
079    }
080
081    /**
082     * Gets the financialDocumentInErrorNumber attribute.
083     * @return Returns the financialDocumentInErrorNumber.
084     */
085    public String getFinancialDocumentInErrorNumber() {
086        return financialDocumentInErrorNumber;
087    }
088
089    /**
090     * Sets the financialDocumentInErrorNumber attribute value.
091     * @param financialDocumentInErrorNumber The financialDocumentInErrorNumber to set.
092     */
093    public void setFinancialDocumentInErrorNumber(String financialDocumentInErrorNumber) {
094        this.financialDocumentInErrorNumber = financialDocumentInErrorNumber;
095    }
096
097    /**
098     * Gets the financialDocumentStatusCode attribute.
099     * @return Returns the financialDocumentStatusCode.
100     */
101    public String getFinancialDocumentStatusCode() {
102        return financialDocumentStatusCode;
103    }
104
105    /**
106     * Sets the financialDocumentStatusCode attribute value.
107     * @param financialDocumentStatusCode The financialDocumentStatusCode to set.
108     */
109    public void setFinancialDocumentStatusCode(String financialDocumentStatusCode) {
110        this.financialDocumentStatusCode = financialDocumentStatusCode;
111    }
112
113    /**
114     * Gets the documentFinalDate attribute.
115     * @return Returns the documentFinalDate.
116     */
117    public Date getDocumentFinalDate() {
118        WorkflowDocument workflowDoc = this.getWorkflowDocument();
119        if (workflowDoc == null || (workflowDoc.getDateFinalized() == null)) {
120            return null;
121        }
122        return  new java.sql.Date(workflowDoc.getDateFinalized().getMillis());
123    }
124
125    /**
126     * Gets the applicationDocumentStatus attribute.
127     *
128     * @return Returns the applicationDocumentStatus
129     */
130
131    public String getApplicationDocumentStatus() {
132        WorkflowDocument document = getWorkflowDocument();
133        return StringUtils.trimToEmpty(document.getApplicationDocumentStatus());
134    }
135
136    /**
137     * Sets the applicationDocumentStatus attribute.
138     *
139     * @param applicationDocumentStatus The applicationDocumentStatus to set.
140     */
141    public void setApplicationDocumentStatus(String applicationDocumentStatus) {
142        WorkflowDocument document = getWorkflowDocument();
143
144        document.setApplicationDocumentStatus(applicationDocumentStatus);
145    }
146
147    /**
148     * method to retrieve the workflow document for the given documentHeader.
149     *
150     * @return workflowDocument
151     */
152    @Override
153    public WorkflowDocument getWorkflowDocument() {
154
155        WorkflowDocument workflowDocument = null;
156
157        if (hasWorkflowDocument()) {
158            workflowDocument = super.getWorkflowDocument();
159        }
160
161        try {
162            if (workflowDocument != null) {
163                return workflowDocument;
164            }
165            if ( StringUtils.isNotBlank(getDocumentNumber()) ) {
166                workflowDocument = SpringContext.getBean(WorkflowDocumentService.class).loadWorkflowDocument(getDocumentNumber(), GlobalVariables.getUserSession().getPerson());
167            } else {
168                throw new RuntimeException("Document number is blank/null.  Unable to load a WorkflowDocument" );
169            }
170        }
171        catch (WorkflowException we) {
172            throw new RuntimeException("Unable to load a WorkflowDocument object for " + getDocumentNumber(), we);
173        }
174
175        return workflowDocument;
176    }
177
178    /**
179     * Updates status of this document and saves the workflow data
180     *
181     * @param applicationDocumentStatus is the app doc status to save
182     * @throws WorkflowException
183     */
184    public void updateAndSaveAppDocStatus(String applicationDocumentStatus) throws WorkflowException {
185       setApplicationDocumentStatus(applicationDocumentStatus);
186       // if the document is Initiated, then it has not been saved yet
187       // So, we don't need to save the routing data since the document
188       // has not been submitted to the workflow engine yet
189       if ( !getWorkflowDocument().isInitiated() ) {
190           SpringContext.getBean(WorkflowDocumentService.class).saveRoutingData(getWorkflowDocument());
191       }
192    }
193
194}