mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-04 12:49:10 +00:00
fixed conflict
This commit is contained in:
@@ -1,7 +1,8 @@
|
|||||||
// render
|
// render
|
||||||
wn.listview_settings['Sales Invoice'] = {
|
wn.listview_settings['Sales Invoice'] = {
|
||||||
add_fields: ["`tabSales Invoice`.grand_total", "`tabSales Invoice`.outstanding_amount"],
|
add_fields: ["`tabSales Invoice`.grand_total", "`tabSales Invoice`.outstanding_amount"],
|
||||||
add_columns: [{"content":"paid_amount", width:"10%", type:"bar-graph", "label": "Paid"}],
|
add_columns: [{"content":"paid_amount", width:"10%", type:"bar-graph",
|
||||||
|
label: "Payment Received"}],
|
||||||
prepare_data: function(data) {
|
prepare_data: function(data) {
|
||||||
data.paid_amount = flt(data.grand_total) ? (((flt(data.grand_total) -
|
data.paid_amount = flt(data.grand_total) ? (((flt(data.grand_total) -
|
||||||
flt(data.outstanding_amount)) / flt(data.grand_total)) * 100) : 0;
|
flt(data.outstanding_amount)) / flt(data.grand_total)) * 100) : 0;
|
||||||
|
|||||||
@@ -242,5 +242,6 @@ patch_list = [
|
|||||||
"patches.april_2013.p04_update_role_in_pages",
|
"patches.april_2013.p04_update_role_in_pages",
|
||||||
"patches.april_2013.p05_fixes_in_reverse_modules",
|
"patches.april_2013.p05_fixes_in_reverse_modules",
|
||||||
"execute:webnotes.delete_doc('DocType Mapper', 'Delivery Note-Packing Slip')",
|
"execute:webnotes.delete_doc('DocType Mapper', 'Delivery Note-Packing Slip')",
|
||||||
|
"execute:webnotes.reload_doc('Stock', 'DocType', 'Delivery Note Item')",
|
||||||
"patches.april_2013.p06_default_cost_center",
|
"patches.april_2013.p06_default_cost_center",
|
||||||
]
|
]
|
||||||
Reference in New Issue
Block a user