This is an automated email from the ASF dual-hosted git repository.
surajk pushed a commit to branch release18.12
in repository
https://gitbox.apache.org/repos/asf/ofbiz-framework.gitThe following commit(s) were added to refs/heads/release18.12 by this push:
new e1f3cd9 Fixed: ViewQuoteProfit shows fields in wrong order. (OFBIZ-11680) Thanks Pierre for reporting and Lalit Dashora for providing the patch.
e1f3cd9 is described below
commit e1f3cd92c36f8148e2902d83c324d012853e870e
Author: Suraj Khurana <
[hidden email]>
AuthorDate: Fri Feb 12 10:59:11 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>