mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-02 03:39:11 +00:00
moved directory structure
This commit is contained in:
1
support/search_criteria/amc_summary/__init__.py
Normal file
1
support/search_criteria/amc_summary/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
from __future__ import unicode_literals
|
||||
25
support/search_criteria/amc_summary/amc_summary.js
Normal file
25
support/search_criteria/amc_summary/amc_summary.js
Normal file
@@ -0,0 +1,25 @@
|
||||
// ERPNext - web based ERP (http://erpnext.com)
|
||||
// Copyright (C) 2012 Web Notes Technologies Pvt Ltd
|
||||
//
|
||||
// This program is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// This program is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
report.customize_filters = function() {
|
||||
this.hide_all_filters();
|
||||
this.mytabs.items['Select Columns'].hide();
|
||||
this.mytabs.items['More Filters'].hide()
|
||||
this.filter_fields_dict['Serial No'+FILTER_SEP +'Territory'].df.filter_hide = 0;
|
||||
this.filter_fields_dict['Serial No'+FILTER_SEP +'Item Group'].df.filter_hide = 0;
|
||||
this.filter_fields_dict['Serial No'+FILTER_SEP +'Territory'].df.in_first_page = 1;
|
||||
this.filter_fields_dict['Serial No'+FILTER_SEP +'Item Group'].df.in_first_page = 1;
|
||||
}
|
||||
87
support/search_criteria/amc_summary/amc_summary.py
Normal file
87
support/search_criteria/amc_summary/amc_summary.py
Normal file
@@ -0,0 +1,87 @@
|
||||
# ERPNext - web based ERP (http://erpnext.com)
|
||||
# Copyright (C) 2012 Web Notes Technologies Pvt Ltd
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
# ADD NEW COLUMNS
|
||||
from __future__ import unicode_literals
|
||||
row_list = [['Item Group','Data','150px',''],
|
||||
['Out of AMC','Int','150px',''],
|
||||
['Under AMC','Int','150px',''],
|
||||
['Out of Warranty','Int','150px',''],
|
||||
['Under Warranty','Int','150px',''],
|
||||
['Total','Int','150px','']
|
||||
]
|
||||
|
||||
for r in row_list:
|
||||
colnames.append(r[0])
|
||||
coltypes.append(r[1])
|
||||
colwidths.append(r[2])
|
||||
coloptions.append(r[3])
|
||||
col_idx[r[0]] = len(colnames)-1
|
||||
|
||||
|
||||
#ADD VALUES TO THE COLUMN
|
||||
out=[]
|
||||
oa,ua,ow,uw,sum=0,0,0,0,0
|
||||
nowdate = nowdate()
|
||||
for r in res:
|
||||
cc = r[col_idx['Territory']]
|
||||
item_groups = sql("select distinct item_group from `tabSerial No` where territory = '%s' and item_group like '%%%s'" %(cc,filter_values.get('item_group')))
|
||||
|
||||
for col in range(len(colnames)-1): # this would make all first row blank. just for look
|
||||
r.append('')
|
||||
out.append(r)
|
||||
|
||||
# Add Totals for each Territory
|
||||
# -----------------------------
|
||||
det = sql("select COUNT(CASE WHEN amc_expiry_date > '%s' THEN name ELSE NULL END), COUNT(CASE WHEN amc_expiry_date <= '%s' THEN name ELSE NULL END), COUNT(CASE WHEN warranty_expiry_date > '%s' THEN name ELSE NULL END), COUNT(CASE WHEN warranty_expiry_date <= '%s' THEN name ELSE NULL END) from `tabSerial No` where territory = '%s' and item_group like '%%%s'" %(nowdate,nowdate,nowdate,nowdate,cc,filter_values.get('item_group')))
|
||||
r[col_idx['Item Group']] = ''
|
||||
|
||||
r[col_idx['Out of AMC']] = cstr(det[0][0])
|
||||
r[col_idx['Under AMC']] = cstr(det[0][1])
|
||||
r[col_idx['Out of Warranty']] = cstr(det[0][2])
|
||||
r[col_idx['Under Warranty']] = cstr(det[0][3])
|
||||
tot = cint(det[0][0]) + cint(det[0][1]) + cint(det[0][2]) + cint(det[0][3])
|
||||
r[col_idx['Total']] = cstr(tot)
|
||||
|
||||
|
||||
oa += cint(det[0][0])
|
||||
ua += cint(det[0][1])
|
||||
ow += cint(det[0][2])
|
||||
uw += cint(det[0][3])
|
||||
sum += tot
|
||||
|
||||
|
||||
# Add Brand Details belonging to Territory
|
||||
# ----------------------------------------
|
||||
for br in item_groups:
|
||||
br_det = sql("select COUNT(CASE WHEN amc_expiry_date > '%s' THEN name ELSE NULL END), COUNT(CASE WHEN amc_expiry_date <= '%s' THEN name ELSE NULL END), COUNT(CASE WHEN warranty_expiry_date > '%s' THEN name ELSE NULL END), COUNT(CASE WHEN warranty_expiry_date <= '%s' THEN name ELSE NULL END) from `tabSerial No` where territory = '%s' and item_group = '%s'"%(nowdate,nowdate,nowdate,nowdate,cc,br[0]))
|
||||
t_row = ['' for i in range(len(colnames))]
|
||||
t_row[col_idx['Item Group']] = br[0]
|
||||
|
||||
t_row[col_idx['Out of AMC']] = cint(br_det[0][0])
|
||||
t_row[col_idx['Under AMC']] = cint(br_det[0][1])
|
||||
t_row[col_idx['Out of Warranty']] = cint(br_det[0][2])
|
||||
t_row[col_idx['Under Warranty']] = cint(br_det[0][3])
|
||||
tot = cint(br_det[0][0]) + cint(br_det[0][1]) + cint(br_det[0][2])+ cint(br_det[0][3])
|
||||
t_row[col_idx['Total']] = tot
|
||||
out.append(t_row)
|
||||
|
||||
|
||||
#ADD NEW ROW
|
||||
# ----------
|
||||
newrow=['','TOTAL',oa,ua,ow,uw,sum]
|
||||
out.append(newrow)
|
||||
res=out
|
||||
35
support/search_criteria/amc_summary/amc_summary.txt
Normal file
35
support/search_criteria/amc_summary/amc_summary.txt
Normal file
@@ -0,0 +1,35 @@
|
||||
# Search Criteria, amc_summary
|
||||
[
|
||||
|
||||
# These values are common in all dictionaries
|
||||
{
|
||||
'creation': '2012-04-03 12:49:50',
|
||||
'docstatus': 0,
|
||||
'modified': '2012-04-03 12:49:50',
|
||||
'modified_by': u'Administrator',
|
||||
'owner': u'Administrator'
|
||||
},
|
||||
|
||||
# These values are common for all Search Criteria
|
||||
{
|
||||
'add_cond': u"`tabSerial No`.`territory` is not null\n`tabSerial No`.`territory` != ''\n`tabSerial No`.`status` not in ('In Store', 'Scrapped')",
|
||||
'columns': u'Serial No\x01Territory',
|
||||
'criteria_name': u'AMC Summary',
|
||||
'doc_type': u'Serial No',
|
||||
'doctype': 'Search Criteria',
|
||||
'filters': u"{'Serial No\x01Saved':1,'Serial No\x01Status':''}",
|
||||
'group_by': u'`tabSerial No`.`cost_center`',
|
||||
'module': u'Support',
|
||||
'name': '__common__',
|
||||
'page_len': 50,
|
||||
'sort_by': u'`tabSerial No`.`cost_center`',
|
||||
'sort_order': u'ASC',
|
||||
'standard': u'Yes'
|
||||
},
|
||||
|
||||
# Search Criteria, amc_summary
|
||||
{
|
||||
'doctype': 'Search Criteria',
|
||||
'name': u'amc_summary'
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user