001/* 002 * Copyright 2007 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 org.kuali.rice.core.api.util.type.KualiDecimal; 019 020import java.math.BigDecimal; 021 022import javax.persistence.Transient; 023 024 025/** 026 * This class represents the "source" grouping of accounting lines in a given document. Its counterpart is the TargetAccountingLine 027 * class. Both objects' data is stored in the DB in a single table named "FP_ACCT_LINES_T." Most documents follow the "source" and 028 * "target" patterns. Source Accounting Line Business Object 029 */ 030public class SourceAccountingLine extends AccountingLineBase { 031 032 private static final long serialVersionUID = -2699347311790831686L; 033 /** 034 * This Non Persistable field is used to calculate charges in account summary based on proration. 035 */ 036 @Transient 037 private KualiDecimal sourceAccountQty; 038 039 public KualiDecimal getSourceAccountQty() { 040 return sourceAccountQty; 041 } 042 043 public void setSourceAccountQty(KualiDecimal sourceAccountQty) { 044 this.sourceAccountQty = sourceAccountQty; 045 } 046 047 /** 048 * This constructor needs to initialize the financialDocumentLineTypeCode attribute to the value for this class. 049 */ 050 public SourceAccountingLine() { 051 super(); 052 super.financialDocumentLineTypeCode = "F"; 053 } 054 055 056 057 058}