fix: remove text-muted and small class fromtree items

This commit is contained in:
prssanna 2020-08-27 19:26:14 +05:30
parent a49af09705
commit a324e9bd12
3 changed files with 5 additions and 5 deletions

View File

@ -130,7 +130,7 @@ frappe.treeview_settings["Account"] = {
let dr_or_cr = balance > 0 ? "Dr": "Cr";
if (node.data && node.data.balance!==undefined) {
$('<span class="balance-area pull-right text-muted small">'
$('<span class="balance-area pull-right">'
+ (node.data.balance_in_account_currency ?
(format_currency(Math.abs(node.data.balance_in_account_currency),
node.data.account_currency) + " / ") : "")

View File

@ -13,19 +13,19 @@ frappe.treeview_settings["Healthcare Service Unit"] = {
ignore_fields:["parent_healthcare_service_unit"],
onrender: function(node) {
if (node.data.occupied_out_of_vacant!==undefined){
$('<span class="balance-area pull-right text-muted small">'
$('<span class="balance-area pull-right">'
+ " " + node.data.occupied_out_of_vacant
+ '</span>').insertBefore(node.$ul);
}
if (node.data && node.data.inpatient_occupancy!==undefined) {
if (node.data.inpatient_occupancy == 1){
if (node.data.occupancy_status == "Occupied"){
$('<span class="balance-area pull-right small">'
$('<span class="balance-area pull-right">'
+ " " + node.data.occupancy_status
+ '</span>').insertBefore(node.$ul);
}
if (node.data.occupancy_status == "Vacant"){
$('<span class="balance-area pull-right text-muted small">'
$('<span class="balance-area pull-right">'
+ " " + node.data.occupancy_status
+ '</span>').insertBefore(node.$ul);
}

View File

@ -19,7 +19,7 @@ frappe.treeview_settings['Warehouse'] = {
ignore_fields:["parent_warehouse"],
onrender: function(node) {
if (node.data && node.data.balance!==undefined) {
$('<span class="balance-area pull-right text-muted small">'
$('<span class="balance-area pull-right">'
+ format_currency(Math.abs(node.data.balance), node.data.company_currency)
+ '</span>').insertBefore(node.$ul);
}