mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-07 23:22:52 +00:00
moved directory structure
This commit is contained in:
1
stock/search_criteria/stock_aging_report/__init__.py
Normal file
1
stock/search_criteria/stock_aging_report/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
from __future__ import unicode_literals
|
||||
@@ -0,0 +1,28 @@
|
||||
// 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.filter_fields_dict['Serial No'+FILTER_SEP +'Status'].df.filter_hide = 1;
|
||||
|
||||
this.filter_fields_dict['Serial No'+FILTER_SEP +'ID'].df.in_first_page = 1;
|
||||
this.filter_fields_dict['Serial No'+FILTER_SEP +'From Purchase Date'].df.in_first_page = 1;
|
||||
this.filter_fields_dict['Serial No'+FILTER_SEP +'To Purchase Date'].df.in_first_page = 1;
|
||||
}
|
||||
|
||||
//this.mytabs.items['Select Columns'].hide();
|
||||
this.mytabs.items['More Filters'].hide();
|
||||
@@ -0,0 +1,32 @@
|
||||
# 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/>.
|
||||
|
||||
from __future__ import unicode_literals
|
||||
col = [['In Store Period (in days)', 'Data', '']]
|
||||
for c in col:
|
||||
colnames.append(str(c[0]))
|
||||
coltypes.append(str(c[1]))
|
||||
colwidths.append('150px')
|
||||
coloptions.append(str(c[2]))
|
||||
col_idx[str(c)] = len(colnames) - 1
|
||||
|
||||
import datetime
|
||||
for r in res:
|
||||
if r[col_idx['Purchase Date']]:
|
||||
dt = (datetime.date.today() - getdate(r[col_idx['Purchase Date']])).days
|
||||
else:
|
||||
dt = ''
|
||||
r.append(dt)
|
||||
@@ -0,0 +1,34 @@
|
||||
# Search Criteria, stock_aging_report
|
||||
[
|
||||
|
||||
# These values are common in all dictionaries
|
||||
{
|
||||
'creation': '2012-04-03 12:49:53',
|
||||
'docstatus': 0,
|
||||
'modified': '2012-04-03 12:49:53',
|
||||
'modified_by': u'Administrator',
|
||||
'owner': u'ashwini@webnotestech.com'
|
||||
},
|
||||
|
||||
# These values are common for all Search Criteria
|
||||
{
|
||||
'add_cond': u"`tabSerial No`.status = 'In Store'",
|
||||
'columns': u'Serial No\x01ID,Serial No\x01Item Code,Serial No\x01Description,Serial No\x01Item Group,Serial No\x01Purchase Date',
|
||||
'criteria_name': u'Stock Aging Report',
|
||||
'doc_type': u'Serial No',
|
||||
'doctype': 'Search Criteria',
|
||||
'filters': u"{'Serial No\x01Saved':1,'Serial No\x01Submitted':1,'Serial No\x01Status':'In Store','Serial No\x01Maintenance Status':''}",
|
||||
'module': u'Stock',
|
||||
'name': '__common__',
|
||||
'page_len': 1000,
|
||||
'sort_by': u'`tabSerial No`.`name`',
|
||||
'sort_order': u'DESC',
|
||||
'standard': u'Yes'
|
||||
},
|
||||
|
||||
# Search Criteria, stock_aging_report
|
||||
{
|
||||
'doctype': 'Search Criteria',
|
||||
'name': u'stock_aging_report'
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user