Skip to content

Commit

Permalink
Improved: improve Dutch labels (OFBIZ-13032) (#765)
Browse files Browse the repository at this point in the history
* Improved: Improve dutch label (OFBIZ-13032)

modified AccountingUiLabels.xml, CommonUiLabels.xml
- AccountingInvoicesDueSoon
- WebTools

* Improved: improve Dutch labels (OFBIZ-13032)

AccountingOutstanding added

modified: AccountingUiLabels.xml, InvoiceForrms.xml
  • Loading branch information
PierreSmits committed Apr 15, 2024
1 parent c9d15e5 commit e740f56
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions applications/accounting/config/AccountingUiLabels.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10436,6 +10436,10 @@
<value xml:lang="zh">经营性现金</value>
<value xml:lang="zh-TW">經營性現金</value>
</property>
<property key="AccountingOutstanding">
<value xml:lang="en">Outstanding</value>
<value xml:lang="nl">Openstaand</value>
</property>
<property key="AccountingOrderItemWithIdNotFound">
<value xml:lang="ar">لم يتم العثور على بند أمر البيع/الشراء ذو الدليل ${orderItemSeqId}</value>
<value xml:lang="de">Auftragsposition mit Nummer ${orderItemSeqId} nicht gefunden.</value>
Expand Down
8 changes: 4 additions & 4 deletions applications/accounting/widget/InvoiceForms.xml
Original file line number Diff line number Diff line change
Expand Up @@ -750,7 +750,7 @@ under the License.
<field-map field-name="compareDate" from-field="invoiceDate"/>
<field-map field-name="lastNameFirst" value="Y"/>
</service>
<set field="amountToApply" value="${groovy:
<set field="outstanding" value="${groovy:
import java.text.NumberFormat;
return(NumberFormat.getNumberInstance(context.get(&quot;locale&quot;)).format(org.apache.ofbiz.accounting.invoice.InvoiceWorker.getInvoiceNotApplied(delegator,invoiceId)));}"/>
<set field="total" value="${groovy:
Expand All @@ -772,7 +772,7 @@ under the License.
<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="outstanding" title="${uiLabelMap.AccountingOutstanding}" widget-area-style="align-text"><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">
Expand All @@ -783,7 +783,7 @@ under the License.
<field-map field-name="compareDate" from-field="invoiceDate"/>
<field-map field-name="lastNameFirst" value="Y"/>
</service>
<set field="amountToApply" value="${groovy:
<set field="outstanding" value="${groovy:
import java.text.NumberFormat;
return(NumberFormat.getNumberInstance(context.get(&quot;locale&quot;)).format(org.apache.ofbiz.accounting.invoice.InvoiceWorker.getInvoiceNotApplied(delegator,invoiceId)));}"/>
<set field="total" value="${groovy:
Expand All @@ -805,6 +805,6 @@ under the License.
<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="outstanding" title="${uiLabelMap.AccountingOutstanding}" widget-area-style="align-text"><display type="currency" currency="${currencyUomId}"/></field>
</grid>
</forms>

0 comments on commit e740f56

Please sign in to comment.