You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by jl...@apache.org on 2013/09/26 14:38:05 UTC

svn commit: r1526463 - /ofbiz/trunk/applications/manufacturing/widget/manufacturing/ProductionRunForms.xml

Author: jleroux
Date: Thu Sep 26 12:38:04 2013
New Revision: 1526463

URL: http://svn.apache.org/r1526463
Log:
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-4895

When 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>