Author: jleroux
Date: Thu Sep 26 12:38:04 2013
New Revision: 1526463
URL:
http://svn.apache.org/r1526463Log:
A patch from Maurice Meyer for " Materials Required By The Running Task in ProductionRunDeclaration doesn't show product names"
https://issues.apache.org/jira/browse/OFBIZ-4895When having started the task in a production run required materials and/or components are shown. However the overview only shows productIds
In ProductionRunForms.xml someone accidentally used productName instead of internalName to get the name of the product.
Modified:
ofbiz/trunk/applications/manufacturing/widget/manufacturing/ProductionRunForms.xml
Modified: ofbiz/trunk/applications/manufacturing/widget/manufacturing/ProductionRunForms.xml
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/applications/manufacturing/widget/manufacturing/ProductionRunForms.xml?rev=1526463&r1=1526462&r2=1526463&view=diff==============================================================================
--- ofbiz/trunk/applications/manufacturing/widget/manufacturing/ProductionRunForms.xml (original)
+++ ofbiz/trunk/applications/manufacturing/widget/manufacturing/ProductionRunForms.xml Thu Sep 26 12:38:04 2013
@@ -324,7 +324,7 @@ under the License.
<display description="${workEffortName} [${workEffortId}]" also-hidden="false"/>
</field>
<field name="internalName" title="${uiLabelMap.ProductProductName}">
- <display description="${productName} [${productId}]" also-hidden="false"/>
+ <display description="${internalName} [${productId}]" also-hidden="false"/>
</field>
<field name="estimatedQuantity" title="${uiLabelMap.ManufacturingQuantity}"><display also-hidden="false"/></field>
<field name="issuedQuantity" title="${uiLabelMap.ManufacturingIssuedQuantity}"><display also-hidden="false"/></field>
@@ -414,7 +414,7 @@ under the License.
<display description="${workEffortName} [${workEffortId}]"/>
</field>
<field name="internalName" title="${uiLabelMap.ProductProductName}">
- <display description="${productName} [${productId}]" also-hidden="false"/>
+ <display description="${internalName} [${productId}]" also-hidden="false"/>
</field>
<field name="estimatedQuantity" title="${uiLabelMap.ManufacturingQuantity}"><display also-hidden="false"/></field>
<field name="issuedQuantity" title="${uiLabelMap.ManufacturingIssuedQuantity}"><display also-hidden="false"/></field>
@@ -449,7 +449,7 @@ under the License.
<display description="${workEffortName} [${workEffortId}]"/>
</field>
<field name="internalName" title="${uiLabelMap.ProductProductName}">
- <display description="${productName} [${productId}]" also-hidden="false"/>
+ <display description="${internalName} [${productId}]" also-hidden="false"/>
</field>
<field name="estimatedQuantity" title="${uiLabelMap.ManufacturingQuantity}"><display also-hidden="false"/></field>
<field name="issuedQuantity" title="${uiLabelMap.ManufacturingIssuedQuantity}"><display also-hidden="false"/></field>