mirror of
https://github.com/frappe/erpnext.git
synced 2026-04-30 12:08:26 +00:00
Codacy correction
This commit is contained in:
@@ -6,7 +6,7 @@ frappe.listview_settings['Bank Transaction'] = {
|
||||
get_indicator: function(doc) {
|
||||
if(flt(doc.unallocated_amount)>0) {
|
||||
return [__("Unreconciled"), "orange", "unallocated_amount,>,0"];
|
||||
} else if(flt(doc.unallocated_amount)==0) {
|
||||
} else if(flt(doc.unallocated_amount)===0) {
|
||||
return [__("Reconciled"), "green", "unallocated_amount,=,0"];
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user