diff --git a/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js b/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js index cc448e957b2..bbc80d5eb03 100644 --- a/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +++ b/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js @@ -62,7 +62,10 @@ erpnext.stock.LandedCostVoucher = class LandedCostVoucher extends erpnext.stock. if (this.frm.doc.company) { let company_currency = frappe.get_doc(":Company", this.frm.doc.company).default_currency; - this.frm.set_currency_labels(["total_taxes_and_charges"], company_currency); + this.frm.set_currency_labels( + ["total_taxes_and_charges", "total_vendor_invoices_cost"], + company_currency + ); } } diff --git a/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json b/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json index 86ef78ce4d7..f67ec45bc35 100644 --- a/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json +++ b/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json @@ -152,6 +152,7 @@ "fieldname": "total_vendor_invoices_cost", "fieldtype": "Currency", "label": "Total Vendor Invoices Cost (Company Currency)", + "options": "Company:company:default_currency", "no_copy": 1, "print_hide": 1, "read_only": 1