Author: jacopoc
Date: Sun Jul 2 01:08:19 2006 New Revision: 418560 URL: http://svn.apache.org/viewvc?rev=418560&view=rev Log: In agreement term forms, termTypeId is mandatory, invoiceItemTypeId is optional. Modified: incubator/ofbiz/trunk/applications/accounting/webapp/accounting/agreement/AgreementForms.xml Modified: incubator/ofbiz/trunk/applications/accounting/webapp/accounting/agreement/AgreementForms.xml URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/accounting/webapp/accounting/agreement/AgreementForms.xml?rev=418560&r1=418559&r2=418560&view=diff ============================================================================== --- incubator/ofbiz/trunk/applications/accounting/webapp/accounting/agreement/AgreementForms.xml (original) +++ incubator/ofbiz/trunk/applications/accounting/webapp/accounting/agreement/AgreementForms.xml Sun Jul 2 01:08:19 2006 @@ -169,6 +169,9 @@ <field name="termTypeId" title="${uiLabelMap.AccountingTermTypeId}"> <display-entity entity-name="TermType"/> </field> + <field name="invoiceItemTypeId"> + <display-entity entity-name="InvoiceItemType" /> + </field> <field name="deleteLink" title="" widget-style="buttontext"> <hyperlink target="removeAgreementItemTerm?agreementTermId=${agreementTermId}&agreementId=${agreementId}&agreementItemSeqId=${agreementItemSeqId}" description="[${uiLabelMap.CommonRemove}]" also-hidden="false"/> </field> @@ -192,7 +195,7 @@ <display-entity entity-name="TermType"/> </field> <field name="invoiceItemTypeId" widget-style="selectBox"> - <drop-down allow-empty="false"> + <drop-down allow-empty="true"> <entity-options entity-name="InvoiceItemType" description="${description}"> <entity-order-by field-name="description"/> </entity-options> @@ -209,14 +212,14 @@ <auto-fields-entity entity-name="AgreementTerm" default-field-type="edit"/> <field name="agreementTermId" title="${uiLabelMap.AccountingAgreementTermId}"><hidden/></field> <field name="termTypeId" title="${uiLabelMap.AccountingTermTypeId}"> - <drop-down allow-empty="true"> + <drop-down allow-empty="false"> <entity-options entity-name="TermType" description="${description}"/> </drop-down> </field> <field name="agreementId" title="${uiLabelMap.AccountingAgreementId}"><hidden/></field> <field name="agreementItemSeqId" title="${uiLabelMap.AccountingAgreementItemSeqId}"><hidden/></field> <field name="invoiceItemTypeId" widget-style="selectBox"> - <drop-down allow-empty="false"> + <drop-down allow-empty="true"> <entity-options entity-name="InvoiceItemType" description="${description}"> <entity-order-by field-name="description"/> </entity-options> @@ -233,12 +236,19 @@ <auto-fields-entity entity-name="AgreementTerm" default-field-type="edit"/> <field name="agreementTermId" title="${uiLabelMap.AccountingAgreementTermId}"><display/></field> <field name="termTypeId" title="${uiLabelMap.AccountingTermTypeId}"> - <drop-down allow-empty="true"> + <drop-down allow-empty="false"> <entity-options entity-name="TermType" description="${description}"/> </drop-down> </field> <field name="agreementId" title="${uiLabelMap.AccountingAgreementId}"><hidden/></field> <field name="agreementItemSeqId" title="${uiLabelMap.AccountingAgreementItemSeqId}"><hidden/></field> + <field name="invoiceItemTypeId" widget-style="selectBox"> + <drop-down allow-empty="true"> + <entity-options entity-name="InvoiceItemType" description="${description}"> + <entity-order-by field-name="description"/> + </entity-options> + </drop-down> + </field> <field name="submitButton" title="${uiLabelMap.CommonSubmit}" widget-style="smallSubmit"> <submit button-type="button"/> </field> |
Free forum by Nabble | Edit this page |