refactor: translatable label on pos payments (#42081)
* Use better description in pos_payment.js Use Change Amount instead of Change and To Be Paid in pos_payment.js and be consistent with other strings * change_amount_pos_payment.js
This commit is contained in:
@@ -589,7 +589,7 @@ erpnext.PointOfSale.Payment = class {
|
|||||||
const remaining = grand_total - doc.paid_amount;
|
const remaining = grand_total - doc.paid_amount;
|
||||||
const change = doc.change_amount || remaining <= 0 ? -1 * remaining : undefined;
|
const change = doc.change_amount || remaining <= 0 ? -1 * remaining : undefined;
|
||||||
const currency = doc.currency;
|
const currency = doc.currency;
|
||||||
const label = change ? __("Change") : __("To Be Paid");
|
const label = __("Change Amount");
|
||||||
|
|
||||||
this.$totals.html(
|
this.$totals.html(
|
||||||
`<div class="col">
|
`<div class="col">
|
||||||
|
|||||||
Reference in New Issue
Block a user