mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-25 16:04:46 +00:00
Fix: currency symbol issue in delivery note list (#16233)
This commit is contained in:
committed by
Rushabh Mehta
parent
159897d88d
commit
a8d9bfdcfd
@@ -1,5 +1,5 @@
|
|||||||
frappe.listview_settings['Delivery Note'] = {
|
frappe.listview_settings['Delivery Note'] = {
|
||||||
add_fields: ["grand_total", "is_return", "per_billed", "status"],
|
add_fields: ["grand_total", "is_return", "per_billed", "status", "currency"],
|
||||||
get_indicator: function (doc) {
|
get_indicator: function (doc) {
|
||||||
if (cint(doc.is_return) == 1) {
|
if (cint(doc.is_return) == 1) {
|
||||||
return [__("Return"), "darkgrey", "is_return,=,Yes"];
|
return [__("Return"), "darkgrey", "is_return,=,Yes"];
|
||||||
|
|||||||
Reference in New Issue
Block a user