Author: jleroux
Date: Fri Oct 16 12:09:56 2015
New Revision: 1708969
URL:
http://svn.apache.org/viewvc?rev=1708969&view=revLog:
A patch from Pierre Smits for "PartyRole Lifespan fields - Have QuoteRole entity work with the change"
https://issues.apache.org/jira/browse/OFBIZ-6679This adds the from an thru date to the QuoteRole entity
Modified:
ofbiz/trunk/applications/order/entitydef/entitymodel.xml
Modified: ofbiz/trunk/applications/order/entitydef/entitymodel.xml
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/entitydef/entitymodel.xml?rev=1708969&r1=1708968&r2=1708969&view=diff==============================================================================
--- ofbiz/trunk/applications/order/entitydef/entitymodel.xml (original)
+++ ofbiz/trunk/applications/order/entitydef/entitymodel.xml Fri Oct 16 12:09:56 2015
@@ -1508,9 +1508,11 @@ under the License.
<entity entity-name="QuoteRole"
package-name="org.ofbiz.order.quote"
title="Quote Role Entity">
- <field name="quoteId" type="id-ne"></field>
- <field name="partyId" type="id-ne"></field>
- <field name="roleTypeId" type="id-ne"></field>
+ <field name="quoteId" type="id-ne"/>
+ <field name="partyId" type="id-ne"/>
+ <field name="roleTypeId" type="id-ne"/>
+ <field name="fromDate" type="date-time"/>
+ <field name="thruDate" type="date-time"/>
<prim-key field="quoteId"/>
<prim-key field="partyId"/>
<prim-key field="roleTypeId"/>