blob: 47646295b2e1d6735d1d3ac793915635973f428a [file] [log] [blame]
Anand Doshi885e0742015-03-03 14:55:30 +05301# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
Rushabh Mehtae67d1fb2013-08-05 14:59:54 +05302# License: GNU General Public License v3. See license.txt
Saurabh02875592013-07-08 18:45:55 +05303
Chillar Anand915b3432021-09-02 16:44:59 +05304
rohitwaghchaurec59371a2021-06-03 20:02:58 +05305import json
Rohit Waghchaureacd12c52023-06-04 16:09:01 +05306from collections import OrderedDict, defaultdict
Chillar Anand915b3432021-09-02 16:44:59 +05307
8import frappe
ruthra kumar4eefb442024-01-16 13:38:53 +05309from frappe import qb, scrub
Chillar Anand915b3432021-09-02 16:44:59 +053010from frappe.desk.reportview import get_filters_cond, get_match_cond
ruthra kumarbfe42fd2024-01-16 14:35:06 +053011from frappe.query_builder import Criterion, CustomFunction
12from frappe.query_builder.functions import Concat, Locate, Sum
Rohit Waghchaureacd12c52023-06-04 16:09:01 +053013from frappe.utils import nowdate, today, unique
ruthra kumarbfe42fd2024-01-16 14:35:06 +053014from pypika import Order
Chillar Anand915b3432021-09-02 16:44:59 +053015
16import erpnext
Deepesh Gargef0d26c2020-01-06 15:34:15 +053017from erpnext.stock.get_item_details import _get_item_tax_template
Chillar Anand915b3432021-09-02 16:44:59 +053018
Saurabh02875592013-07-08 18:45:55 +053019
Chinmay D. Paiaa121092020-07-01 21:14:32 +053020# searches for active employees
21@frappe.whitelist()
Suraj Shetty1923ef02020-08-05 19:42:25 +053022@frappe.validate_and_sanitize_search_inputs
Saurabh02875592013-07-08 18:45:55 +053023def employee_query(doctype, txt, searchfield, start, page_len, filters):
Sagar Vora9baa2222022-08-03 05:42:30 +000024 doctype = "Employee"
Kanchan Chauhan7652b852016-11-16 15:29:01 +053025 conditions = []
Sagar Vora9baa2222022-08-03 05:42:30 +000026 fields = get_fields(doctype, ["name", "employee_name"])
Himanshud94a38e2020-05-18 14:26:26 +053027
Ankush Menat494bd9e2022-03-28 18:52:46 +053028 return frappe.db.sql(
29 """select {fields} from `tabEmployee`
Anurag Mishrafc98abe2021-06-23 11:21:38 +053030 where status in ('Active', 'Suspended')
Anand Doshibd67e872014-04-11 16:51:27 +053031 and docstatus < 2
Anand Doshi48d3b542014-07-09 13:15:03 +053032 and ({key} like %(txt)s
33 or employee_name like %(txt)s)
Kanchan Chauhan7652b852016-11-16 15:29:01 +053034 {fcond} {mcond}
Anand Doshibd67e872014-04-11 16:51:27 +053035 order by
Conorea28ed12022-06-17 10:47:48 -050036 (case when locate(%(_txt)s, name) > 0 then locate(%(_txt)s, name) else 99999 end),
37 (case when locate(%(_txt)s, employee_name) > 0 then locate(%(_txt)s, employee_name) else 99999 end),
Rushabh Mehta3574b372016-03-11 14:33:04 +053038 idx desc,
Anand Doshi652bc072014-04-16 15:21:46 +053039 name, employee_name
Conor00ef4992022-06-14 00:19:07 -050040 limit %(page_len)s offset %(start)s""".format(
Ankush Menat494bd9e2022-03-28 18:52:46 +053041 **{
42 "fields": ", ".join(fields),
43 "key": searchfield,
44 "fcond": get_filters_cond(doctype, filters, conditions),
45 "mcond": get_match_cond(doctype),
46 }
47 ),
48 {"txt": "%%%s%%" % txt, "_txt": txt.replace("%", ""), "start": start, "page_len": page_len},
49 )
Saurabh02875592013-07-08 18:45:55 +053050
Himanshud94a38e2020-05-18 14:26:26 +053051
52# searches for leads which are not converted
Chinmay D. Paiaa121092020-07-01 21:14:32 +053053@frappe.whitelist()
Suraj Shetty1923ef02020-08-05 19:42:25 +053054@frappe.validate_and_sanitize_search_inputs
Anand Doshibd67e872014-04-11 16:51:27 +053055def lead_query(doctype, txt, searchfield, start, page_len, filters):
Sagar Vora9baa2222022-08-03 05:42:30 +000056 doctype = "Lead"
57 fields = get_fields(doctype, ["name", "lead_name", "company_name"])
Himanshud94a38e2020-05-18 14:26:26 +053058
HarryPauloe12e3bb2023-05-13 23:38:47 -030059 searchfields = frappe.get_meta(doctype).get_search_fields()
60 searchfields = " or ".join(field + " like %(txt)s" for field in searchfields)
61
Ankush Menat494bd9e2022-03-28 18:52:46 +053062 return frappe.db.sql(
63 """select {fields} from `tabLead`
Anand Doshibd67e872014-04-11 16:51:27 +053064 where docstatus < 2
65 and ifnull(status, '') != 'Converted'
Anand Doshi48d3b542014-07-09 13:15:03 +053066 and ({key} like %(txt)s
67 or lead_name like %(txt)s
HarryPauloe12e3bb2023-05-13 23:38:47 -030068 or company_name like %(txt)s
69 or {scond})
Anand Doshi48d3b542014-07-09 13:15:03 +053070 {mcond}
Anand Doshibd67e872014-04-11 16:51:27 +053071 order by
Conorea28ed12022-06-17 10:47:48 -050072 (case when locate(%(_txt)s, name) > 0 then locate(%(_txt)s, name) else 99999 end),
73 (case when locate(%(_txt)s, lead_name) > 0 then locate(%(_txt)s, lead_name) else 99999 end),
74 (case when locate(%(_txt)s, company_name) > 0 then locate(%(_txt)s, company_name) else 99999 end),
Rushabh Mehta3574b372016-03-11 14:33:04 +053075 idx desc,
Anand Doshi652bc072014-04-16 15:21:46 +053076 name, lead_name
Conor00ef4992022-06-14 00:19:07 -050077 limit %(page_len)s offset %(start)s""".format(
HarryPauloe12e3bb2023-05-13 23:38:47 -030078 **{
79 "fields": ", ".join(fields),
80 "key": searchfield,
81 "scond": searchfields,
82 "mcond": get_match_cond(doctype),
83 }
Ankush Menat494bd9e2022-03-28 18:52:46 +053084 ),
85 {"txt": "%%%s%%" % txt, "_txt": txt.replace("%", ""), "start": start, "page_len": page_len},
86 )
87
Himanshud94a38e2020-05-18 14:26:26 +053088
Chinmay D. Paiaa121092020-07-01 21:14:32 +053089@frappe.whitelist()
Suraj Shetty1923ef02020-08-05 19:42:25 +053090@frappe.validate_and_sanitize_search_inputs
Nabin Hait9a380ef2013-07-16 17:24:17 +053091def tax_account_query(doctype, txt, searchfield, start, page_len, filters):
Sagar Vora9baa2222022-08-03 05:42:30 +000092 doctype = "Account"
Ankush Menat494bd9e2022-03-28 18:52:46 +053093 company_currency = erpnext.get_company_currency(filters.get("company"))
Deepesh Gargfbf6e562020-03-31 10:45:32 +053094
Suraj Shetty1923ef02020-08-05 19:42:25 +053095 def get_accounts(with_account_type_filter):
Ankush Menat494bd9e2022-03-28 18:52:46 +053096 account_type_condition = ""
Suraj Shetty1923ef02020-08-05 19:42:25 +053097 if with_account_type_filter:
98 account_type_condition = "AND account_type in %(account_types)s"
99
Ankush Menat494bd9e2022-03-28 18:52:46 +0530100 accounts = frappe.db.sql(
Akhil Narang3effaf22024-03-27 11:37:26 +0530101 f"""
Suraj Shetty1923ef02020-08-05 19:42:25 +0530102 SELECT name, parent_account
103 FROM `tabAccount`
104 WHERE `tabAccount`.docstatus!=2
105 {account_type_condition}
106 AND is_group = 0
107 AND company = %(company)s
Saqib Ansaria1e3ae82022-05-11 13:01:06 +0530108 AND disabled = %(disabled)s
Deepesh Garg57924592022-03-22 18:26:58 +0530109 AND (account_currency = %(currency)s or ifnull(account_currency, '') = '')
Suraj Shetty1923ef02020-08-05 19:42:25 +0530110 AND `{searchfield}` LIKE %(txt)s
Akhil Narang3effaf22024-03-27 11:37:26 +0530111 {get_match_cond(doctype)}
Suraj Shetty1923ef02020-08-05 19:42:25 +0530112 ORDER BY idx DESC, name
Conor00ef4992022-06-14 00:19:07 -0500113 LIMIT %(limit)s offset %(offset)s
Akhil Narang3effaf22024-03-27 11:37:26 +0530114 """,
Suraj Shetty1923ef02020-08-05 19:42:25 +0530115 dict(
116 account_types=filters.get("account_type"),
117 company=filters.get("company"),
Saqib Ansaria1e3ae82022-05-11 13:01:06 +0530118 disabled=filters.get("disabled", 0),
Suraj Shetty1923ef02020-08-05 19:42:25 +0530119 currency=company_currency,
Akhil Narang3effaf22024-03-27 11:37:26 +0530120 txt=f"%{txt}%",
Suraj Shetty1923ef02020-08-05 19:42:25 +0530121 offset=start,
Ankush Menat494bd9e2022-03-28 18:52:46 +0530122 limit=page_len,
123 ),
Suraj Shetty1923ef02020-08-05 19:42:25 +0530124 )
125
126 return accounts
127
128 tax_accounts = get_accounts(True)
129
Nabin Hait0c21e2a2014-03-21 11:14:49 +0530130 if not tax_accounts:
Suraj Shetty1923ef02020-08-05 19:42:25 +0530131 tax_accounts = get_accounts(False)
Anand Doshibd67e872014-04-11 16:51:27 +0530132
Nabin Hait0c21e2a2014-03-21 11:14:49 +0530133 return tax_accounts
Saurabh02875592013-07-08 18:45:55 +0530134
Himanshud94a38e2020-05-18 14:26:26 +0530135
Chinmay D. Paiaa121092020-07-01 21:14:32 +0530136@frappe.whitelist()
Suraj Shetty1923ef02020-08-05 19:42:25 +0530137@frappe.validate_and_sanitize_search_inputs
Rushabh Mehta203cc962016-04-07 15:25:43 +0530138def item_query(doctype, txt, searchfield, start, page_len, filters, as_dict=False):
Sagar Vora9baa2222022-08-03 05:42:30 +0000139 doctype = "Item"
Saurabh02875592013-07-08 18:45:55 +0530140 conditions = []
Saurabhf52dc072013-07-10 13:07:49 +0530141
rohitwaghchaurec59371a2021-06-03 20:02:58 +0530142 if isinstance(filters, str):
143 filters = json.loads(filters)
144
Ankush Menat494bd9e2022-03-28 18:52:46 +0530145 # Get searchfields from meta and use in Item Link field query
Sagar Vora9baa2222022-08-03 05:42:30 +0000146 meta = frappe.get_meta(doctype, cached=True)
marination3dbef9d2019-10-28 15:48:10 +0530147 searchfields = meta.get_search_fields()
148
Ankush Menat494bd9e2022-03-28 18:52:46 +0530149 columns = ""
barredterraeb9ee3f2023-12-05 11:22:55 +0100150 extra_searchfields = [field for field in searchfields if field not in ["name", "description"]]
Rohit Waghchaurec42312e2019-11-19 19:05:23 +0530151
152 if extra_searchfields:
Rohit Waghchaurefd889fd2022-09-28 23:00:45 +0530153 columns += ", " + ", ".join(extra_searchfields)
154
155 if "description" in searchfields:
156 columns += """, if(length(tabItem.description) > 40, \
157 concat(substr(tabItem.description, 1, 40), "..."), description) as description"""
marination1e754b12019-10-30 18:33:44 +0530158
Ankush Menat494bd9e2022-03-28 18:52:46 +0530159 searchfields = searchfields + [
160 field
barredterraeb9ee3f2023-12-05 11:22:55 +0100161 for field in [
162 searchfield or "name",
163 "item_code",
164 "item_group",
165 "item_name",
166 ]
167 if field not in searchfields
Ankush Menat494bd9e2022-03-28 18:52:46 +0530168 ]
marination3dbef9d2019-10-28 15:48:10 +0530169 searchfields = " or ".join([field + " like %(txt)s" for field in searchfields])
170
DeeMysterioaa826242021-09-14 13:58:18 +0530171 if filters and isinstance(filters, dict):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530172 if filters.get("customer") or filters.get("supplier"):
173 party = filters.get("customer") or filters.get("supplier")
174 item_rules_list = frappe.get_all(
Akhil Narang3effaf22024-03-27 11:37:26 +0530175 "Party Specific Item",
176 filters={"party": party},
177 fields=["restrict_based_on", "based_on_value"],
Ankush Menat494bd9e2022-03-28 18:52:46 +0530178 )
Rohit Waghchaure721b4132021-06-02 14:13:09 +0530179
DeeMysterioaa826242021-09-14 13:58:18 +0530180 filters_dict = {}
181 for rule in item_rules_list:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530182 if rule["restrict_based_on"] == "Item":
183 rule["restrict_based_on"] = "name"
DeeMysterioaa826242021-09-14 13:58:18 +0530184 filters_dict[rule.restrict_based_on] = []
noahjacobca2fb472021-05-12 16:25:07 +0530185
DeeMysterioaa826242021-09-14 13:58:18 +0530186 for rule in item_rules_list:
187 filters_dict[rule.restrict_based_on].append(rule.based_on_value)
noahjacobca2fb472021-05-12 16:25:07 +0530188
DeeMysterioaa826242021-09-14 13:58:18 +0530189 for filter in filters_dict:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530190 filters[scrub(filter)] = ["in", filters_dict[filter]]
DeeMysterioaa826242021-09-14 13:58:18 +0530191
Ankush Menat494bd9e2022-03-28 18:52:46 +0530192 if filters.get("customer"):
193 del filters["customer"]
DeeMysterioaa826242021-09-14 13:58:18 +0530194 else:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530195 del filters["supplier"]
Ankush Menat41a95e52022-02-03 13:02:13 +0530196 else:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530197 filters.pop("customer", None)
198 filters.pop("supplier", None)
DeeMysterioaa826242021-09-14 13:58:18 +0530199
Ankush Menat494bd9e2022-03-28 18:52:46 +0530200 description_cond = ""
Sagar Vora9baa2222022-08-03 05:42:30 +0000201 if frappe.db.count(doctype, cache=True) < 50000:
Rushabh Mehtad5f9ebd2018-04-02 23:37:33 +0530202 # scan description only if items are less than 50000
Ankush Menat494bd9e2022-03-28 18:52:46 +0530203 description_cond = "or tabItem.description LIKE %(txt)s"
Rohit Waghchaurefd889fd2022-09-28 23:00:45 +0530204
Ankush Menat494bd9e2022-03-28 18:52:46 +0530205 return frappe.db.sql(
206 """select
Rohit Waghchaurefd889fd2022-09-28 23:00:45 +0530207 tabItem.name {columns}
Anand Doshibd67e872014-04-11 16:51:27 +0530208 from tabItem
Anand Doshi22c0d782013-11-04 16:23:04 +0530209 where tabItem.docstatus < 2
Anand Doshi21e09a22015-10-29 12:21:41 +0530210 and tabItem.disabled=0
rohitwaghchaure79789072020-05-21 18:10:13 +0530211 and tabItem.has_variants=0
Rushabh Mehta864d1ea2014-06-23 12:20:12 +0530212 and (tabItem.end_of_life > %(today)s or ifnull(tabItem.end_of_life, '0000-00-00')='0000-00-00')
marination3dbef9d2019-10-28 15:48:10 +0530213 and ({scond} or tabItem.item_code IN (select parent from `tabItem Barcode` where barcode LIKE %(txt)s)
Rohit Waghchaure2bfb0632019-03-02 21:47:55 +0530214 {description_cond})
Anand Doshi22c0d782013-11-04 16:23:04 +0530215 {fcond} {mcond}
Anand Doshi652bc072014-04-16 15:21:46 +0530216 order by
217 if(locate(%(_txt)s, name), locate(%(_txt)s, name), 99999),
218 if(locate(%(_txt)s, item_name), locate(%(_txt)s, item_name), 99999),
Rushabh Mehta3574b372016-03-11 14:33:04 +0530219 idx desc,
Anand Doshi652bc072014-04-16 15:21:46 +0530220 name, item_name
Rushabh Mehtabc4e2cd2017-10-17 12:30:34 +0530221 limit %(start)s, %(page_len)s """.format(
marination1e754b12019-10-30 18:33:44 +0530222 columns=columns,
marination3dbef9d2019-10-28 15:48:10 +0530223 scond=searchfields,
Ankush Menat494bd9e2022-03-28 18:52:46 +0530224 fcond=get_filters_cond(doctype, filters, conditions).replace("%", "%%"),
225 mcond=get_match_cond(doctype).replace("%", "%%"),
226 description_cond=description_cond,
227 ),
228 {
229 "today": nowdate(),
230 "txt": "%%%s%%" % txt,
231 "_txt": txt.replace("%", ""),
232 "start": start,
233 "page_len": page_len,
234 },
235 as_dict=as_dict,
236 )
Saurabh02875592013-07-08 18:45:55 +0530237
Himanshud94a38e2020-05-18 14:26:26 +0530238
Chinmay D. Paiaa121092020-07-01 21:14:32 +0530239@frappe.whitelist()
Suraj Shetty1923ef02020-08-05 19:42:25 +0530240@frappe.validate_and_sanitize_search_inputs
Saurabh022ab632017-11-10 15:06:02 +0530241def bom(doctype, txt, searchfield, start, page_len, filters):
Sagar Vora9baa2222022-08-03 05:42:30 +0000242 doctype = "BOM"
Anand Doshibd67e872014-04-11 16:51:27 +0530243 conditions = []
Sagar Vora9baa2222022-08-03 05:42:30 +0000244 fields = get_fields(doctype, ["name", "item"])
Saurabhf52dc072013-07-10 13:07:49 +0530245
Ankush Menat494bd9e2022-03-28 18:52:46 +0530246 return frappe.db.sql(
247 """select {fields}
Conorea28ed12022-06-17 10:47:48 -0500248 from `tabBOM`
249 where `tabBOM`.docstatus=1
250 and `tabBOM`.is_active=1
251 and `tabBOM`.`{key}` like %(txt)s
Nabin Hait62211172016-03-16 16:22:03 +0530252 {fcond} {mcond}
253 order by
Conorea28ed12022-06-17 10:47:48 -0500254 (case when locate(%(_txt)s, name) > 0 then locate(%(_txt)s, name) else 99999 end),
Rushabh Mehta3574b372016-03-11 14:33:04 +0530255 idx desc, name
Conorea28ed12022-06-17 10:47:48 -0500256 limit %(page_len)s offset %(start)s""".format(
Himanshud94a38e2020-05-18 14:26:26 +0530257 fields=", ".join(fields),
Ankush Menat494bd9e2022-03-28 18:52:46 +0530258 fcond=get_filters_cond(doctype, filters, conditions).replace("%", "%%"),
259 mcond=get_match_cond(doctype).replace("%", "%%"),
260 key=searchfield,
261 ),
Mangesh-Khairnar6a796912019-07-08 10:40:40 +0530262 {
Ankush Menat494bd9e2022-03-28 18:52:46 +0530263 "txt": "%" + txt + "%",
264 "_txt": txt.replace("%", ""),
265 "start": start or 0,
266 "page_len": page_len or 20,
267 },
268 )
Saurabh02875592013-07-08 18:45:55 +0530269
Himanshud94a38e2020-05-18 14:26:26 +0530270
Chinmay D. Paiaa121092020-07-01 21:14:32 +0530271@frappe.whitelist()
Suraj Shetty1923ef02020-08-05 19:42:25 +0530272@frappe.validate_and_sanitize_search_inputs
Saurabh02875592013-07-08 18:45:55 +0530273def get_project_name(doctype, txt, searchfield, start, page_len, filters):
ruthra kumar4eefb442024-01-16 13:38:53 +0530274 proj = qb.DocType("Project")
275 qb_filter_and_conditions = []
276 qb_filter_or_conditions = []
ruthra kumarbfe42fd2024-01-16 14:35:06 +0530277 ifelse = CustomFunction("IF", ["condition", "then", "else"])
278
Ankush Menat494bd9e2022-03-28 18:52:46 +0530279 if filters and filters.get("customer"):
Deepesh Gargd0e0b662024-03-07 09:14:56 +0530280 qb_filter_and_conditions.append(
281 (proj.customer == filters.get("customer")) | proj.customer.isnull() | proj.customer == ""
282 )
Anand Doshibd67e872014-04-11 16:51:27 +0530283
ruthra kumar4eefb442024-01-16 13:38:53 +0530284 qb_filter_and_conditions.append(proj.status.notin(["Completed", "Cancelled"]))
Himanshud94a38e2020-05-18 14:26:26 +0530285
ruthra kumar4eefb442024-01-16 13:38:53 +0530286 q = qb.from_(proj)
287
ruthra kumar3349dde2024-01-16 14:28:09 +0530288 fields = get_fields(doctype, ["name", "project_name"])
ruthra kumar4eefb442024-01-16 13:38:53 +0530289 for x in fields:
290 q = q.select(proj[x])
291
ruthra kumarbfe42fd2024-01-16 14:35:06 +0530292 # don't consider 'customer' and 'status' fields for pattern search, as they must be exactly matched
ruthra kumar4eefb442024-01-16 13:38:53 +0530293 searchfields = [
294 x for x in frappe.get_meta(doctype).get_search_fields() if x not in ["customer", "status"]
295 ]
ruthra kumarbfe42fd2024-01-16 14:35:06 +0530296
297 # pattern search
ruthra kumar4eefb442024-01-16 13:38:53 +0530298 if txt:
299 for x in searchfields:
300 qb_filter_or_conditions.append(proj[x].like(f"%{txt}%"))
301
302 q = q.where(Criterion.all(qb_filter_and_conditions)).where(Criterion.any(qb_filter_or_conditions))
ruthra kumarbfe42fd2024-01-16 14:35:06 +0530303
304 # ordering
305 if txt:
306 # project_name containing search string 'txt' will be given higher precedence
307 q = q.orderby(ifelse(Locate(txt, proj.project_name) > 0, Locate(txt, proj.project_name), 99999))
308 q = q.orderby(proj.idx, order=Order.desc).orderby(proj.name)
309
ruthra kumar4eefb442024-01-16 13:38:53 +0530310 if page_len:
311 q = q.limit(page_len)
ruthra kumarbfe42fd2024-01-16 14:35:06 +0530312
313 if start:
314 q = q.offset(start)
ruthra kumar4eefb442024-01-16 13:38:53 +0530315 return q.run()
Anand Doshibd67e872014-04-11 16:51:27 +0530316
tundebabzyf6d738b2017-09-18 12:40:09 +0100317
Chinmay D. Paiaa121092020-07-01 21:14:32 +0530318@frappe.whitelist()
Suraj Shetty1923ef02020-08-05 19:42:25 +0530319@frappe.validate_and_sanitize_search_inputs
Nabin Hait1e2d7b32017-05-17 13:52:21 +0530320def get_delivery_notes_to_be_billed(doctype, txt, searchfield, start, page_len, filters, as_dict):
Sagar Vora9baa2222022-08-03 05:42:30 +0000321 doctype = "Delivery Note"
322 fields = get_fields(doctype, ["name", "customer", "posting_date"])
Himanshud94a38e2020-05-18 14:26:26 +0530323
Ankush Menat494bd9e2022-03-28 18:52:46 +0530324 return frappe.db.sql(
325 """
Akhil Narang3effaf22024-03-27 11:37:26 +0530326 select {fields}
Anand Doshibd67e872014-04-11 16:51:27 +0530327 from `tabDelivery Note`
Akhil Narang3effaf22024-03-27 11:37:26 +0530328 where `tabDelivery Note`.`{key}` like {txt} and
tundebabzyf6d738b2017-09-18 12:40:09 +0100329 `tabDelivery Note`.docstatus = 1
Akhil Narang3effaf22024-03-27 11:37:26 +0530330 and status not in ('Stopped', 'Closed') {fcond}
tundebabzyf6d738b2017-09-18 12:40:09 +0100331 and (
332 (`tabDelivery Note`.is_return = 0 and `tabDelivery Note`.per_billed < 100)
Deepesh Garge2dc1022021-04-14 11:21:11 +0530333 or (`tabDelivery Note`.grand_total = 0 and `tabDelivery Note`.per_billed < 100)
tundebabzyf6d738b2017-09-18 12:40:09 +0100334 or (
335 `tabDelivery Note`.is_return = 1
336 and return_against in (select name from `tabDelivery Note` where per_billed < 100)
337 )
338 )
Akhil Narang3effaf22024-03-27 11:37:26 +0530339 {mcond} order by `tabDelivery Note`.`{key}` asc limit {page_len} offset {start}
340 """.format(
341 fields=", ".join([f"`tabDelivery Note`.{f}" for f in fields]),
342 key=searchfield,
343 fcond=get_filters_cond(doctype, filters, []),
344 mcond=get_match_cond(doctype),
345 start=start,
346 page_len=page_len,
347 txt="%(txt)s",
348 ),
Ankush Menat494bd9e2022-03-28 18:52:46 +0530349 {"txt": ("%%%s%%" % txt)},
350 as_dict=as_dict,
351 )
tundebabzyf6d738b2017-09-18 12:40:09 +0100352
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530353
Chinmay D. Paiaa121092020-07-01 21:14:32 +0530354@frappe.whitelist()
Suraj Shetty1923ef02020-08-05 19:42:25 +0530355@frappe.validate_and_sanitize_search_inputs
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530356def get_batch_no(doctype, txt, searchfield, start, page_len, filters):
Sagar Vora9baa2222022-08-03 05:42:30 +0000357 doctype = "Batch"
Sagar Vora9baa2222022-08-03 05:42:30 +0000358 meta = frappe.get_meta(doctype, cached=True)
Deepesh Garga0d192e2020-09-22 13:54:07 +0530359 searchfields = meta.get_search_fields()
360
Rohit Waghchaure114f2b42024-01-14 23:23:55 +0530361 batches = get_batches_from_stock_ledger_entries(searchfields, txt, filters, start, page_len)
Akhil Narang3effaf22024-03-27 11:37:26 +0530362 batches.extend(get_batches_from_serial_and_batch_bundle(searchfields, txt, filters, start, page_len))
Deepesh Garga0d192e2020-09-22 13:54:07 +0530363
Rohit Waghchaure114f2b42024-01-14 23:23:55 +0530364 filtered_batches = get_filterd_batches(batches)
Deepesh Garga0d192e2020-09-22 13:54:07 +0530365
rohitwaghchaurecef62912024-03-06 19:43:36 +0530366 if filters.get("is_inward"):
Rohit Waghchaure662cf212024-03-26 14:30:50 +0530367 filtered_batches.extend(get_empty_batches(filters, start, page_len, filtered_batches, txt))
rohitwaghchaurecef62912024-03-06 19:43:36 +0530368
Rohit Waghchaure114f2b42024-01-14 23:23:55 +0530369 return filtered_batches
Rohit Waghchaureacd12c52023-06-04 16:09:01 +0530370
371
Rohit Waghchaure662cf212024-03-26 14:30:50 +0530372def get_empty_batches(filters, start, page_len, filtered_batches=None, txt=None):
373 query_filter = {"item": filters.get("item_code")}
374 if txt:
Akhil Narang3effaf22024-03-27 11:37:26 +0530375 query_filter["name"] = ("like", f"%{txt}%")
Rohit Waghchaure662cf212024-03-26 14:30:50 +0530376
377 exclude_batches = [batch[0] for batch in filtered_batches] if filtered_batches else []
378 if exclude_batches:
379 query_filter["name"] = ("not in", exclude_batches)
380
rohitwaghchaurecef62912024-03-06 19:43:36 +0530381 return frappe.get_all(
382 "Batch",
383 fields=["name", "batch_qty"],
Rohit Waghchaure662cf212024-03-26 14:30:50 +0530384 filters=query_filter,
385 limit_start=start,
386 limit_page_length=page_len,
rohitwaghchaurecef62912024-03-06 19:43:36 +0530387 as_list=1,
388 )
389
390
Rohit Waghchaureacd12c52023-06-04 16:09:01 +0530391def get_filterd_batches(data):
392 batches = OrderedDict()
393
394 for batch_data in data:
395 if batch_data[0] not in batches:
396 batches[batch_data[0]] = list(batch_data)
397 else:
398 batches[batch_data[0]][1] += batch_data[1]
399
400 filterd_batch = []
Akhil Narang3effaf22024-03-27 11:37:26 +0530401 for _batch, batch_data in batches.items():
Rohit Waghchaureacd12c52023-06-04 16:09:01 +0530402 if batch_data[1] > 0:
403 filterd_batch.append(tuple(batch_data))
404
405 return filterd_batch
406
407
Rohit Waghchaure114f2b42024-01-14 23:23:55 +0530408def get_batches_from_stock_ledger_entries(searchfields, txt, filters, start=0, page_len=100):
Rohit Waghchaureacd12c52023-06-04 16:09:01 +0530409 stock_ledger_entry = frappe.qb.DocType("Stock Ledger Entry")
410 batch_table = frappe.qb.DocType("Batch")
411
412 expiry_date = filters.get("posting_date") or today()
413
414 query = (
415 frappe.qb.from_(stock_ledger_entry)
416 .inner_join(batch_table)
417 .on(batch_table.name == stock_ledger_entry.batch_no)
418 .select(
419 stock_ledger_entry.batch_no,
420 Sum(stock_ledger_entry.actual_qty).as_("qty"),
Ankush Menat494bd9e2022-03-28 18:52:46 +0530421 )
Akhil Narang3effaf22024-03-27 11:37:26 +0530422 .where((batch_table.expiry_date >= expiry_date) | (batch_table.expiry_date.isnull()))
Rohit Waghchaureacd12c52023-06-04 16:09:01 +0530423 .where(stock_ledger_entry.is_cancelled == 0)
424 .where(
425 (stock_ledger_entry.item_code == filters.get("item_code"))
426 & (batch_table.disabled == 0)
427 & (stock_ledger_entry.batch_no.isnotnull())
Ankush Menat494bd9e2022-03-28 18:52:46 +0530428 )
Rohit Waghchaureacd12c52023-06-04 16:09:01 +0530429 .groupby(stock_ledger_entry.batch_no, stock_ledger_entry.warehouse)
Rohit Waghchaure114f2b42024-01-14 23:23:55 +0530430 .offset(start)
431 .limit(page_len)
Rohit Waghchaureacd12c52023-06-04 16:09:01 +0530432 )
433
434 query = query.select(
435 Concat("MFG-", batch_table.manufacturing_date).as_("manufacturing_date"),
436 Concat("EXP-", batch_table.expiry_date).as_("expiry_date"),
437 )
438
439 if filters.get("warehouse"):
440 query = query.where(stock_ledger_entry.warehouse == filters.get("warehouse"))
441
442 for field in searchfields:
443 query = query.select(batch_table[field])
444
445 if txt:
Akhil Narang3effaf22024-03-27 11:37:26 +0530446 txt_condition = batch_table.name.like(f"%{txt}%")
447 for field in [*searchfields, "name"]:
448 txt_condition |= batch_table[field].like(f"%{txt}%")
Rohit Waghchaureacd12c52023-06-04 16:09:01 +0530449
450 query = query.where(txt_condition)
451
Rohit Waghchaure114f2b42024-01-14 23:23:55 +0530452 return query.run(as_list=1) or []
Rohit Waghchaureacd12c52023-06-04 16:09:01 +0530453
454
Rohit Waghchaure114f2b42024-01-14 23:23:55 +0530455def get_batches_from_serial_and_batch_bundle(searchfields, txt, filters, start=0, page_len=100):
Rohit Waghchaureacd12c52023-06-04 16:09:01 +0530456 bundle = frappe.qb.DocType("Serial and Batch Entry")
457 stock_ledger_entry = frappe.qb.DocType("Stock Ledger Entry")
458 batch_table = frappe.qb.DocType("Batch")
459
460 expiry_date = filters.get("posting_date") or today()
461
462 bundle_query = (
463 frappe.qb.from_(bundle)
464 .inner_join(stock_ledger_entry)
465 .on(bundle.parent == stock_ledger_entry.serial_and_batch_bundle)
466 .inner_join(batch_table)
467 .on(batch_table.name == bundle.batch_no)
468 .select(
469 bundle.batch_no,
470 Sum(bundle.qty).as_("qty"),
471 )
Akhil Narang3effaf22024-03-27 11:37:26 +0530472 .where((batch_table.expiry_date >= expiry_date) | (batch_table.expiry_date.isnull()))
Rohit Waghchaureacd12c52023-06-04 16:09:01 +0530473 .where(stock_ledger_entry.is_cancelled == 0)
474 .where(
475 (stock_ledger_entry.item_code == filters.get("item_code"))
476 & (batch_table.disabled == 0)
477 & (stock_ledger_entry.serial_and_batch_bundle.isnotnull())
478 )
479 .groupby(bundle.batch_no, bundle.warehouse)
Rohit Waghchaure114f2b42024-01-14 23:23:55 +0530480 .offset(start)
481 .limit(page_len)
Rohit Waghchaureacd12c52023-06-04 16:09:01 +0530482 )
483
484 bundle_query = bundle_query.select(
485 Concat("MFG-", batch_table.manufacturing_date),
486 Concat("EXP-", batch_table.expiry_date),
487 )
488
489 if filters.get("warehouse"):
490 bundle_query = bundle_query.where(stock_ledger_entry.warehouse == filters.get("warehouse"))
491
492 for field in searchfields:
493 bundle_query = bundle_query.select(batch_table[field])
494
495 if txt:
Akhil Narang3effaf22024-03-27 11:37:26 +0530496 txt_condition = batch_table.name.like(f"%{txt}%")
497 for field in [*searchfields, "name"]:
498 txt_condition |= batch_table[field].like(f"%{txt}%")
Rohit Waghchaureacd12c52023-06-04 16:09:01 +0530499
500 bundle_query = bundle_query.where(txt_condition)
501
Rohit Waghchaure114f2b42024-01-14 23:23:55 +0530502 return bundle_query.run(as_list=1)
Nabin Haitea4aa042014-05-28 12:56:28 +0530503
Himanshud94a38e2020-05-18 14:26:26 +0530504
Chinmay D. Paiaa121092020-07-01 21:14:32 +0530505@frappe.whitelist()
Suraj Shetty1923ef02020-08-05 19:42:25 +0530506@frappe.validate_and_sanitize_search_inputs
Nabin Haitea4aa042014-05-28 12:56:28 +0530507def get_account_list(doctype, txt, searchfield, start, page_len, filters):
Sagar Vora9baa2222022-08-03 05:42:30 +0000508 doctype = "Account"
Nabin Haite1b2b3e2014-06-14 15:26:10 +0530509 filter_list = []
Nabin Haitea4aa042014-05-28 12:56:28 +0530510
Nabin Haite1b2b3e2014-06-14 15:26:10 +0530511 if isinstance(filters, dict):
512 for key, val in filters.items():
Akhil Narang3effaf22024-03-27 11:37:26 +0530513 if isinstance(val, list | tuple):
Nabin Haite1b2b3e2014-06-14 15:26:10 +0530514 filter_list.append([doctype, key, val[0], val[1]])
515 else:
516 filter_list.append([doctype, key, "=", val])
bhupeshg2e2e973f2015-04-14 22:15:24 +0530517 elif isinstance(filters, list):
518 filter_list.extend(filters)
Nabin Haite1b2b3e2014-06-14 15:26:10 +0530519
Rushabh Mehta38c6b522015-04-23 13:14:17 +0530520 if "is_group" not in [d[1] for d in filter_list]:
521 filter_list.append(["Account", "is_group", "=", "0"])
Nabin Haite1b2b3e2014-06-14 15:26:10 +0530522
523 if searchfield and txt:
524 filter_list.append([doctype, searchfield, "like", "%%%s%%" % txt])
525
Ankush Menat494bd9e2022-03-28 18:52:46 +0530526 return frappe.desk.reportview.execute(
Sagar Vora9baa2222022-08-03 05:42:30 +0000527 doctype,
Ankush Menat494bd9e2022-03-28 18:52:46 +0530528 filters=filter_list,
529 fields=["name", "parent_account"],
530 limit_start=start,
531 limit_page_length=page_len,
532 as_list=True,
533 )
534
Anand Doshifaefeaa2014-06-24 18:53:04 +0530535
Chinmay D. Paiaa121092020-07-01 21:14:32 +0530536@frappe.whitelist()
Suraj Shetty1923ef02020-08-05 19:42:25 +0530537@frappe.validate_and_sanitize_search_inputs
Marica299e2172020-04-28 13:00:04 +0530538def get_blanket_orders(doctype, txt, searchfield, start, page_len, filters):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530539 return frappe.db.sql(
540 """select distinct bo.name, bo.blanket_order_type, bo.to_date
Marica299e2172020-04-28 13:00:04 +0530541 from `tabBlanket Order` bo, `tabBlanket Order Item` boi
542 where
543 boi.parent = bo.name
544 and boi.item_code = {item_code}
545 and bo.blanket_order_type = '{blanket_order_type}'
546 and bo.company = {company}
Ankush Menat494bd9e2022-03-28 18:52:46 +0530547 and bo.docstatus = 1""".format(
548 item_code=frappe.db.escape(filters.get("item")),
549 blanket_order_type=filters.get("blanket_order_type"),
550 company=frappe.db.escape(filters.get("company")),
551 )
552 )
Nabin Haitafd14f62015-10-19 11:55:28 +0530553
Himanshud94a38e2020-05-18 14:26:26 +0530554
Nabin Haitafd14f62015-10-19 11:55:28 +0530555@frappe.whitelist()
Suraj Shetty1923ef02020-08-05 19:42:25 +0530556@frappe.validate_and_sanitize_search_inputs
Nabin Haitafd14f62015-10-19 11:55:28 +0530557def get_income_account(doctype, txt, searchfield, start, page_len, filters):
558 from erpnext.controllers.queries import get_match_cond
559
560 # income account can be any Credit account,
561 # but can also be a Asset account with account_type='Income Account' in special circumstances.
562 # Hence the first condition is an "OR"
Ankush Menat494bd9e2022-03-28 18:52:46 +0530563 if not filters:
564 filters = {}
Nabin Haitafd14f62015-10-19 11:55:28 +0530565
Sagar Vora9baa2222022-08-03 05:42:30 +0000566 doctype = "Account"
Anand Doshi21e09a22015-10-29 12:21:41 +0530567 condition = ""
Nabin Haitafd14f62015-10-19 11:55:28 +0530568 if filters.get("company"):
569 condition += "and tabAccount.company = %(company)s"
Anand Doshi21e09a22015-10-29 12:21:41 +0530570
ruthra kumar6e3e0942023-11-02 17:19:06 +0530571 condition += f"and tabAccount.disabled = {filters.get('disabled', 0)}"
572
Ankush Menat494bd9e2022-03-28 18:52:46 +0530573 return frappe.db.sql(
Akhil Narang3effaf22024-03-27 11:37:26 +0530574 f"""select tabAccount.name from `tabAccount`
Nabin Haitafd14f62015-10-19 11:55:28 +0530575 where (tabAccount.report_type = "Profit and Loss"
576 or tabAccount.account_type in ("Income Account", "Temporary"))
577 and tabAccount.is_group=0
Akhil Narang3effaf22024-03-27 11:37:26 +0530578 and tabAccount.`{searchfield}` LIKE %(txt)s
579 {condition} {get_match_cond(doctype)}
580 order by idx desc, name""",
Ankush Menat494bd9e2022-03-28 18:52:46 +0530581 {"txt": "%" + txt + "%", "company": filters.get("company", "")},
582 )
583
Nabin Hait3a15c922016-03-04 12:30:46 +0530584
Deepesh Garg96e874b2020-11-15 22:43:01 +0530585@frappe.whitelist()
586@frappe.validate_and_sanitize_search_inputs
Akhil Narang3effaf22024-03-27 11:37:26 +0530587def get_filtered_dimensions(doctype, txt, searchfield, start, page_len, filters, reference_doctype=None):
Chillar Anand915b3432021-09-02 16:44:59 +0530588 from erpnext.accounts.doctype.accounting_dimension_filter.accounting_dimension_filter import (
589 get_dimension_filter_map,
590 )
Ankush Menat494bd9e2022-03-28 18:52:46 +0530591
Deepesh Garg96e874b2020-11-15 22:43:01 +0530592 dimension_filters = get_dimension_filter_map()
Ankush Menat494bd9e2022-03-28 18:52:46 +0530593 dimension_filters = dimension_filters.get((filters.get("dimension"), filters.get("account")))
Deepesh Garg6c17b842020-11-25 13:42:16 +0530594 query_filters = []
mergify[bot]071118f2021-11-30 13:15:20 +0000595 or_filters = []
Ankush Menat494bd9e2022-03-28 18:52:46 +0530596 fields = ["name"]
mergify[bot]071118f2021-11-30 13:15:20 +0000597
598 searchfields = frappe.get_meta(doctype).get_search_fields()
Deepesh Garg96e874b2020-11-15 22:43:01 +0530599
600 meta = frappe.get_meta(doctype)
Rucha Mahabaldaf4ae22024-03-12 20:16:59 +0530601 if meta.is_tree and meta.has_field("is_group"):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530602 query_filters.append(["is_group", "=", 0])
Deepesh Garg96e874b2020-11-15 22:43:01 +0530603
Ankush Menat494bd9e2022-03-28 18:52:46 +0530604 if meta.has_field("disabled"):
605 query_filters.append(["disabled", "!=", 1])
Subin Tom333e44e2021-08-18 16:17:54 +0530606
Ankush Menat494bd9e2022-03-28 18:52:46 +0530607 if meta.has_field("company"):
608 query_filters.append(["company", "=", filters.get("company")])
Deepesh Garg6c17b842020-11-25 13:42:16 +0530609
mergify[bot]071118f2021-11-30 13:15:20 +0000610 for field in searchfields:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530611 or_filters.append([field, "LIKE", "%%%s%%" % txt])
mergify[bot]071118f2021-11-30 13:15:20 +0000612 fields.append(field)
Deepesh Garg96e874b2020-11-15 22:43:01 +0530613
614 if dimension_filters:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530615 if dimension_filters["allow_or_restrict"] == "Allow":
616 query_selector = "in"
Deepesh Garg96e874b2020-11-15 22:43:01 +0530617 else:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530618 query_selector = "not in"
Deepesh Garg96e874b2020-11-15 22:43:01 +0530619
Ankush Menat494bd9e2022-03-28 18:52:46 +0530620 if len(dimension_filters["allowed_dimensions"]) == 1:
621 dimensions = tuple(dimension_filters["allowed_dimensions"] * 2)
Deepesh Garg96e874b2020-11-15 22:43:01 +0530622 else:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530623 dimensions = tuple(dimension_filters["allowed_dimensions"])
Deepesh Garg96e874b2020-11-15 22:43:01 +0530624
Ankush Menat494bd9e2022-03-28 18:52:46 +0530625 query_filters.append(["name", query_selector, dimensions])
Deepesh Garg96e874b2020-11-15 22:43:01 +0530626
Ankush Menat494bd9e2022-03-28 18:52:46 +0530627 output = frappe.get_list(
Ankush Menat6de71eb2023-04-25 18:33:31 +0530628 doctype,
629 fields=fields,
630 filters=query_filters,
631 or_filters=or_filters,
632 as_list=1,
633 reference_doctype=reference_doctype,
Ankush Menat494bd9e2022-03-28 18:52:46 +0530634 )
Deepesh Garg6c17b842020-11-25 13:42:16 +0530635
mergify[bot]071118f2021-11-30 13:15:20 +0000636 return [tuple(d) for d in set(output)]
Nabin Hait3a15c922016-03-04 12:30:46 +0530637
Ankush Menat494bd9e2022-03-28 18:52:46 +0530638
Nabin Hait3a15c922016-03-04 12:30:46 +0530639@frappe.whitelist()
Suraj Shetty1923ef02020-08-05 19:42:25 +0530640@frappe.validate_and_sanitize_search_inputs
Nabin Hait3a15c922016-03-04 12:30:46 +0530641def get_expense_account(doctype, txt, searchfield, start, page_len, filters):
642 from erpnext.controllers.queries import get_match_cond
Rushabh Mehta203cc962016-04-07 15:25:43 +0530643
Ankush Menat494bd9e2022-03-28 18:52:46 +0530644 if not filters:
645 filters = {}
Nabin Hait3a15c922016-03-04 12:30:46 +0530646
Sagar Vora9baa2222022-08-03 05:42:30 +0000647 doctype = "Account"
Nabin Hait3a15c922016-03-04 12:30:46 +0530648 condition = ""
649 if filters.get("company"):
650 condition += "and tabAccount.company = %(company)s"
Rushabh Mehta203cc962016-04-07 15:25:43 +0530651
Ankush Menat494bd9e2022-03-28 18:52:46 +0530652 return frappe.db.sql(
Akhil Narang3effaf22024-03-27 11:37:26 +0530653 f"""select tabAccount.name from `tabAccount`
Nabin Hait3a15c922016-03-04 12:30:46 +0530654 where (tabAccount.report_type = "Profit and Loss"
Mangesh-Khairnar5619db22019-08-21 14:49:24 +0530655 or tabAccount.account_type in ("Expense Account", "Fixed Asset", "Temporary", "Asset Received But Not Billed", "Capital Work in Progress"))
Nabin Hait3a15c922016-03-04 12:30:46 +0530656 and tabAccount.is_group=0
657 and tabAccount.docstatus!=2
Akhil Narang3effaf22024-03-27 11:37:26 +0530658 and tabAccount.{searchfield} LIKE %(txt)s
659 {condition} {get_match_cond(doctype)}""",
Ankush Menat494bd9e2022-03-28 18:52:46 +0530660 {"company": filters.get("company", ""), "txt": "%" + txt + "%"},
661 )
suyashphadtare049a88c2017-01-12 17:49:37 +0530662
663
664@frappe.whitelist()
Suraj Shetty1923ef02020-08-05 19:42:25 +0530665@frappe.validate_and_sanitize_search_inputs
suyashphadtare049a88c2017-01-12 17:49:37 +0530666def warehouse_query(doctype, txt, searchfield, start, page_len, filters):
667 # Should be used when item code is passed in filters.
Sagar Vora9baa2222022-08-03 05:42:30 +0000668 doctype = "Warehouse"
suyashphadtare750a0672017-01-18 15:35:01 +0530669 conditions, bin_conditions = [], []
670 filter_dict = get_doctype_wise_filters(filters)
671
s-aga-ree14faa2024-02-05 21:53:25 +0530672 warehouse_field = "name"
673 meta = frappe.get_meta("Warehouse")
674 if meta.get("show_title_field_in_link") and meta.get("title_field"):
675 searchfield = meta.get("title_field")
676 warehouse_field = meta.get("title_field")
677
678 query = """select `tabWarehouse`.`{warehouse_field}`,
Conor74a782d2022-06-17 06:31:27 -0500679 CONCAT_WS(' : ', 'Actual Qty', ifnull(round(`tabBin`.actual_qty, 2), 0 )) actual_qty
Diksha Jadhav182ee5e2020-08-18 00:35:04 +0530680 from `tabWarehouse` left join `tabBin`
681 on `tabBin`.warehouse = `tabWarehouse`.name {bin_conditions}
suyashphadtare34ab1362017-01-31 15:14:44 +0530682 where
Diksha Jadhav182ee5e2020-08-18 00:35:04 +0530683 `tabWarehouse`.`{key}` like {txt}
suyashphadtare34ab1362017-01-31 15:14:44 +0530684 {fcond} {mcond}
s-aga-ree14faa2024-02-05 21:53:25 +0530685 order by ifnull(`tabBin`.actual_qty, 0) desc, `tabWarehouse`.`{warehouse_field}` asc
suyashphadtare34ab1362017-01-31 15:14:44 +0530686 limit
Conor00ef4992022-06-14 00:19:07 -0500687 {page_len} offset {start}
suyashphadtare34ab1362017-01-31 15:14:44 +0530688 """.format(
s-aga-ree14faa2024-02-05 21:53:25 +0530689 warehouse_field=warehouse_field,
Ankush Menat494bd9e2022-03-28 18:52:46 +0530690 bin_conditions=get_filters_cond(
691 doctype, filter_dict.get("Bin"), bin_conditions, ignore_permissions=True
692 ),
693 key=searchfield,
694 fcond=get_filters_cond(doctype, filter_dict.get("Warehouse"), conditions),
695 mcond=get_match_cond(doctype),
696 start=start,
697 page_len=page_len,
Akhil Narang3effaf22024-03-27 11:37:26 +0530698 txt=frappe.db.escape(f"%{txt}%"),
Ankush Menat494bd9e2022-03-28 18:52:46 +0530699 )
Rushabh Mehta7e506af2017-08-24 15:23:33 +0530700
701 return frappe.db.sql(query)
suyashphadtare750a0672017-01-18 15:35:01 +0530702
703
704def get_doctype_wise_filters(filters):
705 # Helper function to seperate filters doctype_wise
706 filter_dict = defaultdict(list)
707 for row in filters:
708 filter_dict[row[0]].append(row)
709 return filter_dict
tundebabzy2a4fefc2017-11-29 06:23:09 +0100710
711
712@frappe.whitelist()
Suraj Shetty1923ef02020-08-05 19:42:25 +0530713@frappe.validate_and_sanitize_search_inputs
tundebabzy2a4fefc2017-11-29 06:23:09 +0100714def get_batch_numbers(doctype, txt, searchfield, start, page_len, filters):
rohitwaghchaure9fbed562018-01-12 16:22:33 +0530715 query = """select batch_id from `tabBatch`
Doridel Cahanap59e4c322018-08-06 17:15:18 +0800716 where disabled = 0
Conorb8f728a2022-06-15 01:37:33 -0500717 and (expiry_date >= CURRENT_DATE or expiry_date IS NULL)
Akhil Narang3effaf22024-03-27 11:37:26 +0530718 and name like {txt}""".format(txt=frappe.db.escape(f"%{txt}%"))
tundebabzy2a4fefc2017-11-29 06:23:09 +0100719
Ankush Menat494bd9e2022-03-28 18:52:46 +0530720 if filters and filters.get("item"):
721 query += " and item = {item}".format(item=frappe.db.escape(filters.get("item")))
tundebabzy2a4fefc2017-11-29 06:23:09 +0100722
Sachin Mane64f48db2018-01-08 17:57:32 +0530723 return frappe.db.sql(query, filters)
Rohit Waghchaure3cf24362019-06-02 16:03:05 +0530724
Himanshud94a38e2020-05-18 14:26:26 +0530725
Rohit Waghchaure3cf24362019-06-02 16:03:05 +0530726@frappe.whitelist()
Suraj Shetty1923ef02020-08-05 19:42:25 +0530727@frappe.validate_and_sanitize_search_inputs
Rohit Waghchaure3cf24362019-06-02 16:03:05 +0530728def item_manufacturer_query(doctype, txt, searchfield, start, page_len, filters):
Maricabac4b932019-09-16 19:44:28 +0530729 item_filters = [
Ankush Menat494bd9e2022-03-28 18:52:46 +0530730 ["manufacturer", "like", "%" + txt + "%"],
731 ["item_code", "=", filters.get("item_code")],
Maricabac4b932019-09-16 19:44:28 +0530732 ]
Rohit Waghchaure3cf24362019-06-02 16:03:05 +0530733
Maricabac4b932019-09-16 19:44:28 +0530734 item_manufacturers = frappe.get_all(
735 "Item Manufacturer",
736 fields=["manufacturer", "manufacturer_part_no"],
737 filters=item_filters,
Rohit Waghchaure3cf24362019-06-02 16:03:05 +0530738 limit_start=start,
739 limit_page_length=page_len,
Ankush Menat494bd9e2022-03-28 18:52:46 +0530740 as_list=1,
Rohit Waghchaure3cf24362019-06-02 16:03:05 +0530741 )
Maricabac4b932019-09-16 19:44:28 +0530742 return item_manufacturers
Saqibd9956092019-11-18 11:46:55 +0530743
Himanshud94a38e2020-05-18 14:26:26 +0530744
Saqibd9956092019-11-18 11:46:55 +0530745@frappe.whitelist()
Suraj Shetty1923ef02020-08-05 19:42:25 +0530746@frappe.validate_and_sanitize_search_inputs
Saqibd9956092019-11-18 11:46:55 +0530747def get_purchase_receipts(doctype, txt, searchfield, start, page_len, filters):
748 query = """
Deepesh Gargef0d26c2020-01-06 15:34:15 +0530749 select pr.name
Saqibd9956092019-11-18 11:46:55 +0530750 from `tabPurchase Receipt` pr, `tabPurchase Receipt Item` pritem
751 where pr.docstatus = 1 and pritem.parent = pr.name
Akhil Narang3effaf22024-03-27 11:37:26 +0530752 and pr.name like {txt}""".format(txt=frappe.db.escape(f"%{txt}%"))
Saqibd9956092019-11-18 11:46:55 +0530753
Ankush Menat494bd9e2022-03-28 18:52:46 +0530754 if filters and filters.get("item_code"):
755 query += " and pritem.item_code = {item_code}".format(
756 item_code=frappe.db.escape(filters.get("item_code"))
757 )
Saqibd9956092019-11-18 11:46:55 +0530758
759 return frappe.db.sql(query, filters)
760
Himanshud94a38e2020-05-18 14:26:26 +0530761
Saqibd9956092019-11-18 11:46:55 +0530762@frappe.whitelist()
Suraj Shetty1923ef02020-08-05 19:42:25 +0530763@frappe.validate_and_sanitize_search_inputs
Saqibd9956092019-11-18 11:46:55 +0530764def get_purchase_invoices(doctype, txt, searchfield, start, page_len, filters):
765 query = """
Deepesh Gargef0d26c2020-01-06 15:34:15 +0530766 select pi.name
Saqibd9956092019-11-18 11:46:55 +0530767 from `tabPurchase Invoice` pi, `tabPurchase Invoice Item` piitem
768 where pi.docstatus = 1 and piitem.parent = pi.name
Akhil Narang3effaf22024-03-27 11:37:26 +0530769 and pi.name like {txt}""".format(txt=frappe.db.escape(f"%{txt}%"))
Saqibd9956092019-11-18 11:46:55 +0530770
Ankush Menat494bd9e2022-03-28 18:52:46 +0530771 if filters and filters.get("item_code"):
772 query += " and piitem.item_code = {item_code}".format(
773 item_code=frappe.db.escape(filters.get("item_code"))
774 )
Saqibd9956092019-11-18 11:46:55 +0530775
776 return frappe.db.sql(query, filters)
Deepesh Gargef0d26c2020-01-06 15:34:15 +0530777
Himanshud94a38e2020-05-18 14:26:26 +0530778
Deepesh Gargef0d26c2020-01-06 15:34:15 +0530779@frappe.whitelist()
Suraj Shetty1923ef02020-08-05 19:42:25 +0530780@frappe.validate_and_sanitize_search_inputs
mergify[bot]b4db5e92023-07-18 17:40:49 +0530781def get_doctypes_for_closing(doctype, txt, searchfield, start, page_len, filters):
782 doctypes = frappe.get_hooks("period_closing_doctypes")
783 if txt:
784 doctypes = [d for d in doctypes if txt.lower() in d.lower()]
785 return [(d,) for d in set(doctypes)]
786
787
788@frappe.whitelist()
789@frappe.validate_and_sanitize_search_inputs
Deepesh Gargef0d26c2020-01-06 15:34:15 +0530790def get_tax_template(doctype, txt, searchfield, start, page_len, filters):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530791 item_doc = frappe.get_cached_doc("Item", filters.get("item_code"))
792 item_group = filters.get("item_group")
793 company = filters.get("company")
Deepesh Gargef0d26c2020-01-06 15:34:15 +0530794 taxes = item_doc.taxes or []
795
796 while item_group:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530797 item_group_doc = frappe.get_cached_doc("Item Group", item_group)
Deepesh Gargef0d26c2020-01-06 15:34:15 +0530798 taxes += item_group_doc.taxes or []
799 item_group = item_group_doc.parent_item_group
800
801 if not taxes:
Akhil Narang3effaf22024-03-27 11:37:26 +0530802 return frappe.get_all("Item Tax Template", filters={"disabled": 0, "company": company}, as_list=True)
Deepesh Gargef0d26c2020-01-06 15:34:15 +0530803 else:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530804 valid_from = filters.get("valid_from")
Marica0fcb05a2020-08-10 14:48:13 +0530805 valid_from = valid_from[1] if isinstance(valid_from, list) else valid_from
806
Deepesh Gargef0d26c2020-01-06 15:34:15 +0530807 args = {
Ankush Menat494bd9e2022-03-28 18:52:46 +0530808 "item_code": filters.get("item_code"),
809 "posting_date": valid_from,
810 "tax_category": filters.get("tax_category"),
811 "company": company,
Deepesh Gargef0d26c2020-01-06 15:34:15 +0530812 }
813
814 taxes = _get_item_tax_template(args, taxes, for_validate=True)
815 return [(d,) for d in set(taxes)]
Himanshud94a38e2020-05-18 14:26:26 +0530816
817
Ankush Menat7eac4a22021-04-19 10:33:39 +0530818def get_fields(doctype, fields=None):
819 if fields is None:
820 fields = []
Himanshud94a38e2020-05-18 14:26:26 +0530821 meta = frappe.get_meta(doctype)
822 fields.extend(meta.get_search_fields())
823
barredterraeb9ee3f2023-12-05 11:22:55 +0100824 if meta.title_field and meta.title_field.strip() not in fields:
Himanshud94a38e2020-05-18 14:26:26 +0530825 fields.insert(1, meta.title_field.strip())
826
827 return unique(fields)
ruthra kumar662ccd42023-07-22 11:18:11 +0530828
829
830@frappe.whitelist()
831@frappe.validate_and_sanitize_search_inputs
832def get_payment_terms_for_references(doctype, txt, searchfield, start, page_len, filters) -> list:
833 terms = []
834 if filters:
835 terms = frappe.db.get_all(
836 "Payment Schedule",
837 filters={"parent": filters.get("reference")},
838 fields=["payment_term"],
839 limit=page_len,
840 as_list=1,
841 )
842 return terms
s-aga-r00261092023-12-04 18:00:06 +0530843
844
845@frappe.whitelist()
846@frappe.validate_and_sanitize_search_inputs
847def get_filtered_child_rows(doctype, txt, searchfield, start, page_len, filters) -> list:
848 table = frappe.qb.DocType(doctype)
849 query = (
850 frappe.qb.from_(table)
851 .select(
852 table.name,
853 Concat("#", table.idx, ", ", table.item_code),
854 )
855 .orderby(table.idx)
856 .offset(start)
857 .limit(page_len)
858 )
859
860 if filters:
861 for field, value in filters.items():
862 query = query.where(table[field] == value)
863
864 if txt:
865 txt += "%"
866 query = query.where(
867 ((table.idx.like(txt.replace("#", ""))) | (table.item_code.like(txt))) | (table.name.like(txt))
868 )
869
870 return query.run(as_dict=False)