[minor] rename icons as per FontAwesome 4 (#7136)

This commit is contained in:
Rushabh Mehta 2016-12-05 14:17:26 +05:30 committed by GitHub
parent 84694d0b0d
commit 323c06ebbf
153 changed files with 2976 additions and 2976 deletions

View File

@ -51,7 +51,7 @@ cur_frm.cscript.add_toolbar_buttons = function(doc) {
if (doc.is_group == 1) {
cur_frm.add_custom_button(__('Group to Non-Group'),
function() { cur_frm.cscript.convert_to_ledger(); }, 'icon-retweet', 'btn-default');
function() { cur_frm.cscript.convert_to_ledger(); }, 'fa fa-retweet', 'btn-default');
} else if (cint(doc.is_group) == 0) {
cur_frm.add_custom_button(__('Ledger'), function() {
frappe.route_options = {
@ -64,7 +64,7 @@ cur_frm.cscript.add_toolbar_buttons = function(doc) {
});
cur_frm.add_custom_button(__('Non-Group to Group'),
function() { cur_frm.cscript.convert_to_group(); }, 'icon-retweet', 'btn-default')
function() { cur_frm.cscript.convert_to_group(); }, 'fa fa-retweet', 'btn-default')
}
}

View File

@ -529,7 +529,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-money",
"icon": "fa fa-money",
"idx": 1,
"image_view": 0,
"in_create": 0,

View File

@ -226,7 +226,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-cog",
"icon": "fa fa-cog",
"idx": 1,
"image_view": 0,
"in_create": 0,

View File

@ -234,7 +234,7 @@
],
"hide_heading": 1,
"hide_toolbar": 1,
"icon": "icon-check",
"icon": "fa fa-check",
"idx": 1,
"image_view": 0,
"in_create": 0,

View File

@ -400,7 +400,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-file-text",
"icon": "fa fa-file-text",
"idx": 1,
"image_view": 0,
"in_create": 0,

View File

@ -50,11 +50,11 @@ cur_frm.cscript.parent_cost_center = function(doc, cdt, cdn) {
cur_frm.cscript.hide_unhide_group_ledger = function(doc) {
if (doc.is_group == 1) {
cur_frm.add_custom_button(__('Convert to Non-Group'),
function() { cur_frm.cscript.convert_to_ledger(); }, "icon-retweet",
function() { cur_frm.cscript.convert_to_ledger(); }, "fa fa-retweet",
"btn-default")
} else if (doc.is_group == 0) {
cur_frm.add_custom_button(__('Convert to Group'),
function() { cur_frm.cscript.convert_to_group(); }, "icon-retweet",
function() { cur_frm.cscript.convert_to_group(); }, "fa fa-retweet",
"btn-default")
}
}

View File

@ -275,7 +275,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-money",
"icon": "fa fa-money",
"idx": 1,
"image_view": 0,
"in_create": 1,

View File

@ -15,7 +15,7 @@ $.extend(cur_frm.cscript, {
if (!doc.__islocal && (doc.name != sys_defaults.fiscal_year)) {
this.frm.add_custom_button(__("Default"),
this.frm.cscript.set_as_default, "icon-star");
this.frm.cscript.set_as_default, "fa fa-star");
this.frm.set_intro(__("To set this Fiscal Year as Default, click on 'Set as Default'"));
} else {
this.frm.set_intro("");

View File

@ -131,7 +131,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-calendar",
"icon": "fa fa-calendar",
"idx": 1,
"in_create": 0,
"in_dialog": 0,

View File

@ -596,7 +596,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-list",
"icon": "fa fa-list",
"idx": 1,
"in_create": 1,
"in_dialog": 0,

View File

@ -20,7 +20,7 @@ frappe.ui.form.on("Journal Entry", {
group_by_voucher: 0
};
frappe.set_route("query-report", "General Ledger");
}, "icon-table");
}, "fa fa-table");
}
if (frm.doc.__islocal) {

View File

@ -27,7 +27,7 @@
"label": "",
"length": 0,
"no_copy": 0,
"options": "icon-flag",
"options": "fa fa-flag",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -233,7 +233,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-table",
"options": "fa fa-table",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -663,7 +663,7 @@
"label": "Reference",
"length": 0,
"no_copy": 0,
"options": "icon-pushpin",
"options": "fa fa-pushpin",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -1148,7 +1148,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-file-text",
"options": "fa fa-file-text",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -1283,7 +1283,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-file-text",
"icon": "fa fa-file-text",
"idx": 176,
"image_view": 0,
"in_create": 0,

View File

@ -102,7 +102,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-credit-card",
"icon": "fa fa-credit-card",
"idx": 1,
"image_view": 0,
"in_create": 0,

View File

@ -105,7 +105,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-bar-chart",
"icon": "fa fa-bar-chart",
"idx": 1,
"image_view": 0,
"in_create": 0,

View File

@ -156,7 +156,7 @@ frappe.ui.form.on('Payment Entry', {
group_by_voucher: 0
};
frappe.set_route("query-report", "General Ledger");
}, "icon-table");
}, "fa fa-table");
}
},

