[ofbiz-framework] branch release17.12 updated: Fixed: ViewQuoteProfit shows fields in wrong order. (OFBIZ-11680) Thanks Pierre for reporting and Lalit Dashora for providing the patch.

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

[ofbiz-framework] branch release17.12 updated: Fixed: ViewQuoteProfit shows fields in wrong order. (OFBIZ-11680) Thanks Pierre for reporting and Lalit Dashora for providing the patch.

surajk
This is an automated email from the ASF dual-hosted git repository.

surajk pushed a commit to branch release17.12
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git


The following commit(s) were added to refs/heads/release17.12 by this push:
     new a5e9676  Fixed: ViewQuoteProfit shows fields in wrong order. (OFBIZ-11680) Thanks Pierre for reporting and Lalit Dashora for providing the patch.
a5e9676 is described below

commit a5e96763e4cca40be15fe638bf35effff0b1cfb5
Author: Suraj Khurana <[hidden email]>
AuthorDate: Fri Feb 12 11:12:17 2021 +0530

    Fixed: ViewQuoteProfit shows fields in wrong order.
    (OFBIZ-11680)
    Thanks Pierre for reporting and Lalit Dashora for providing the patch.
---
 applications/order/widget/ordermgr/QuoteForms.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/applications/order/widget/ordermgr/QuoteForms.xml b/applications/order/widget/ordermgr/QuoteForms.xml
index 0bb69f2..f0d8781 100644
--- a/applications/order/widget/ordermgr/QuoteForms.xml
+++ b/applications/order/widget/ordermgr/QuoteForms.xml
@@ -454,8 +454,8 @@ under the License.
             <display-entity entity-name="Product" key-field-name="productId" description="${productId} - ${internalName}"/>
         </field>
         <field name="quantity" title="${uiLabelMap.CommonQuantity}"><display/></field>
-        <field name="averageCost" title="${uiLabelMap.OrderOrderQuoteAverageCost}"><display/></field>
         <field name="quoteUnitPrice" title="${uiLabelMap.OrderOrderQuoteUnitPrice}"><display/></field>
+        <field name="averageCost" title="${uiLabelMap.OrderOrderQuoteAverageCost}"><display/></field>
         <field name="profit" title="${uiLabelMap.OrderOrderQuoteProfit}"><display/></field>
         <field name="percProfit" title="${uiLabelMap.OrderOrderQuotePercProfit}"><display/></field>
     </form>