diff --git a/erpnext/accounts/page/accounts_browser/accounts_browser.js b/erpnext/accounts/page/accounts_browser/accounts_browser.js index 3f7792029c8..734e4de18ac 100644 --- a/erpnext/accounts/page/accounts_browser/accounts_browser.js +++ b/erpnext/accounts/page/accounts_browser/accounts_browser.js @@ -101,8 +101,11 @@ erpnext.AccountsChart = Class.extend({ onrender: function(treenode) { if (ctype == 'Account') { var bal = treenode.data && treenode.data.balance.split(' ') || ['','']; - treenode.parent.append(''+ bal[0] + ' ' - + bal[1] + ''); + if (bal && flt(bal[1])) { + treenode.parent.append('\ + '+ bal[0] + ' ' + + fmt_money(bal[1]) + ''); + } } } }); diff --git a/erpnext/hr/doctype/employee/listview.js b/erpnext/hr/doctype/employee/listview.js index 4f92bbff29f..fbd338e99aa 100644 --- a/erpnext/hr/doctype/employee/listview.js +++ b/erpnext/hr/doctype/employee/listview.js @@ -12,8 +12,9 @@ wn.doclistviews['Employee'] = wn.views.ListView.extend({ "`tabEmployee`.company", "`tabEmployee`.reports_to", "`tabEmployee`.date_of_joining", + "`tabEmployee`.status", ]); - this.stats = this.stats.concat(['company']); + this.stats = this.stats.concat(['status', 'company']); }, prepare_data: function(data) { @@ -32,14 +33,22 @@ wn.doclistviews['Employee'] = wn.views.ListView.extend({ data.company && concat_list.push(data.company); data.branch && concat_list.push(data.branch); data.description = concat_list.join(", "); + + if(data.status=='Left') { + data.label_type = 'important'; + } else if(data.status=='Active') { + data.label_type = 'success'; + } + data.status_html = repl('%(status)s', data); }, columns: [ {width: '3%', content: 'check'}, - {width: '3%', content: 'docstatus'}, {width: '12%', content: 'name'}, {width: '25%', content: 'employee_name'}, - {width: '45%', content: 'description+tags', + {width: '10%', content: 'status_html'}, + {width: '38%', content: 'description+tags', css: {'color': '#aaa'}}, {width: '12%', content:'date_of_joining', css: {'text-align': 'right', 'color': '#777'}}, diff --git a/erpnext/patches/june_2012/cache_item_table.py b/erpnext/patches/june_2012/cache_item_table.py new file mode 100644 index 00000000000..552fe7dbb40 --- /dev/null +++ b/erpnext/patches/june_2012/cache_item_table.py @@ -0,0 +1,11 @@ +def execute(): + """drop and create __CacheItem table again""" + import webnotes + webnotes.conn.commit() + webnotes.conn.sql("drop table __CacheItem") + webnotes.conn.sql("""create table __CacheItem( + `key` VARCHAR(180) NOT NULL PRIMARY KEY, + `value` LONGTEXT, + `expires_on` DATETIME + ) ENGINE=MyISAM DEFAULT CHARSET=utf8""") + webnotes.conn.begin() \ No newline at end of file diff --git a/erpnext/patches/patch_list.py b/erpnext/patches/patch_list.py index 23ce8fa2273..35b59fdd338 100644 --- a/erpnext/patches/patch_list.py +++ b/erpnext/patches/patch_list.py @@ -457,4 +457,9 @@ patch_list = [ 'patch_file': 'delete_about_contact', 'description': "delete depracated doctypes of website module" }, + { + 'patch_module': 'patches.june_2012', + 'patch_file': 'cache_item_table', + 'description': "create cache item table again" + }, ] \ No newline at end of file diff --git a/erpnext/stock/doctype/packing_slip/packing_slip.js b/erpnext/stock/doctype/packing_slip/packing_slip.js index aea22fff68d..d3cf9be0309 100644 --- a/erpnext/stock/doctype/packing_slip/packing_slip.js +++ b/erpnext/stock/doctype/packing_slip/packing_slip.js @@ -52,6 +52,14 @@ cur_frm.cscript.onload = function(doc, cdt, cdn) { } } +cur_frm.cscript.refresh = function(doc, dt, dn) { + if(!doc.amended_from) { + hide_field('misc_details'); + } else { + unhide_field('misc_details'); + } +} + cur_frm.cscript.update_item_details = function(doc) { $c_obj(make_doclist(doc.doctype, doc.name), 'update_item_details', '', function(r, rt) { diff --git a/erpnext/stock/doctype/packing_slip/packing_slip.txt b/erpnext/stock/doctype/packing_slip/packing_slip.txt index e3801222b73..c610dadd8a1 100644 --- a/erpnext/stock/doctype/packing_slip/packing_slip.txt +++ b/erpnext/stock/doctype/packing_slip/packing_slip.txt @@ -3,9 +3,9 @@ # These values are common in all dictionaries { - 'creation': '2012-03-27 14:36:34', + 'creation': '2012-05-15 12:15:08', 'docstatus': 0, - 'modified': '2012-03-27 14:45:49', + 'modified': '2012-06-29 12:24:16', 'modified_by': u'Administrator', 'owner': u'Administrator' }, @@ -15,6 +15,7 @@ '_last_update': u'1328091392', 'autoname': u'PS.#######', 'colour': u'White:FFF', + 'description': u'Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.', 'doctype': 'DocType', 'document_type': u'Transaction', 'is_submittable': 1, @@ -26,7 +27,7 @@ 'section_style': u'Simple', 'show_in_menu': 0, 'subject': u'[%(delivery_note)s] Case Nos: %(from_case_no)s - %(to_case_no)s | Net Weight: %(net_weight_pkg)s %(net_weight_uom)s | Gross Weight: %(gross_weight_pkg)s %(gross_weight_uom)s', - 'version': 40 + 'version': 1 }, # These values are common for all DocField @@ -140,6 +141,8 @@ # DocField { + 'colour': u'White:FFF', + 'description': u'Indicates that the package is a part of this delivery', 'doctype': u'DocField', 'fieldname': u'delivery_note', 'fieldtype': u'Link', @@ -190,10 +193,11 @@ # DocField { 'colour': u'White:FFF', + 'description': u'Identification of the package for the delivery (for print)', 'doctype': u'DocField', 'fieldname': u'from_case_no', 'fieldtype': u'Data', - 'label': u'From Case No.', + 'label': u'From Package No.', 'no_copy': 1, 'permlevel': 0, 'reqd': 1, @@ -211,10 +215,11 @@ # DocField { 'colour': u'White:FFF', + 'description': u'If more than one package of the same type (for print)', 'doctype': u'DocField', 'fieldname': u'to_case_no', 'fieldtype': u'Data', - 'label': u'To Case No.', + 'label': u'To Package No.', 'no_copy': 1, 'permlevel': 0, 'width': u'50px' @@ -251,6 +256,7 @@ # DocField { 'colour': u'White:FFF', + 'description': u'The net weight of this package. (calculated automatically as sum of net weight of items)', 'doctype': u'DocField', 'fieldname': u'net_weight_pkg', 'fieldtype': u'Currency', @@ -281,6 +287,7 @@ # DocField { 'colour': u'White:FFF', + 'description': u'The gross weight of the package. Usually net weight + packaging material weight. (for print)', 'doctype': u'DocField', 'fieldname': u'gross_weight_pkg', 'fieldtype': u'Currency', @@ -303,7 +310,7 @@ # DocField { - 'depends_on': u'eval:doc.amended_from', + 'colour': u'White:FFF', 'doctype': u'DocField', 'fieldname': u'misc_details', 'fieldtype': u'Section Break', diff --git a/erpnext/support/doctype/support_ticket/listview.js b/erpnext/support/doctype/support_ticket/listview.js index eb0ba725518..503e2ab8ba9 100644 --- a/erpnext/support/doctype/support_ticket/listview.js +++ b/erpnext/support/doctype/support_ticket/listview.js @@ -29,10 +29,7 @@ wn.doclistviews['Support Ticket'] = wn.views.ListView.extend({ data.status = 'Waiting' } data.status_html = repl('%(status)s', data); - var a = $(data.status_html).click(function() { - me.set_filter('status', $(this).text()); - }); - + // escape double quotes data.description = cstr(data.subject).replace(/"/gi, '\"') + " | " + cstr(data.description).replace(/"/gi, '\"');