2015-03-03 09:25:30 +00:00
|
|
|
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
2013-08-05 09:29:54 +00:00
|
|
|
# License: GNU General Public License v3. See license.txt
|
2013-07-08 13:15:55 +00:00
|
|
|
|
|
|
|
from __future__ import unicode_literals
|
2014-02-14 10:17:51 +00:00
|
|
|
import frappe
|
2020-03-31 05:15:32 +00:00
|
|
|
import erpnext
|
2017-01-13 13:23:11 +00:00
|
|
|
from frappe.desk.reportview import get_match_cond, get_filters_cond
|
2020-01-06 10:04:15 +00:00
|
|
|
from frappe.utils import nowdate, getdate
|
2017-01-18 10:05:01 +00:00
|
|
|
from collections import defaultdict
|
2020-01-06 10:04:15 +00:00
|
|
|
from erpnext.stock.get_item_details import _get_item_tax_template
|
2020-05-18 08:56:26 +00:00
|
|
|
from frappe.utils import unique
|
2013-07-08 13:15:55 +00:00
|
|
|
|
|
|
|
# searches for active employees
|
|
|
|
def employee_query(doctype, txt, searchfield, start, page_len, filters):
|
2016-11-16 09:59:01 +00:00
|
|
|
conditions = []
|
2020-05-18 08:56:26 +00:00
|
|
|
fields = get_fields("Employee", ["name", "employee_name"])
|
|
|
|
|
|
|
|
return frappe.db.sql("""select {fields} from `tabEmployee`
|
2014-04-11 11:21:27 +00:00
|
|
|
where status = 'Active'
|
|
|
|
and docstatus < 2
|
2014-07-09 07:45:03 +00:00
|
|
|
and ({key} like %(txt)s
|
|
|
|
or employee_name like %(txt)s)
|
2016-11-16 09:59:01 +00:00
|
|
|
{fcond} {mcond}
|
2014-04-11 11:21:27 +00:00
|
|
|
order by
|
2014-07-09 07:45:03 +00:00
|
|
|
if(locate(%(_txt)s, name), locate(%(_txt)s, name), 99999),
|
|
|
|
if(locate(%(_txt)s, employee_name), locate(%(_txt)s, employee_name), 99999),
|
2016-03-11 09:03:04 +00:00
|
|
|
idx desc,
|
2014-04-16 09:51:46 +00:00
|
|
|
name, employee_name
|
2014-07-09 07:45:03 +00:00
|
|
|
limit %(start)s, %(page_len)s""".format(**{
|
2020-05-18 08:56:26 +00:00
|
|
|
'fields': ", ".join(fields),
|
2014-07-09 07:45:03 +00:00
|
|
|
'key': searchfield,
|
2016-11-16 09:59:01 +00:00
|
|
|
'fcond': get_filters_cond(doctype, filters, conditions),
|
2014-07-09 07:45:03 +00:00
|
|
|
'mcond': get_match_cond(doctype)
|
|
|
|
}), {
|
|
|
|
'txt': "%%%s%%" % txt,
|
|
|
|
'_txt': txt.replace("%", ""),
|
|
|
|
'start': start,
|
|
|
|
'page_len': page_len
|
|
|
|
})
|
2013-07-08 13:15:55 +00:00
|
|
|
|
2020-05-18 08:56:26 +00:00
|
|
|
|
|
|
|
# searches for leads which are not converted
|
2014-04-11 11:21:27 +00:00
|
|
|
def lead_query(doctype, txt, searchfield, start, page_len, filters):
|
2020-05-18 08:56:26 +00:00
|
|
|
fields = get_fields("Lead", ["name", "lead_name", "company_name"])
|
|
|
|
|
|
|
|
return frappe.db.sql("""select {fields} from `tabLead`
|
2014-04-11 11:21:27 +00:00
|
|
|
where docstatus < 2
|
|
|
|
and ifnull(status, '') != 'Converted'
|
2014-07-09 07:45:03 +00:00
|
|
|
and ({key} like %(txt)s
|
|
|
|
or lead_name like %(txt)s
|
|
|
|
or company_name like %(txt)s)
|
|
|
|
{mcond}
|
2014-04-11 11:21:27 +00:00
|
|
|
order by
|
2014-07-09 07:45:03 +00:00
|
|
|
if(locate(%(_txt)s, name), locate(%(_txt)s, name), 99999),
|
|
|
|
if(locate(%(_txt)s, lead_name), locate(%(_txt)s, lead_name), 99999),
|
|
|
|
if(locate(%(_txt)s, company_name), locate(%(_txt)s, company_name), 99999),
|
2016-03-11 09:03:04 +00:00
|
|
|
idx desc,
|
2014-04-16 09:51:46 +00:00
|
|
|
name, lead_name
|
2014-07-09 07:45:03 +00:00
|
|
|
limit %(start)s, %(page_len)s""".format(**{
|
2020-05-18 08:56:26 +00:00
|
|
|
'fields': ", ".join(fields),
|
2014-07-09 07:45:03 +00:00
|
|
|
'key': searchfield,
|
|
|
|
'mcond':get_match_cond(doctype)
|
|
|
|
}), {
|
|
|
|
'txt': "%%%s%%" % txt,
|
|
|
|
'_txt': txt.replace("%", ""),
|
|
|
|
'start': start,
|
|
|
|
'page_len': page_len
|
|
|
|
})
|
2013-07-08 13:15:55 +00:00
|
|
|
|
2020-05-18 08:56:26 +00:00
|
|
|
|
2013-07-08 13:15:55 +00:00
|
|
|
# searches for customer
|
|
|
|
def customer_query(doctype, txt, searchfield, start, page_len, filters):
|
2017-07-25 08:33:01 +00:00
|
|
|
conditions = []
|
2014-02-14 10:17:51 +00:00
|
|
|
cust_master_name = frappe.defaults.get_user_default("cust_master_name")
|
2013-07-10 07:37:49 +00:00
|
|
|
|
2013-07-08 13:15:55 +00:00
|
|
|
if cust_master_name == "Customer Name":
|
|
|
|
fields = ["name", "customer_group", "territory"]
|
|
|
|
else:
|
|
|
|
fields = ["name", "customer_name", "customer_group", "territory"]
|
2017-01-13 13:23:11 +00:00
|
|
|
|
2020-05-18 08:56:26 +00:00
|
|
|
fields = get_fields("Customer", fields)
|
2013-07-10 07:37:49 +00:00
|
|
|
|
2020-05-18 08:56:26 +00:00
|
|
|
searchfields = frappe.get_meta("Customer").get_search_fields()
|
2017-06-23 17:32:52 +00:00
|
|
|
searchfields = " or ".join([field + " like %(txt)s" for field in searchfields])
|
2013-07-08 13:15:55 +00:00
|
|
|
|
2014-07-09 07:45:03 +00:00
|
|
|
return frappe.db.sql("""select {fields} from `tabCustomer`
|
2014-04-11 11:21:27 +00:00
|
|
|
where docstatus < 2
|
2017-06-23 17:32:52 +00:00
|
|
|
and ({scond}) and disabled=0
|
2017-07-25 08:33:01 +00:00
|
|
|
{fcond} {mcond}
|
2014-04-11 11:21:27 +00:00
|
|
|
order by
|
2014-07-09 07:45:03 +00:00
|
|
|
if(locate(%(_txt)s, name), locate(%(_txt)s, name), 99999),
|
|
|
|
if(locate(%(_txt)s, customer_name), locate(%(_txt)s, customer_name), 99999),
|
2016-03-11 09:03:04 +00:00
|
|
|
idx desc,
|
2014-04-11 11:21:27 +00:00
|
|
|
name, customer_name
|
2014-07-09 07:45:03 +00:00
|
|
|
limit %(start)s, %(page_len)s""".format(**{
|
2020-05-18 08:56:26 +00:00
|
|
|
"fields": ", ".join(fields),
|
2017-06-23 17:32:52 +00:00
|
|
|
"scond": searchfields,
|
2017-07-25 08:33:01 +00:00
|
|
|
"mcond": get_match_cond(doctype),
|
|
|
|
"fcond": get_filters_cond(doctype, filters, conditions).replace('%', '%%'),
|
2014-07-09 07:45:03 +00:00
|
|
|
}), {
|
|
|
|
'txt': "%%%s%%" % txt,
|
|
|
|
'_txt': txt.replace("%", ""),
|
|
|
|
'start': start,
|
|
|
|
'page_len': page_len
|
|
|
|
})
|
2013-07-08 13:15:55 +00:00
|
|
|
|
2020-05-18 08:56:26 +00:00
|
|
|
|
2013-07-08 13:15:55 +00:00
|
|
|
# searches for supplier
|
|
|
|
def supplier_query(doctype, txt, searchfield, start, page_len, filters):
|
2014-02-14 10:17:51 +00:00
|
|
|
supp_master_name = frappe.defaults.get_user_default("supp_master_name")
|
2014-04-11 11:21:27 +00:00
|
|
|
if supp_master_name == "Supplier Name":
|
2018-04-19 13:07:53 +00:00
|
|
|
fields = ["name", "supplier_group"]
|
2014-04-11 11:21:27 +00:00
|
|
|
else:
|
2018-04-19 13:07:53 +00:00
|
|
|
fields = ["name", "supplier_name", "supplier_group"]
|
2020-05-18 08:56:26 +00:00
|
|
|
|
|
|
|
fields = get_fields("Supplier", fields)
|
2013-07-08 13:15:55 +00:00
|
|
|
|
2014-07-09 07:45:03 +00:00
|
|
|
return frappe.db.sql("""select {field} from `tabSupplier`
|
2014-04-11 11:21:27 +00:00
|
|
|
where docstatus < 2
|
2014-07-09 07:45:03 +00:00
|
|
|
and ({key} like %(txt)s
|
2016-01-25 12:00:49 +00:00
|
|
|
or supplier_name like %(txt)s) and disabled=0
|
2014-07-09 07:45:03 +00:00
|
|
|
{mcond}
|
2014-04-11 11:21:27 +00:00
|
|
|
order by
|
2014-07-09 07:45:03 +00:00
|
|
|
if(locate(%(_txt)s, name), locate(%(_txt)s, name), 99999),
|
|
|
|
if(locate(%(_txt)s, supplier_name), locate(%(_txt)s, supplier_name), 99999),
|
2016-03-11 09:03:04 +00:00
|
|
|
idx desc,
|
2014-04-11 11:21:27 +00:00
|
|
|
name, supplier_name
|
2014-07-09 07:45:03 +00:00
|
|
|
limit %(start)s, %(page_len)s """.format(**{
|
2020-05-18 08:56:26 +00:00
|
|
|
'field': ', '.join(fields),
|
2014-07-09 07:45:03 +00:00
|
|
|
'key': searchfield,
|
|
|
|
'mcond':get_match_cond(doctype)
|
|
|
|
}), {
|
|
|
|
'txt': "%%%s%%" % txt,
|
|
|
|
'_txt': txt.replace("%", ""),
|
|
|
|
'start': start,
|
|
|
|
'page_len': page_len
|
|
|
|
})
|
2014-04-11 11:21:27 +00:00
|
|
|
|
2020-05-18 08:56:26 +00:00
|
|
|
|
2013-07-16 11:54:17 +00:00
|
|
|
def tax_account_query(doctype, txt, searchfield, start, page_len, filters):
|
2020-03-31 05:15:32 +00:00
|
|
|
company_currency = erpnext.get_company_currency(filters.get('company'))
|
|
|
|
|
2014-04-11 11:21:27 +00:00
|
|
|
tax_accounts = frappe.db.sql("""select name, parent_account from tabAccount
|
|
|
|
where tabAccount.docstatus!=2
|
2014-03-21 05:44:49 +00:00
|
|
|
and account_type in (%s)
|
2015-04-23 07:44:17 +00:00
|
|
|
and is_group = 0
|
2013-07-16 11:54:17 +00:00
|
|
|
and company = %s
|
2020-03-31 05:15:32 +00:00
|
|
|
and account_currency = %s
|
2013-07-16 11:54:17 +00:00
|
|
|
and `%s` LIKE %s
|
2016-03-11 09:03:04 +00:00
|
|
|
order by idx desc, name
|
2014-04-11 11:21:27 +00:00
|
|
|
limit %s, %s""" %
|
2020-03-31 05:15:32 +00:00
|
|
|
(", ".join(['%s']*len(filters.get("account_type"))), "%s", "%s", searchfield, "%s", "%s", "%s"),
|
|
|
|
tuple(filters.get("account_type") + [filters.get("company"), company_currency, "%%%s%%" % txt,
|
2014-03-21 05:44:49 +00:00
|
|
|
start, page_len]))
|
|
|
|
if not tax_accounts:
|
2014-04-11 11:21:27 +00:00
|
|
|
tax_accounts = frappe.db.sql("""select name, parent_account from tabAccount
|
2015-04-23 07:44:17 +00:00
|
|
|
where tabAccount.docstatus!=2 and is_group = 0
|
2020-03-31 05:15:32 +00:00
|
|
|
and company = %s and account_currency = %s and `%s` LIKE %s limit %s, %s""" #nosec
|
|
|
|
% ("%s", "%s", searchfield, "%s", "%s", "%s"),
|
|
|
|
(filters.get("company"), company_currency, "%%%s%%" % txt, start, page_len))
|
2014-04-11 11:21:27 +00:00
|
|
|
|
2014-03-21 05:44:49 +00:00
|
|
|
return tax_accounts
|
2013-07-08 13:15:55 +00:00
|
|
|
|
2020-05-18 08:56:26 +00:00
|
|
|
|
2016-04-07 09:55:43 +00:00
|
|
|
def item_query(doctype, txt, searchfield, start, page_len, filters, as_dict=False):
|
2013-07-08 13:15:55 +00:00
|
|
|
conditions = []
|
2013-07-10 07:37:49 +00:00
|
|
|
|
2019-10-28 10:18:10 +00:00
|
|
|
#Get searchfields from meta and use in Item Link field query
|
2019-10-30 13:03:44 +00:00
|
|
|
meta = frappe.get_meta("Item", cached=True)
|
2019-10-28 10:18:10 +00:00
|
|
|
searchfields = meta.get_search_fields()
|
|
|
|
|
2019-10-30 13:03:44 +00:00
|
|
|
if "description" in searchfields:
|
|
|
|
searchfields.remove("description")
|
|
|
|
|
2019-11-19 13:35:23 +00:00
|
|
|
columns = ''
|
|
|
|
extra_searchfields = [field for field in searchfields
|
|
|
|
if not field in ["name", "item_group", "description"]]
|
|
|
|
|
|
|
|
if extra_searchfields:
|
|
|
|
columns = ", " + ", ".join(extra_searchfields)
|
2019-10-28 10:18:10 +00:00
|
|
|
|
2019-10-30 13:03:44 +00:00
|
|
|
searchfields = searchfields + [field for field in[searchfield or "name", "item_code", "item_group", "item_name"]
|
|
|
|
if not field in searchfields]
|
2019-10-28 10:18:10 +00:00
|
|
|
searchfields = " or ".join([field + " like %(txt)s" for field in searchfields])
|
|
|
|
|
2018-04-02 18:07:33 +00:00
|
|
|
description_cond = ''
|
|
|
|
if frappe.db.count('Item', cache=True) < 50000:
|
|
|
|
# scan description only if items are less than 50000
|
|
|
|
description_cond = 'or tabItem.description LIKE %(txt)s'
|
|
|
|
|
2018-05-17 11:59:36 +00:00
|
|
|
return frappe.db.sql("""select tabItem.name,
|
2014-04-11 11:21:27 +00:00
|
|
|
if(length(tabItem.item_name) > 40,
|
|
|
|
concat(substr(tabItem.item_name, 1, 40), "..."), item_name) as item_name,
|
2018-05-17 11:59:36 +00:00
|
|
|
tabItem.item_group,
|
2013-07-08 13:15:55 +00:00
|
|
|
if(length(tabItem.description) > 40, \
|
2019-11-19 13:35:23 +00:00
|
|
|
concat(substr(tabItem.description, 1, 40), "..."), description) as description
|
2019-10-30 13:03:44 +00:00
|
|
|
{columns}
|
2014-04-11 11:21:27 +00:00
|
|
|
from tabItem
|
2013-11-04 10:53:04 +00:00
|
|
|
where tabItem.docstatus < 2
|
2015-10-29 06:51:41 +00:00
|
|
|
and tabItem.disabled=0
|
2020-05-21 12:40:13 +00:00
|
|
|
and tabItem.has_variants=0
|
2014-06-23 06:50:12 +00:00
|
|
|
and (tabItem.end_of_life > %(today)s or ifnull(tabItem.end_of_life, '0000-00-00')='0000-00-00')
|
2019-10-28 10:18:10 +00:00
|
|
|
and ({scond} or tabItem.item_code IN (select parent from `tabItem Barcode` where barcode LIKE %(txt)s)
|
2019-03-02 16:17:55 +00:00
|
|
|
{description_cond})
|
2013-11-04 10:53:04 +00:00
|
|
|
{fcond} {mcond}
|
2014-04-16 09:51:46 +00:00
|
|
|
order by
|
|
|
|
if(locate(%(_txt)s, name), locate(%(_txt)s, name), 99999),
|
|
|
|
if(locate(%(_txt)s, item_name), locate(%(_txt)s, item_name), 99999),
|
2016-03-11 09:03:04 +00:00
|
|
|
idx desc,
|
2014-04-16 09:51:46 +00:00
|
|
|
name, item_name
|
2017-10-17 07:00:34 +00:00
|
|
|
limit %(start)s, %(page_len)s """.format(
|
|
|
|
key=searchfield,
|
2019-10-30 13:03:44 +00:00
|
|
|
columns=columns,
|
2019-10-28 10:18:10 +00:00
|
|
|
scond=searchfields,
|
2016-03-30 07:40:25 +00:00
|
|
|
fcond=get_filters_cond(doctype, filters, conditions).replace('%', '%%'),
|
2018-04-02 18:07:33 +00:00
|
|
|
mcond=get_match_cond(doctype).replace('%', '%%'),
|
|
|
|
description_cond = description_cond),
|
2013-11-04 10:53:04 +00:00
|
|
|
{
|
|
|
|
"today": nowdate(),
|
|
|
|
"txt": "%%%s%%" % txt,
|
2014-04-16 09:51:46 +00:00
|
|
|
"_txt": txt.replace("%", ""),
|
2013-11-04 10:53:04 +00:00
|
|
|
"start": start,
|
|
|
|
"page_len": page_len
|
2016-04-07 09:55:43 +00:00
|
|
|
}, as_dict=as_dict)
|
2013-07-08 13:15:55 +00:00
|
|
|
|
2020-05-18 08:56:26 +00:00
|
|
|
|
2017-11-10 09:36:02 +00:00
|
|
|
def bom(doctype, txt, searchfield, start, page_len, filters):
|
2014-04-11 11:21:27 +00:00
|
|
|
conditions = []
|
2020-05-18 08:56:26 +00:00
|
|
|
fields = get_fields("BOM", ["name", "item"])
|
2014-04-11 11:21:27 +00:00
|
|
|
|
2020-05-18 08:56:26 +00:00
|
|
|
return frappe.db.sql("""select {fields}
|
2014-04-11 11:21:27 +00:00
|
|
|
from tabBOM
|
|
|
|
where tabBOM.docstatus=1
|
|
|
|
and tabBOM.is_active=1
|
2016-03-16 10:52:03 +00:00
|
|
|
and tabBOM.`{key}` like %(txt)s
|
|
|
|
{fcond} {mcond}
|
|
|
|
order by
|
2016-03-11 09:03:04 +00:00
|
|
|
if(locate(%(_txt)s, name), locate(%(_txt)s, name), 99999),
|
|
|
|
idx desc, name
|
2016-03-16 10:52:03 +00:00
|
|
|
limit %(start)s, %(page_len)s """.format(
|
2020-05-18 08:56:26 +00:00
|
|
|
fields=", ".join(fields),
|
2019-07-08 05:10:40 +00:00
|
|
|
fcond=get_filters_cond(doctype, filters, conditions).replace('%', '%%'),
|
2019-07-19 17:19:21 +00:00
|
|
|
mcond=get_match_cond(doctype).replace('%', '%%'),
|
|
|
|
key=searchfield),
|
2019-07-08 05:10:40 +00:00
|
|
|
{
|
2019-07-19 17:19:21 +00:00
|
|
|
'txt': '%' + txt + '%',
|
2016-03-11 09:03:04 +00:00
|
|
|
'_txt': txt.replace("%", ""),
|
2017-11-10 09:36:02 +00:00
|
|
|
'start': start or 0,
|
|
|
|
'page_len': page_len or 20
|
2016-03-11 09:03:04 +00:00
|
|
|
})
|
2013-07-08 13:15:55 +00:00
|
|
|
|
2020-05-18 08:56:26 +00:00
|
|
|
|
2013-07-08 13:15:55 +00:00
|
|
|
def get_project_name(doctype, txt, searchfield, start, page_len, filters):
|
|
|
|
cond = ''
|
2014-08-21 06:04:31 +00:00
|
|
|
if filters.get('customer'):
|
2018-09-26 12:45:53 +00:00
|
|
|
cond = """(`tabProject`.customer = %s or
|
2018-08-27 06:13:57 +00:00
|
|
|
ifnull(`tabProject`.customer,"")="") and""" %(frappe.db.escape(filters.get("customer")))
|
2014-04-11 11:21:27 +00:00
|
|
|
|
2020-05-18 08:56:26 +00:00
|
|
|
fields = get_fields("Project", ["name"])
|
|
|
|
|
|
|
|
return frappe.db.sql("""select {fields} from `tabProject`
|
2014-04-11 11:21:27 +00:00
|
|
|
where `tabProject`.status not in ("Completed", "Cancelled")
|
2016-03-11 09:03:04 +00:00
|
|
|
and {cond} `tabProject`.name like %(txt)s {match_cond}
|
|
|
|
order by
|
|
|
|
if(locate(%(_txt)s, name), locate(%(_txt)s, name), 99999),
|
|
|
|
idx desc,
|
|
|
|
`tabProject`.name asc
|
|
|
|
limit {start}, {page_len}""".format(
|
2020-05-18 08:56:26 +00:00
|
|
|
fields=", ".join(['`tabProject`.{0}'.format(f) for f in fields]),
|
2016-03-11 09:03:04 +00:00
|
|
|
cond=cond,
|
|
|
|
match_cond=get_match_cond(doctype),
|
|
|
|
start=start,
|
|
|
|
page_len=page_len), {
|
|
|
|
"txt": "%{0}%".format(txt),
|
2016-03-16 05:46:31 +00:00
|
|
|
"_txt": txt.replace('%', '')
|
2016-03-11 09:03:04 +00:00
|
|
|
})
|
2014-04-11 11:21:27 +00:00
|
|
|
|
2017-09-18 11:40:09 +00:00
|
|
|
|
2017-05-17 08:22:21 +00:00
|
|
|
def get_delivery_notes_to_be_billed(doctype, txt, searchfield, start, page_len, filters, as_dict):
|
2020-05-18 08:56:26 +00:00
|
|
|
fields = get_fields("Delivery Note", ["name", "customer", "posting_date"])
|
|
|
|
|
2017-05-17 08:22:21 +00:00
|
|
|
return frappe.db.sql("""
|
2020-05-18 08:56:26 +00:00
|
|
|
select %(fields)s
|
2014-04-11 11:21:27 +00:00
|
|
|
from `tabDelivery Note`
|
|
|
|
where `tabDelivery Note`.`%(key)s` like %(txt)s and
|
2017-09-18 11:40:09 +00:00
|
|
|
`tabDelivery Note`.docstatus = 1
|
2017-05-17 08:22:21 +00:00
|
|
|
and status not in ("Stopped", "Closed") %(fcond)s
|
2017-09-18 11:40:09 +00:00
|
|
|
and (
|
|
|
|
(`tabDelivery Note`.is_return = 0 and `tabDelivery Note`.per_billed < 100)
|
|
|
|
or `tabDelivery Note`.grand_total = 0
|
|
|
|
or (
|
|
|
|
`tabDelivery Note`.is_return = 1
|
|
|
|
and return_against in (select name from `tabDelivery Note` where per_billed < 100)
|
|
|
|
)
|
|
|
|
)
|
2019-05-15 02:16:28 +00:00
|
|
|
%(mcond)s order by `tabDelivery Note`.`%(key)s` asc limit %(start)s, %(page_len)s
|
2017-05-17 08:22:21 +00:00
|
|
|
""" % {
|
2020-05-18 08:56:26 +00:00
|
|
|
"fields": ", ".join(["`tabDelivery Note`.{0}".format(f) for f in fields]),
|
2017-05-17 08:22:21 +00:00
|
|
|
"key": searchfield,
|
|
|
|
"fcond": get_filters_cond(doctype, filters, []),
|
|
|
|
"mcond": get_match_cond(doctype),
|
2019-05-15 02:16:28 +00:00
|
|
|
"start": start,
|
|
|
|
"page_len": page_len,
|
2017-05-17 08:22:21 +00:00
|
|
|
"txt": "%(txt)s"
|
2017-09-18 11:40:09 +00:00
|
|
|
}, {"txt": ("%%%s%%" % txt)}, as_dict=as_dict)
|
|
|
|
|
2013-10-18 06:59:11 +00:00
|
|
|
|
|
|
|
def get_batch_no(doctype, txt, searchfield, start, page_len, filters):
|
2015-07-08 09:06:09 +00:00
|
|
|
cond = ""
|
|
|
|
if filters.get("posting_date"):
|
2018-01-31 10:00:03 +00:00
|
|
|
cond = "and (batch.expiry_date is null or batch.expiry_date >= %(posting_date)s)"
|
2015-08-26 05:20:16 +00:00
|
|
|
|
2015-03-20 09:36:30 +00:00
|
|
|
batch_nos = None
|
|
|
|
args = {
|
|
|
|
'item_code': filters.get("item_code"),
|
|
|
|
'warehouse': filters.get("warehouse"),
|
|
|
|
'posting_date': filters.get('posting_date'),
|
2015-04-06 07:29:34 +00:00
|
|
|
'txt': "%{0}%".format(txt),
|
2015-03-20 09:36:30 +00:00
|
|
|
"start": start,
|
|
|
|
"page_len": page_len
|
|
|
|
}
|
2013-10-18 06:59:11 +00:00
|
|
|
|
2019-10-22 08:33:27 +00:00
|
|
|
having_clause = "having sum(sle.actual_qty) > 0"
|
|
|
|
if filters.get("is_return"):
|
|
|
|
having_clause = ""
|
|
|
|
|
2015-04-06 07:29:34 +00:00
|
|
|
if args.get('warehouse'):
|
2019-10-22 08:33:27 +00:00
|
|
|
batch_nos = frappe.db.sql("""select sle.batch_no, round(sum(sle.actual_qty),2), sle.stock_uom,
|
|
|
|
concat('MFG-',batch.manufacturing_date), concat('EXP-',batch.expiry_date)
|
|
|
|
from `tabStock Ledger Entry` sle
|
|
|
|
INNER JOIN `tabBatch` batch on sle.batch_no = batch.name
|
|
|
|
where
|
|
|
|
batch.disabled = 0
|
|
|
|
and sle.item_code = %(item_code)s
|
|
|
|
and sle.warehouse = %(warehouse)s
|
|
|
|
and (sle.batch_no like %(txt)s
|
2019-12-24 06:59:25 +00:00
|
|
|
or batch.expiry_date like %(txt)s
|
2019-10-22 08:33:27 +00:00
|
|
|
or batch.manufacturing_date like %(txt)s)
|
|
|
|
and batch.docstatus < 2
|
|
|
|
{cond}
|
|
|
|
{match_conditions}
|
|
|
|
group by batch_no {having_clause}
|
|
|
|
order by batch.expiry_date, sle.batch_no desc
|
|
|
|
limit %(start)s, %(page_len)s""".format(
|
|
|
|
cond=cond,
|
|
|
|
match_conditions=get_match_cond(doctype),
|
|
|
|
having_clause = having_clause
|
|
|
|
), args)
|
2015-03-20 09:36:30 +00:00
|
|
|
|
|
|
|
return batch_nos
|
2013-10-18 06:59:11 +00:00
|
|
|
else:
|
2018-02-12 09:03:40 +00:00
|
|
|
return frappe.db.sql("""select name, concat('MFG-', manufacturing_date), concat('EXP-',expiry_date) from `tabBatch` batch
|
2018-08-06 09:15:18 +00:00
|
|
|
where batch.disabled = 0
|
|
|
|
and item = %(item_code)s
|
2018-02-12 09:03:40 +00:00
|
|
|
and (name like %(txt)s
|
2019-12-24 06:59:25 +00:00
|
|
|
or expiry_date like %(txt)s
|
2018-02-12 09:03:40 +00:00
|
|
|
or manufacturing_date like %(txt)s)
|
2015-03-20 09:36:30 +00:00
|
|
|
and docstatus < 2
|
2015-07-08 09:06:09 +00:00
|
|
|
{0}
|
2015-04-06 07:29:34 +00:00
|
|
|
{match_conditions}
|
|
|
|
order by expiry_date, name desc
|
2015-09-02 05:25:32 +00:00
|
|
|
limit %(start)s, %(page_len)s""".format(cond, match_conditions=get_match_cond(doctype)), args)
|
2014-05-28 07:26:28 +00:00
|
|
|
|
2020-05-18 08:56:26 +00:00
|
|
|
|
2014-05-28 07:26:28 +00:00
|
|
|
def get_account_list(doctype, txt, searchfield, start, page_len, filters):
|
2014-06-14 09:56:10 +00:00
|
|
|
filter_list = []
|
|
|
|
|
2014-05-28 07:26:28 +00:00
|
|
|
if isinstance(filters, dict):
|
2014-06-14 09:56:10 +00:00
|
|
|
for key, val in filters.items():
|
|
|
|
if isinstance(val, (list, tuple)):
|
|
|
|
filter_list.append([doctype, key, val[0], val[1]])
|
|
|
|
else:
|
|
|
|
filter_list.append([doctype, key, "=", val])
|
2015-04-14 16:45:24 +00:00
|
|
|
elif isinstance(filters, list):
|
|
|
|
filter_list.extend(filters)
|
2014-06-14 09:56:10 +00:00
|
|
|
|
2015-04-23 07:44:17 +00:00
|
|
|
if "is_group" not in [d[1] for d in filter_list]:
|
|
|
|
filter_list.append(["Account", "is_group", "=", "0"])
|
2014-06-14 09:56:10 +00:00
|
|
|
|
|
|
|
if searchfield and txt:
|
|
|
|
filter_list.append([doctype, searchfield, "like", "%%%s%%" % txt])
|
2014-05-28 07:26:28 +00:00
|
|
|
|
2014-09-09 10:45:35 +00:00
|
|
|
return frappe.desk.reportview.execute("Account", filters = filter_list,
|
2014-05-28 07:26:28 +00:00
|
|
|
fields = ["name", "parent_account"],
|
|
|
|
limit_start=start, limit_page_length=page_len, as_list=True)
|
2014-06-24 13:23:04 +00:00
|
|
|
|
2020-05-18 08:56:26 +00:00
|
|
|
|
2020-04-28 07:30:04 +00:00
|
|
|
def get_blanket_orders(doctype, txt, searchfield, start, page_len, filters):
|
|
|
|
return frappe.db.sql("""select distinct bo.name, bo.blanket_order_type, bo.to_date
|
|
|
|
from `tabBlanket Order` bo, `tabBlanket Order Item` boi
|
|
|
|
where
|
|
|
|
boi.parent = bo.name
|
|
|
|
and boi.item_code = {item_code}
|
|
|
|
and bo.blanket_order_type = '{blanket_order_type}'
|
|
|
|
and bo.company = {company}
|
|
|
|
and bo.docstatus = 1"""
|
|
|
|
.format(item_code = frappe.db.escape(filters.get("item")),
|
|
|
|
blanket_order_type = filters.get("blanket_order_type"),
|
|
|
|
company = frappe.db.escape(filters.get("company"))
|
|
|
|
))
|
2015-10-19 06:25:28 +00:00
|
|
|
|
2020-05-18 08:56:26 +00:00
|
|
|
|
2015-10-19 06:25:28 +00:00
|
|
|
@frappe.whitelist()
|
|
|
|
def get_income_account(doctype, txt, searchfield, start, page_len, filters):
|
|
|
|
from erpnext.controllers.queries import get_match_cond
|
|
|
|
|
|
|
|
# income account can be any Credit account,
|
|
|
|
# but can also be a Asset account with account_type='Income Account' in special circumstances.
|
|
|
|
# Hence the first condition is an "OR"
|
|
|
|
if not filters: filters = {}
|
|
|
|
|
2015-10-29 06:51:41 +00:00
|
|
|
condition = ""
|
2015-10-19 06:25:28 +00:00
|
|
|
if filters.get("company"):
|
|
|
|
condition += "and tabAccount.company = %(company)s"
|
2015-10-29 06:51:41 +00:00
|
|
|
|
2015-10-19 06:25:28 +00:00
|
|
|
return frappe.db.sql("""select tabAccount.name from `tabAccount`
|
|
|
|
where (tabAccount.report_type = "Profit and Loss"
|
|
|
|
or tabAccount.account_type in ("Income Account", "Temporary"))
|
|
|
|
and tabAccount.is_group=0
|
|
|
|
and tabAccount.`{key}` LIKE %(txt)s
|
2016-03-11 09:03:04 +00:00
|
|
|
{condition} {match_condition}
|
|
|
|
order by idx desc, name"""
|
2015-10-19 06:25:28 +00:00
|
|
|
.format(condition=condition, match_condition=get_match_cond(doctype), key=searchfield), {
|
2018-09-27 10:09:34 +00:00
|
|
|
'txt': '%' + txt + '%',
|
2015-10-19 06:25:28 +00:00
|
|
|
'company': filters.get("company", "")
|
2015-10-29 06:51:41 +00:00
|
|
|
})
|
2016-03-04 07:00:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
@frappe.whitelist()
|
|
|
|
def get_expense_account(doctype, txt, searchfield, start, page_len, filters):
|
|
|
|
from erpnext.controllers.queries import get_match_cond
|
2016-04-07 09:55:43 +00:00
|
|
|
|
2016-03-04 07:00:46 +00:00
|
|
|
if not filters: filters = {}
|
|
|
|
|
|
|
|
condition = ""
|
|
|
|
if filters.get("company"):
|
|
|
|
condition += "and tabAccount.company = %(company)s"
|
2016-04-07 09:55:43 +00:00
|
|
|
|
2016-03-04 07:00:46 +00:00
|
|
|
return frappe.db.sql("""select tabAccount.name from `tabAccount`
|
|
|
|
where (tabAccount.report_type = "Profit and Loss"
|
2019-08-21 09:19:24 +00:00
|
|
|
or tabAccount.account_type in ("Expense Account", "Fixed Asset", "Temporary", "Asset Received But Not Billed", "Capital Work in Progress"))
|
2016-03-04 07:00:46 +00:00
|
|
|
and tabAccount.is_group=0
|
|
|
|
and tabAccount.docstatus!=2
|
|
|
|
and tabAccount.{key} LIKE %(txt)s
|
|
|
|
{condition} {match_condition}"""
|
2018-09-21 04:50:52 +00:00
|
|
|
.format(condition=condition, key=searchfield,
|
2016-03-04 07:00:46 +00:00
|
|
|
match_condition=get_match_cond(doctype)), {
|
2016-03-31 17:40:13 +00:00
|
|
|
'company': filters.get("company", ""),
|
2018-09-27 10:09:34 +00:00
|
|
|
'txt': '%' + txt + '%'
|
2016-07-22 02:42:59 +00:00
|
|
|
})
|
2017-01-12 12:19:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
@frappe.whitelist()
|
|
|
|
def warehouse_query(doctype, txt, searchfield, start, page_len, filters):
|
|
|
|
# Should be used when item code is passed in filters.
|
2017-01-18 10:05:01 +00:00
|
|
|
conditions, bin_conditions = [], []
|
|
|
|
filter_dict = get_doctype_wise_filters(filters)
|
|
|
|
|
|
|
|
sub_query = """ select round(`tabBin`.actual_qty, 2) from `tabBin`
|
2017-01-31 09:44:44 +00:00
|
|
|
where `tabBin`.warehouse = `tabWarehouse`.name
|
|
|
|
{bin_conditions} """.format(
|
2017-08-24 09:53:33 +00:00
|
|
|
bin_conditions=get_filters_cond(doctype, filter_dict.get("Bin"),
|
2017-05-09 09:39:10 +00:00
|
|
|
bin_conditions, ignore_permissions=True))
|
2017-01-18 10:05:01 +00:00
|
|
|
|
2017-08-24 09:53:33 +00:00
|
|
|
query = """select `tabWarehouse`.name,
|
2017-01-31 09:44:44 +00:00
|
|
|
CONCAT_WS(" : ", "Actual Qty", ifnull( ({sub_query}), 0) ) as actual_qty
|
|
|
|
from `tabWarehouse`
|
|
|
|
where
|
2018-09-26 12:45:53 +00:00
|
|
|
`tabWarehouse`.`{key}` like {txt}
|
2017-01-31 09:44:44 +00:00
|
|
|
{fcond} {mcond}
|
|
|
|
order by
|
|
|
|
`tabWarehouse`.name desc
|
|
|
|
limit
|
2017-08-24 09:53:33 +00:00
|
|
|
{start}, {page_len}
|
2017-01-31 09:44:44 +00:00
|
|
|
""".format(
|
|
|
|
sub_query=sub_query,
|
2018-09-21 04:50:52 +00:00
|
|
|
key=searchfield,
|
2017-01-31 09:44:44 +00:00
|
|
|
fcond=get_filters_cond(doctype, filter_dict.get("Warehouse"), conditions),
|
2017-08-24 09:53:33 +00:00
|
|
|
mcond=get_match_cond(doctype),
|
|
|
|
start=start,
|
|
|
|
page_len=page_len,
|
|
|
|
txt=frappe.db.escape('%{0}%'.format(txt))
|
|
|
|
)
|
|
|
|
|
|
|
|
return frappe.db.sql(query)
|
2017-01-18 10:05:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
def get_doctype_wise_filters(filters):
|
|
|
|
# Helper function to seperate filters doctype_wise
|
|
|
|
filter_dict = defaultdict(list)
|
|
|
|
for row in filters:
|
|
|
|
filter_dict[row[0]].append(row)
|
|
|
|
return filter_dict
|
2017-11-29 05:23:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
@frappe.whitelist()
|
|
|
|
def get_batch_numbers(doctype, txt, searchfield, start, page_len, filters):
|
2018-01-12 10:52:33 +00:00
|
|
|
query = """select batch_id from `tabBatch`
|
2018-08-06 09:15:18 +00:00
|
|
|
where disabled = 0
|
|
|
|
and (expiry_date >= CURDATE() or expiry_date IS NULL)
|
2018-09-21 04:50:52 +00:00
|
|
|
and name like {txt}""".format(txt = frappe.db.escape('%{0}%'.format(txt)))
|
2017-11-29 05:23:09 +00:00
|
|
|
|
2018-01-12 10:52:33 +00:00
|
|
|
if filters and filters.get('item'):
|
2018-09-21 04:50:52 +00:00
|
|
|
query += " and item = {item}".format(item = frappe.db.escape(filters.get('item')))
|
2017-11-29 05:23:09 +00:00
|
|
|
|
2018-01-08 12:27:32 +00:00
|
|
|
return frappe.db.sql(query, filters)
|
2019-06-02 10:33:05 +00:00
|
|
|
|
2020-05-18 08:56:26 +00:00
|
|
|
|
2019-06-02 10:33:05 +00:00
|
|
|
@frappe.whitelist()
|
|
|
|
def item_manufacturer_query(doctype, txt, searchfield, start, page_len, filters):
|
2019-09-16 14:14:28 +00:00
|
|
|
item_filters = [
|
|
|
|
['manufacturer', 'like', '%' + txt + '%'],
|
|
|
|
['item_code', '=', filters.get("item_code")]
|
|
|
|
]
|
|
|
|
|
|
|
|
item_manufacturers = frappe.get_all(
|
|
|
|
"Item Manufacturer",
|
|
|
|
fields=["manufacturer", "manufacturer_part_no"],
|
|
|
|
filters=item_filters,
|
2019-06-02 10:33:05 +00:00
|
|
|
limit_start=start,
|
|
|
|
limit_page_length=page_len,
|
|
|
|
as_list=1
|
|
|
|
)
|
2019-09-16 14:14:28 +00:00
|
|
|
return item_manufacturers
|
2019-11-18 06:16:55 +00:00
|
|
|
|
2020-05-18 08:56:26 +00:00
|
|
|
|
2019-11-18 06:16:55 +00:00
|
|
|
@frappe.whitelist()
|
|
|
|
def get_purchase_receipts(doctype, txt, searchfield, start, page_len, filters):
|
|
|
|
query = """
|
2020-01-06 10:04:15 +00:00
|
|
|
select pr.name
|
2019-11-18 06:16:55 +00:00
|
|
|
from `tabPurchase Receipt` pr, `tabPurchase Receipt Item` pritem
|
|
|
|
where pr.docstatus = 1 and pritem.parent = pr.name
|
|
|
|
and pr.name like {txt}""".format(txt = frappe.db.escape('%{0}%'.format(txt)))
|
|
|
|
|
|
|
|
if filters and filters.get('item_code'):
|
|
|
|
query += " and pritem.item_code = {item_code}".format(item_code = frappe.db.escape(filters.get('item_code')))
|
|
|
|
|
|
|
|
return frappe.db.sql(query, filters)
|
|
|
|
|
2020-05-18 08:56:26 +00:00
|
|
|
|
2019-11-18 06:16:55 +00:00
|
|
|
@frappe.whitelist()
|
|
|
|
def get_purchase_invoices(doctype, txt, searchfield, start, page_len, filters):
|
|
|
|
query = """
|
2020-01-06 10:04:15 +00:00
|
|
|
select pi.name
|
2019-11-18 06:16:55 +00:00
|
|
|
from `tabPurchase Invoice` pi, `tabPurchase Invoice Item` piitem
|
|
|
|
where pi.docstatus = 1 and piitem.parent = pi.name
|
|
|
|
and pi.name like {txt}""".format(txt = frappe.db.escape('%{0}%'.format(txt)))
|
|
|
|
|
|
|
|
if filters and filters.get('item_code'):
|
|
|
|
query += " and piitem.item_code = {item_code}".format(item_code = frappe.db.escape(filters.get('item_code')))
|
|
|
|
|
|
|
|
return frappe.db.sql(query, filters)
|
2020-01-06 10:04:15 +00:00
|
|
|
|
2020-05-18 08:56:26 +00:00
|
|
|
|
2020-01-06 10:04:15 +00:00
|
|
|
@frappe.whitelist()
|
|
|
|
def get_tax_template(doctype, txt, searchfield, start, page_len, filters):
|
|
|
|
|
|
|
|
item_doc = frappe.get_cached_doc('Item', filters.get('item_code'))
|
|
|
|
item_group = filters.get('item_group')
|
|
|
|
taxes = item_doc.taxes or []
|
|
|
|
|
|
|
|
while item_group:
|
|
|
|
item_group_doc = frappe.get_cached_doc('Item Group', item_group)
|
|
|
|
taxes += item_group_doc.taxes or []
|
|
|
|
item_group = item_group_doc.parent_item_group
|
|
|
|
|
|
|
|
if not taxes:
|
|
|
|
return frappe.db.sql(""" SELECT name FROM `tabItem Tax Template` """)
|
|
|
|
else:
|
|
|
|
args = {
|
|
|
|
'item_code': filters.get('item_code'),
|
|
|
|
'posting_date': filters.get('valid_from'),
|
2020-06-18 06:18:44 +00:00
|
|
|
'tax_category': filters.get('tax_category'),
|
|
|
|
'company': filters.get('company')
|
2020-01-06 10:04:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
taxes = _get_item_tax_template(args, taxes, for_validate=True)
|
|
|
|
return [(d,) for d in set(taxes)]
|
2020-05-18 08:56:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
def get_fields(doctype, fields=[]):
|
|
|
|
meta = frappe.get_meta(doctype)
|
|
|
|
fields.extend(meta.get_search_fields())
|
|
|
|
|
|
|
|
if meta.title_field and not meta.title_field.strip() in fields:
|
|
|
|
fields.insert(1, meta.title_field.strip())
|
|
|
|
|
|
|
|
return unique(fields)
|