View File

@ -388,7 +388,7 @@
],
"hide_heading": 0,
"hide_toolbar": 1,
"icon": "icon-resize-horizontal",
"icon": "fa fa-resize-horizontal",
"idx": 0,
"in_create": 0,
"in_dialog": 0,

View File

@ -30,7 +30,7 @@ frappe.ui.form.on('Period Closing Voucher', {
group_by_voucher: 0
};
frappe.set_route("query-report", "General Ledger");
}, "icon-table");
}, "fa fa-table");
}
}

View File

@ -277,7 +277,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-file-text",
"icon": "fa fa-file-text",
"idx": 1,
"image_view": 0,
"in_create": 0,

View File

@ -1054,7 +1054,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-cog",
"icon": "fa fa-cog",
"idx": 1,
"image_view": 0,
"in_create": 0,

View File

@ -4,7 +4,7 @@
frappe.ui.form.on("Pricing Rule", "refresh", function(frm) {
var help_content = ['<table class="table table-bordered" style="background-color: #f9f9f9;">',
'<tr><td>',
'<h4><i class="icon-hand-right"></i> ',
'<h4><i class="fa fa-hand-right"></i> ',
__('Notes'),
':</h4>',
'<ul>',
@ -23,7 +23,7 @@ frappe.ui.form.on("Pricing Rule", "refresh", function(frm) {
'</ul>',
'</td></tr>',
'<tr><td>',
'<h4><i class="icon-question-sign"></i> ',
'<h4><i class="fa fa-question-sign"></i> ',
__('How Pricing Rule is applied?'),
'</h4>',
'<ol>',

View File

@ -1190,7 +1190,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-gift",
"icon": "fa fa-gift",
"idx": 1,
"image_view": 0,
"in_create": 0,

View File

@ -715,7 +715,7 @@
"label": "Currency and Price List",
"length": 0,
"no_copy": 0,
"options": "icon-tag",
"options": "fa fa-tag",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -942,7 +942,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-shopping-cart",
"options": "fa fa-shopping-cart",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -1201,7 +1201,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-money",
"options": "fa fa-money",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -1318,7 +1318,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-money",
"options": "fa fa-money",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -2306,7 +2306,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-money",
"options": "fa fa-money",
"permlevel": 0,
"print_hide": 1,
"print_hide_if_no_value": 0,
@ -2394,7 +2394,7 @@
"label": "Terms and Conditions",
"length": 0,
"no_copy": 0,
"options": "icon-legal",
"options": "fa fa-legal",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -2711,7 +2711,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-file-text",
"options": "fa fa-file-text",
"permlevel": 0,
"print_hide": 1,
"print_hide_if_no_value": 0,
@ -3006,7 +3006,7 @@
"label": "Recurring Invoice",
"length": 0,
"no_copy": 0,
"options": "icon-time",
"options": "fa fa-time",
"permlevel": 0,
"print_hide": 1,
"print_hide_if_no_value": 0,
@ -3399,7 +3399,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-file-text",
"icon": "fa fa-file-text",
"idx": 204,
"image_view": 0,
"in_create": 0,

View File

@ -213,7 +213,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-money",
"icon": "fa fa-money",
"idx": 1,
"image_view": 0,
"in_create": 0,

View File

@ -28,7 +28,7 @@
"label": "",
"length": 0,
"no_copy": 0,
"options": "icon-user",
"options": "fa fa-user",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -1035,7 +1035,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-shopping-cart",
"options": "fa fa-shopping-cart",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -1122,7 +1122,7 @@
"label": "Packing List",
"length": 0,
"no_copy": 0,
"options": "icon-suitcase",
"options": "fa fa-suitcase",
"permlevel": 0,
"print_hide": 1,
"print_hide_if_no_value": 0,
@ -1462,7 +1462,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-money",
"options": "fa fa-money",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -1941,7 +1941,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-money",
"options": "fa fa-money",
"permlevel": 0,
"print_hide": 1,
"print_hide_if_no_value": 0,
@ -2238,7 +2238,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-money",
"options": "fa fa-money",
"permlevel": 0,
"print_hide": 1,
"print_hide_if_no_value": 0,
@ -2327,7 +2327,7 @@
"label": "Payments",
"length": 0,
"no_copy": 0,
"options": "icon-money",
"options": "fa fa-money",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -3251,7 +3251,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-file-text",
"options": "fa fa-file-text",
"permlevel": 0,
"print_hide": 1,
"print_hide_if_no_value": 0,
@ -3514,7 +3514,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-group",
"options": "fa fa-group",
"permlevel": 0,
"print_hide": 1,
"print_hide_if_no_value": 0,
@ -3719,7 +3719,7 @@
"label": "Recurring",
"length": 0,
"no_copy": 0,
"options": "icon-time",
"options": "fa fa-time",
"permlevel": 0,
"print_hide": 1,
"print_hide_if_no_value": 0,
@ -4172,7 +4172,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-file-text",
"icon": "fa fa-file-text",
"idx": 181,
"image_view": 0,
"in_create": 0,

View File

@ -212,7 +212,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-money",
"icon": "fa fa-money",
"idx": 1,
"image_view": 0,
"in_create": 0,

View File

@ -378,7 +378,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-truck",
"icon": "fa fa-truck",
"idx": 1,
"image_view": 0,
"in_create": 0,

View File

@ -733,7 +733,7 @@ erpnext.pos.PointOfSale = erpnext.taxes_and_totals.extend({
me.update_paid_amount_status(true);
me.create_invoice();
me.make_payment();
}, "octicon octicon-credit-card");
}, "octicon octfa fa-credit-card");
}else if(this.frm.doc.docstatus == 1) {
this.page.set_primary_action(__("Print"), function() {
html = frappe.render(me.print_template, me.frm.doc)
@ -746,7 +746,7 @@ erpnext.pos.PointOfSale = erpnext.taxes_and_totals.extend({
this.page.set_secondary_action(__("New"), function() {
me.save_previous_entry();
me.create_new();
}, "octicon octicon-plus").addClass("btn-primary");
}, "octicon octfa fa-plus").addClass("btn-primary");
},
print_dialog: function(){

View File

@ -3,7 +3,7 @@
"creation": "2014-08-08 02:45:55.931022",
"docstatus": 0,
"doctype": "Page",
"icon": "icon-th",
"icon": "fa fa-th",
"modified": "2014-08-08 05:59:33.045012",
"modified_by": "Administrator",
"module": "Accounts",

View File

@ -186,7 +186,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-cog",
"icon": "fa fa-cog",
"idx": 1,
"in_create": 0,
"in_dialog": 0,

View File

@ -27,7 +27,7 @@
"label": "",
"length": 0,
"no_copy": 0,
"options": "icon-user",
"options": "fa fa-user",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -858,7 +858,7 @@
"label": "Currency and Price List",
"length": 0,
"no_copy": 0,
"options": "icon-tag",
"options": "fa fa-tag",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -1085,7 +1085,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-shopping-cart",
"options": "fa fa-shopping-cart",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -1343,7 +1343,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-money",
"options": "fa fa-money",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -1461,7 +1461,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-money",
"options": "fa fa-money",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -2100,7 +2100,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-legal",
"options": "fa fa-legal",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -2572,7 +2572,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-truck",
"options": "fa fa-truck",
"permlevel": 0,
"print_hide": 1,
"print_hide_if_no_value": 0,
@ -2631,7 +2631,7 @@
"label": "Recurring",
"length": 0,
"no_copy": 0,
"options": "icon-time",
"options": "fa fa-time",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -3053,7 +3053,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-file-text",
"icon": "fa fa-file-text",
"idx": 105,
"image_view": 0,
"in_create": 0,

View File

@ -238,7 +238,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-shopping-cart",
"options": "fa fa-shopping-cart",
"permlevel": 0,
"precision": "",
"print_hide": 0,
@ -385,7 +385,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-legal",
"options": "fa fa-legal",
"permlevel": 0,
"precision": "",
"print_hide": 0,
@ -566,7 +566,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-file-text",
"options": "fa fa-file-text",
"permlevel": 0,
"precision": "",
"print_hide": 0,
@ -699,7 +699,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-shopping-cart",
"icon": "fa fa-shopping-cart",
"idx": 0,
"image_view": 0,
"in_create": 0,

View File

@ -30,7 +30,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-user",
"options": "fa fa-user",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -516,7 +516,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Column Break",
"options": "icon-map-marker",
"options": "fa fa-map-marker",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -786,7 +786,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-user",
"icon": "fa fa-user",
"idx": 370,
"image_field": "image",
"image_view": 0,

View File

@ -27,7 +27,7 @@
"label": "",
"length": 0,
"no_copy": 0,
"options": "icon-user",
"options": "fa fa-user",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -485,7 +485,7 @@
"label": "Currency and Price List",
"length": 0,
"no_copy": 0,
"options": "icon-tag",
"options": "fa fa-tag",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -716,7 +716,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-shopping-cart",
"options": "fa fa-shopping-cart",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -945,7 +945,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-money",
"options": "fa fa-money",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -1063,7 +1063,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-money",
"options": "fa fa-money",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -1674,7 +1674,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-legal",
"options": "fa fa-legal",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -1878,7 +1878,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-file-text",
"options": "fa fa-file-text",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -2035,7 +2035,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-shopping-cart",
"icon": "fa fa-shopping-cart",
"idx": 29,
"image_view": 0,
"in_create": 0,

View File

@ -2,7 +2,7 @@
"creation": "2012-09-21 20:15:16.000000",
"docstatus": 0,
"doctype": "Page",
"icon": "icon-bar-chart",
"icon": "fa fa-bar-chart",
"idx": 1,
"modified": "2013-07-11 14:43:52.000000",
"modified_by": "Administrator",

View File

@ -27,7 +27,7 @@
"label": "",
"length": 0,
"no_copy": 0,
"options": "icon-user",
"options": "fa fa-user",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -500,7 +500,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Column Break",
"options": "icon-map-marker",
"options": "fa fa-map-marker",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -757,7 +757,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-file-text",
"options": "fa fa-file-text",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -1004,7 +1004,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-user",
"icon": "fa fa-user",
"idx": 5,
"image_field": "image",
"image_view": 0,

View File

@ -28,7 +28,7 @@
"label": "",
"length": 0,
"no_copy": 0,
"options": "icon-user",
"options": "fa fa-user",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -410,7 +410,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-shopping-cart",
"options": "fa fa-shopping-cart",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -471,7 +471,7 @@
"label": "Contact Info",
"length": 0,
"no_copy": 0,
"options": "icon-bullhorn",
"options": "fa fa-bullhorn",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -760,7 +760,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-file-text",
"options": "fa fa-file-text",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -1104,7 +1104,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-info-sign",
"icon": "fa fa-info-sign",
"idx": 195,
"image_view": 0,
"in_create": 0,

View File

@ -26,7 +26,7 @@
"in_standard_filter": 0,
"length": 0,
"no_copy": 0,
"options": "icon-user",
"options": "fa fa-user",
"permlevel": 0,
"precision": "",
"print_hide": 0,

View File

@ -574,7 +574,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-thumbs-up",
"icon": "fa fa-thumbs-up",
"idx": 1,
"image_view": 0,
"in_create": 0,

View File

@ -93,7 +93,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-file-text",
"icon": "fa fa-file-text",
"idx": 1,
"in_create": 0,
"in_dialog": 0,

View File

@ -308,7 +308,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-ok",
"icon": "fa fa-ok",
"idx": 1,
"image_view": 0,
"in_create": 0,

View File

@ -40,7 +40,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-code-fork",
"icon": "fa fa-code-fork",
"idx": 1,
"image_view": 0,
"in_create": 0,

View File

@ -66,7 +66,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-sitemap",
"icon": "fa fa-sitemap",
"idx": 1,
"image_view": 0,
"in_create": 0,

View File

@ -64,7 +64,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-bookmark",
"icon": "fa fa-bookmark",
"idx": 1,
"in_create": 0,
"in_dialog": 0,

View File

@ -2234,7 +2234,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-user",
"icon": "fa fa-user",
"idx": 24,
"image_field": "image",
"image_view": 0,

View File

@ -80,14 +80,14 @@ erpnext.MarkedEmployee = Class.extend({
var row;
$.each(employee, function(i, m) {
var attendance_icon = "icon-check";
var attendance_icon = "fa fa-check";
var color_class = "";
if(m.status == "Absent") {
attendance_icon = "icon-check-empty"
attendance_icon = "fa fa-check-empty"
color_class = "text-muted";
}
else if(m.status == "Half Day") {
attendance_icon = "icon-check-minus"
attendance_icon = "fa fa-check-minus"
}
if (i===0 || i % 4===0) {

View File

@ -40,7 +40,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-flag",
"icon": "fa fa-flag",
"idx": 1,
"image_view": 0,
"in_create": 0,

View File

@ -663,7 +663,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-money",
"icon": "fa fa-money",
"idx": 1,
"image_view": 0,
"in_create": 0,

View File

@ -97,7 +97,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-flag",
"icon": "fa fa-flag",
"idx": 1,
"image_view": 0,
"in_create": 0,

View File

@ -214,7 +214,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-calendar",
"icon": "fa fa-calendar",
"idx": 1,
"image_view": 0,
"in_create": 0,

View File

@ -217,7 +217,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-cog",
"icon": "fa fa-cog",
"idx": 1,
"image_view": 0,
"in_create": 0,

View File

@ -237,7 +237,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-user",
"icon": "fa fa-user",
"idx": 1,
"image_view": 0,
"in_create": 0,

View File

@ -156,7 +156,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-bookmark",
"icon": "fa fa-bookmark",
"idx": 1,
"image_view": 0,
"in_create": 0,

View File

@ -465,7 +465,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-ok",
"icon": "fa fa-ok",
"idx": 1,
"image_view": 0,
"in_create": 0,

View File

@ -704,7 +704,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-calendar",
"icon": "fa fa-calendar",
"idx": 1,
"image_view": 0,
"in_create": 0,

View File

@ -203,7 +203,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-calendar",
"icon": "fa fa-calendar",
"idx": 1,
"image_view": 0,
"in_create": 0,

View File

@ -311,7 +311,7 @@
],
"hide_heading": 0,
"hide_toolbar": 1,
"icon": "icon-cog",
"icon": "fa fa-cog",
"idx": 1,
"in_create": 0,
"in_dialog": 0,

View File

@ -174,7 +174,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-flag",
"icon": "fa fa-flag",
"idx": 1,
"in_create": 0,
"in_dialog": 0,

View File

@ -709,7 +709,7 @@
],
"hide_heading": 0,
"hide_toolbar": 1,
"icon": "icon-cog",
"icon": "fa fa-cog",
"idx": 1,
"image_view": 0,
"in_create": 0,

View File

@ -185,7 +185,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-flag",
"icon": "fa fa-flag",
"idx": 0,
"image_view": 0,
"in_create": 0,

View File

@ -1383,7 +1383,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-file-text",
"icon": "fa fa-file-text",
"idx": 9,
"image_view": 0,
"in_create": 0,

View File

@ -45,7 +45,7 @@ frappe.ui.form.on('Salary Structure', {
frm.fields_dict['deductions'].grid.set_column_disp("default_amount", false);
frm.add_custom_button(__("Preview Salary Slip"),
function() { frm.trigger('preview_salary_slip'); }, "icon-sitemap", "btn-default");
function() { frm.trigger('preview_salary_slip'); }, "fa fa-sitemap", "btn-default");
frm.add_custom_button(__("Add Employees"),function () {
frm.trigger('add_employees')

View File

@ -854,7 +854,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-file-text",
"icon": "fa fa-file-text",
"idx": 1,
"image_view": 0,
"in_create": 0,

View File

@ -161,7 +161,7 @@
],
"hide_heading": 0,
"hide_toolbar": 1,
"icon": "icon-upload-alt",
"icon": "fa fa-upload-alt",
"idx": 1,
"in_create": 0,
"in_dialog": 0,

View File

@ -28,7 +28,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-user",
"options": "fa fa-user",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -203,7 +203,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-shopping-cart",
"options": "fa fa-shopping-cart",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -262,7 +262,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-time",
"options": "fa fa-time",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -706,7 +706,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-calendar",
"icon": "fa fa-calendar",
"idx": 1,
"image_view": 0,
"in_create": 0,

View File

@ -28,7 +28,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-user",
"options": "fa fa-user",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -365,7 +365,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-wrench",
"options": "fa fa-wrench",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -480,7 +480,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-wrench",
"options": "fa fa-wrench",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -539,7 +539,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-file-text",
"options": "fa fa-file-text",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -715,7 +715,7 @@
"label": "Contact Info",
"length": 0,
"no_copy": 0,
"options": "icon-bullhorn",
"options": "fa fa-bullhorn",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -870,7 +870,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-file-text",
"icon": "fa fa-file-text",
"idx": 1,
"image_view": 0,
"in_create": 0,

View File

@ -1262,7 +1262,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-sitemap",
"icon": "fa fa-sitemap",
"idx": 1,
"image_view": 0,
"in_create": 0,

View File

@ -80,7 +80,7 @@
],
"hide_heading": 1,
"hide_toolbar": 1,
"icon": "icon-magic",
"icon": "fa fa-magic",
"idx": 1,
"in_create": 1,
"in_dialog": 0,

View File

@ -331,7 +331,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-wrench",
"icon": "fa fa-wrench",
"idx": 0,
"in_create": 0,
"in_dialog": 0,

View File

@ -99,7 +99,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-wrench",
"icon": "fa fa-wrench",
"idx": 0,
"image_view": 0,
"in_create": 0,

View File

@ -27,7 +27,7 @@
"label": "",
"length": 0,
"no_copy": 0,
"options": "icon-gift",
"options": "fa fa-gift",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -357,7 +357,7 @@
"label": "Warehouses",
"length": 0,
"no_copy": 0,
"options": "icon-building",
"options": "fa fa-building",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -528,7 +528,7 @@
"label": "Time",
"length": 0,
"no_copy": 0,
"options": "icon-time",
"options": "fa fa-time",
"permlevel": 0,
"precision": "",
"print_hide": 0,
@ -726,7 +726,7 @@
"label": "Operations",
"length": 0,
"no_copy": 0,
"options": "icon-wrench",
"options": "fa fa-wrench",
"permlevel": 0,
"precision": "",
"print_hide": 0,
@ -958,7 +958,7 @@
"label": "More Information",
"length": 0,
"no_copy": 0,
"options": "icon-file-text",
"options": "fa fa-file-text",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -1235,7 +1235,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-cogs",
"icon": "fa fa-cogs",
"idx": 1,
"image_view": 0,
"in_create": 0,

View File

@ -807,7 +807,7 @@
],
"hide_heading": 0,
"hide_toolbar": 1,
"icon": "icon-calendar",
"icon": "fa fa-calendar",
"idx": 1,
"image_view": 0,
"in_create": 1,

View File

@ -348,7 +348,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-wrench",
"icon": "fa fa-wrench",
"idx": 1,
"in_create": 0,
"in_dialog": 0,

View File

@ -112,7 +112,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-flag",
"icon": "fa fa-flag",
"idx": 1,
"image_view": 0,
"in_create": 0,

View File

@ -320,7 +320,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-user",
"options": "fa fa-user",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -493,7 +493,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-flag",
"options": "fa fa-flag",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -551,7 +551,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-list",
"options": "fa fa-list",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -749,7 +749,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-money",
"options": "fa fa-money",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -1108,7 +1108,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-puzzle-piece",
"icon": "fa fa-puzzle-piece",
"idx": 29,
"image_view": 0,
"in_create": 0,

View File

@ -934,7 +934,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-check",
"icon": "fa fa-check",
"idx": 1,
"image_view": 0,
"in_create": 0,

View File

@ -41,12 +41,12 @@ frappe.ui.form.on("Timesheet", {
if(frm.doc.docstatus==1) {
if(frm.doc.per_billed < 100){
frm.add_custom_button(__("Make Sales Invoice"), function() { frm.trigger("make_invoice") },
"icon-file-alt");
"fa fa-file-alt");
}
if(!frm.doc.salary_slip && frm.doc.employee){
frm.add_custom_button(__("Make Salary Slip"), function() { frm.trigger("make_salary_slip") },
"icon-file-alt");
"fa fa-file-alt");
}
}

View File

@ -868,7 +868,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-time",
"icon": "fa fa-time",
"idx": 1,
"image_view": 0,
"in_create": 0,

View File

@ -2,18 +2,18 @@
<div class="col-xs-5"><h6>{%= item_code || "" %}{%= item_name || "" %}</h6></div>
<div class="col-xs-4">
<div class="row pos-qty-row">
<div class="col-xs-2 text-center pos-qty-btn" data-action="decrease-qty"><i class="icon-minus-sign text-muted"></i></div>
<div class="col-xs-2 text-center pos-qty-btn" data-action="decrease-qty"><i class="fa fa-minus-sign text-muted"></i></div>
<div class="col-xs-8">
<div>
<input type="text" value="{%= qty %}" class="form-control input-sm pos-item-qty text-right">
</div>
{% if(actual_qty != null) { %}
<div style="margin-top: 5px;" class="text-muted small text-right">
<span title="{%= __("In Stock") %}">{%= actual_qty || 0 %}<span>
<span title="{%= __("In Stock") %}">{%= actual_qty || 0 %}<span>
</div>
{% } %}
</div>
<div class="col-xs-2 text-center pos-qty-btn" data-action="increase-qty"><i class="icon-plus-sign text-muted"></i></div>
<div class="col-xs-2 text-center pos-qty-btn" data-action="increase-qty"><i class="fa fa-plus-sign text-muted"></i></div>
</div>
</div>
<div class="col-xs-3 text-right">

View File

@ -34,7 +34,7 @@ function load_erpnext_slides() {
org: {
domains: ["all"],
title: __("The Organization"),
icon: "icon-building",
icon: "fa fa-building",
fields: [
{fieldname:'company_name',
label: frappe.wiz.domain==='Education' ?
@ -158,7 +158,7 @@ function load_erpnext_slides() {
branding: {
domains: ["all"],
icon: "icon-bookmark",
icon: "fa fa-bookmark",
title: __("The Brand"),
help: __('Upload your letter head and logo. (you can edit them later).'),
fields: [
@ -180,7 +180,7 @@ function load_erpnext_slides() {
users: {
domains: ["all"],
icon: "icon-money",
icon: "fa fa-money",
title: __("Add Users"),
help: __("Add users to your organization, other than yourself"),
fields: [],
@ -212,7 +212,7 @@ function load_erpnext_slides() {
taxes: {
domains: ['manufacturing', 'services', 'retail', 'distribution'],
icon: "icon-money",
icon: "fa fa-money",
title: __("Add Taxes"),
help: __("List your tax heads (e.g. VAT, Customs etc; they should have unique names) and their standard rates. This will create a standard template, which you can edit and add more later."),
"fields": [],
@ -233,7 +233,7 @@ function load_erpnext_slides() {
customers: {
domains: ['manufacturing', 'services', 'retail', 'distribution'],
icon: "icon-group",
icon: "fa fa-group",
title: __("Your Customers"),
help: __("List a few of your customers. They could be organizations or individuals."),
fields: [],
@ -256,7 +256,7 @@ function load_erpnext_slides() {
suppliers: {
domains: ['manufacturing', 'services', 'retail', 'distribution'],
icon: "icon-group",
icon: "fa fa-group",
title: __("Your Suppliers"),
help: __("List a few of your suppliers. They could be organizations or individuals."),
fields: [],
@ -279,7 +279,7 @@ function load_erpnext_slides() {
items: {
domains: ['manufacturing', 'services', 'retail', 'distribution'],
icon: "icon-barcode",
icon: "fa fa-barcode",
title: __("Your Products or Services"),
help: __("List your products or services that you buy or sell. Make sure to check the Item Group, Unit of Measure and other properties when you start."),
fields: [],

View File

@ -8,7 +8,7 @@ frappe.ready(function() {
// update user
if(full_name) {
$('.navbar li[data-label="User"] a')
.html('<i class="icon-fixed-width icon-user"></i> ' + full_name);
.html('<i class="fa fa-fixed-width fa fa-user"></i> ' + full_name);
}
// update login

View File

@ -69,7 +69,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-flag",
"icon": "fa fa-flag",
"idx": 0,
"image_view": 0,
"in_create": 0,

View File

@ -95,7 +95,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-flag",
"icon": "fa fa-flag",
"idx": 0,
"image_view": 0,
"in_create": 0,

View File

@ -274,7 +274,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-flag",
"icon": "fa fa-flag",
"idx": 0,
"image_view": 0,
"in_create": 0,

View File

@ -10,6 +10,6 @@ frappe.ui.form.on("Campaign", "refresh", function(frm) {
cur_frm.add_custom_button(__("View Leads"), function() {
frappe.route_options = {"source": "Campaign","campaign_name": frm.doc.name}
frappe.set_route("List", "Lead");
}, "icon-list", true);
}, "fa fa-list", true);
}
})

View File

@ -118,7 +118,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-bullhorn",
"icon": "fa fa-bullhorn",
"idx": 1,
"image_view": 0,
"in_create": 0,

View File

@ -30,7 +30,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-user",
"options": "fa fa-user",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -520,7 +520,7 @@
"label": "Address and Contact",
"length": 0,
"no_copy": 0,
"options": "icon-map-marker",
"options": "fa fa-map-marker",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -835,7 +835,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-file-text",
"options": "fa fa-file-text",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -923,7 +923,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-group",
"options": "fa fa-group",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -1056,7 +1056,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-user",
"icon": "fa fa-user",
"idx": 363,
"image_field": "image",
"image_view": 0,

View File

@ -40,7 +40,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-flag",
"icon": "fa fa-flag",
"idx": 1,
"image_view": 0,
"in_create": 0,

View File

@ -60,7 +60,7 @@ erpnext.selling.InstallationNote = frappe.ui.form.Controller.extend({
company: cur_frm.doc.company
}
})
}, "icon-download", "btn-default"
}, "fa fa-download", "btn-default"
);
}
},

View File

@ -654,7 +654,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-wrench",
"icon": "fa fa-wrench",
"idx": 1,
"image_view": 0,
"in_create": 0,

View File

@ -108,7 +108,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-sitemap",
"icon": "fa fa-sitemap",
"idx": 1,
"in_create": 0,
"in_dialog": 0,

View File

@ -27,7 +27,7 @@
"label": "",
"length": 0,
"no_copy": 0,
"options": "icon-user",
"options": "fa fa-user",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -389,7 +389,7 @@
"label": "Address and Contact",
"length": 0,
"no_copy": 0,
"options": "icon-bullhorn",
"options": "fa fa-bullhorn",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -731,7 +731,7 @@
"label": "Currency and Price List",
"length": 0,
"no_copy": 0,
"options": "icon-tag",
"options": "fa fa-tag",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -965,7 +965,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-shopping-cart",
"options": "fa fa-shopping-cart",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -1194,7 +1194,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-money",
"options": "fa fa-money",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -1673,7 +1673,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-money",
"options": "fa fa-money",
"permlevel": 0,
"print_hide": 1,
"print_hide_if_no_value": 0,
@ -1916,7 +1916,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-legal",
"options": "fa fa-legal",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -2147,7 +2147,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-file-text",
"options": "fa fa-file-text",
"permlevel": 0,
"print_hide": 1,
"print_hide_if_no_value": 0,
@ -2340,7 +2340,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-shopping-cart",
"icon": "fa fa-shopping-cart",
"idx": 82,
"image_view": 0,
"in_create": 0,

View File

@ -28,7 +28,7 @@
"label": "",
"length": 0,
"no_copy": 0,
"options": "icon-user",
"options": "fa fa-user",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -451,7 +451,7 @@
"label": "Address and Contact",
"length": 0,
"no_copy": 0,
"options": "icon-bullhorn",
"options": "fa fa-bullhorn",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -784,7 +784,7 @@
"label": "Currency and Price List",
"length": 0,
"no_copy": 0,
"options": "icon-tag",
"options": "fa fa-tag",
"permlevel": 0,
"print_hide": 1,
"print_hide_if_no_value": 0,
@ -1018,7 +1018,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-shopping-cart",
"options": "fa fa-shopping-cart",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -1272,7 +1272,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-money",
"options": "fa fa-money",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -1754,7 +1754,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-money",
"options": "fa fa-money",
"permlevel": 0,
"print_hide": 1,
"print_hide_if_no_value": 0,
@ -2026,7 +2026,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-suitcase",
"options": "fa fa-suitcase",
"permlevel": 0,
"print_hide": 1,
"print_hide_if_no_value": 0,
@ -2086,7 +2086,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-legal",
"options": "fa fa-legal",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -2175,7 +2175,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-file-text",
"options": "fa fa-file-text",
"permlevel": 0,
"print_hide": 1,
"print_hide_if_no_value": 0,
@ -2732,7 +2732,7 @@
"length": 0,
"no_copy": 0,
"oldfieldtype": "Section Break",
"options": "icon-group",
"options": "fa fa-group",
"permlevel": 0,
"print_hide": 1,
"print_hide_if_no_value": 0,
@ -2937,7 +2937,7 @@
"label": "Recurring Order",
"length": 0,
"no_copy": 0,
"options": "icon-time",
"options": "fa fa-time",
"permlevel": 0,
"print_hide": 0,
"print_hide_if_no_value": 0,
@ -3360,7 +3360,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-file-text",
"icon": "fa fa-file-text",
"idx": 105,
"image_view": 0,
"in_create": 0,

View File

@ -352,7 +352,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-cog",
"icon": "fa fa-cog",
"idx": 1,
"image_view": 0,
"in_create": 0,

View File

@ -319,7 +319,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-mobile-phone",
"icon": "fa fa-mobile-phone",
"idx": 1,
"in_create": 0,
"in_dialog": 0,

View File

@ -2,7 +2,7 @@
"creation": "2012-09-21 20:15:12.000000",
"docstatus": 0,
"doctype": "Page",
"icon": "icon-bar-chart",
"icon": "fa fa-bar-chart",
"idx": 1,
"modified": "2013-07-11 14:43:59.000000",
"modified_by": "Administrator",

View File

@ -31,7 +31,7 @@ erpnext.SalesFunnel = Class.extend({
from_date: wrapper.page.add_date(__("From Date")),
to_date: wrapper.page.add_date(__("To Date")),
refresh_btn: wrapper.page.set_primary_action(__("Refresh"),
function() { me.get_data(); }, "icon-refresh"),
function() { me.get_data(); }, "fa fa-refresh"),
};
this.elements.no_data = $('<div class="alert alert-warning">' + __("No Data") + '</div>')

View File

@ -2,7 +2,7 @@
"creation": "2013-10-04 13:17:18.000000",
"docstatus": 0,
"doctype": "Page",
"icon": "icon-filter",
"icon": "fa fa-filter",
"idx": 1,
"modified": "2013-10-04 13:17:18.000000",
"modified_by": "Administrator",

View File

@ -536,7 +536,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-shield",
"icon": "fa fa-shield",
"idx": 1,
"image_view": 0,
"in_create": 0,

View File

@ -67,7 +67,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-certificate",
"icon": "fa fa-certificate",
"idx": 1,
"image_view": 0,
"in_create": 0,

View File

@ -1596,7 +1596,7 @@
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-building",
"icon": "fa fa-building",
"idx": 1,
"image_view": 0,
"in_create": 0,

Some files were not shown because too many files have changed in this diff Show More