[OFBiz] SVN: r6000 - trunk/applications/workeffort/entitydef
jacopo at svn.ofbiz.org
jacopo at svn.ofbiz.org
Fri Oct 21 10:07:48 EDT 2005
Author: jacopo
Date: 2005-10-21 09:07:42 -0500 (Fri, 21 Oct 2005)
New Revision: 6000
Modified:
trunk/applications/workeffort/entitydef/entitymodel.xml
Log:
Added "estimateCalcMethod" field to the WorkEffort entity to store the CustomMethod id, useful to retrieve a service to use for calculating estimates for WorkEfforts.
Modified: trunk/applications/workeffort/entitydef/entitymodel.xml
===================================================================
--- trunk/applications/workeffort/entitydef/entitymodel.xml 2005-10-21 13:58:25 UTC (rev 5999)
+++ trunk/applications/workeffort/entitydef/entitymodel.xml 2005-10-21 14:07:42 UTC (rev 6000)
@@ -256,6 +256,7 @@
<field name="actualCompletionDate" type="date-time"></field>
<field name="estimatedMilliSeconds" type="floating-point"></field>
<field name="estimatedSetupMillis" type="floating-point"></field>
+ <field name="estimateCalcMethod" type="id"></field>
<field name="actualMilliSeconds" type="floating-point"></field>
<field name="actualSetupMillis" type="floating-point"></field>
<field name="totalMilliSecondsAllowed" type="floating-point"></field>
@@ -339,6 +340,9 @@
<key-map field-name="workflowProcessVersion" rel-field-name="processVersion"/>
<key-map field-name="workflowActivityId" rel-field-name="activityId"/>
</relation>
+ <relation type="one" fk-name="WK_EFFRT_CUS_MET" rel-entity-name="CustomMethod">
+ <key-map field-name="estimateCalcMethod" rel-field-name="customMethodId"/>
+ </relation>
</entity>
<view-entity entity-name="WorkEffortAndFulfillment"
package-name="org.ofbiz.workeffort.workeffort"
More information about the Svn
mailing list