View • Attachments (0) • Info
| Version | Date | User | Description |
|---|---|---|---|
| 1.0 | 04/21/2009 | |
Initial Spec |
| 1.1 | 04/21/2009 | |
Final Spec (includes development steps taken) |
| 1.2 | 09/29/2009 | |
Includes redefinition of importedLineParserClass |
Currently, several FP eDocs have a Line Description field on each accounting line. The Distribution of Income and Expense document (DI) doesn't have a Line Description on the accounting lines. This needs to be added.
<bean id="DistributionOfIncomeAndExpense-sourceAccountingLineGroup" parent="DistributionOfIncomeAndExpense-sourceAccountingLineGroup-parentBean"> <property name="accountingLineView" ref="DistributionOfIncomeAndExpense-accountingLineAddition" /> </bean> <bean id="DistributionOfIncomeAndExpense-targetAccountingLineGroup" parent="DistributionOfIncomeAndExpense-targetAccountingLineGroup-parentBean"> <property name="accountingLineView" ref="DistributionOfIncomeAndExpense-accountingLineAddition" /> </bean> <!-- new beans --> <bean id="DistributionOfIncomeAndExpense-accountingLineAddition" parent="DistributionOfIncomeAndExpense-accountingLineAddition-parent" /> <bean id="DistributionOfIncomeAndExpense-accountingLineAddition-parent" parent="AccountingLineView" abstract="true"> <property name="elements"> <list> <bean parent="AccountingLineView-sequenceNumber" /> <bean parent="AccountingLineView-lines"> <property name="lines"> <list> <ref bean="accountingInformation" /> <bean parent="AccountingLineView-line"> <property name="elementName" value="lineDescription"/> <property name="fields"> <list> <bean parent="AccountingLineView-field" p:name="financialDocumentLineDescription" p:overrideColSpan="2"/> </list> </property> </bean> <ref bean="salesTaxInformation" /> </list> </property> </bean> <bean parent="AccountingLineView-field" p:name="amount" p:required="true" /> <bean parent="AccountingLineView-actions" /> </list> </property> </bean>
<bean id="DistributionOfIncomeAndExpenseDocument" parent="DistributionOfIncomeAndExpenseDocument-parentBean"> <property name="importedLineParserClass" value="org.kuali.kfs.fp.businessobject.BasicFormatWithLineDescriptionAccountingLineParser"/> </bean>
|
Browse Space |
Explore Confluence |
Your Account |
Add Content |