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

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


The following commit(s) were added to refs/heads/trunk by this push:
     new 0c7823c3bf Fixed: Accounts Payable Past Due Invoices doesn't show 
outstanding amount (OFBIZ-13068) (#786)
0c7823c3bf is described below

commit 0c7823c3bf0f2359f14bab5d7d574847002649f2
Author: Pierre Smits <pierre.sm...@somonar.com>
AuthorDate: Thu Apr 25 13:04:41 2024 +0200

    Fixed: Accounts Payable Past Due Invoices doesn't show outstanding amount 
(OFBIZ-13068) (#786)
    
    With recent changes via commit ec0adc02f102d75be15e1ee04062b75621219f0d 
[ec0adc02f1] the field outstanding got replaced with amountToApply in grid 
ListApReport.
    
    modified: InvoiceForms.xml
    - replaced field amountToApply with outstanding in grid ListApReport
    - corrected style of field total and outstanding in grid ListArReport
    - corrected style of field total and outstanding in grid ListApReport
---
 applications/accounting/widget/InvoiceForms.xml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/applications/accounting/widget/InvoiceForms.xml 
b/applications/accounting/widget/InvoiceForms.xml
index c398276662..60f6c5177f 100644
--- a/applications/accounting/widget/InvoiceForms.xml
+++ b/applications/accounting/widget/InvoiceForms.xml
@@ -771,8 +771,8 @@ under the License.
         <field name="statusId" 
title="${uiLabelMap.CommonStatus}"><display-entity 
entity-name="StatusItem"/></field>
         <field name="invoiceDate"><display type="date"/></field>
         <field name="dueDate"><display type="date"/></field>
-        <field name="total" widget-area-style="align-text"><display 
type="currency" currency="${currencyUomId}"/></field>
-        <field name="outstanding" widget-area-style="align-text"><display 
type="currency" currency="${currencyUomId}"/></field>
+        <field name="total" widget-area-style="align-right" 
title-area-style="align-right"><display type="currency" 
currency="${currencyUomId}"/></field>
+        <field name="outstanding" widget-area-style="align-right" 
title-area-style="align-right"><display type="currency" 
currency="${currencyUomId}"/></field>
     </grid>
     <grid name="ListApReport" separate-columns="true" title="Invoice List" 
list-name="invoices" target=""
         odd-row-style="alternate-row" default-table-style="basic-table 
hover-bar" paginate="true" paginate-target="main">
@@ -804,7 +804,7 @@ under the License.
         <field name="statusId" 
title="${uiLabelMap.CommonStatus}"><display-entity 
entity-name="StatusItem"/></field>
         <field name="invoiceDate"><display type="date"/></field>
         <field name="dueDate"><display type="date"/></field>
-        <field name="total" widget-area-style="align-text"><display 
type="currency" currency="${currencyUomId}"/></field>
-        <field name="amountToApply" widget-area-style="align-text"><display 
type="currency" currency="${currencyUomId}"/></field>
+        <field name="total" widget-area-style="align-right" 
title-area-style="align-right"><display type="currency" 
currency="${currencyUomId}"/></field>
+        <field name="outstanding" widget-area-style="align-right" 
title-area-style="align-right"><display type="currency" 
currency="${currencyUomId}"/></field>
     </grid>
 </forms>

Reply via email to