blob: a477a0d60bb3464c5ed8d9b60be40728f5970d9f [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
88 # searches for customer
Saurabh02875592013-07-08 18:45:55 +053089
Himanshud94a38e2020-05-18 14:26:26 +053090
Chinmay D. Paiaa121092020-07-01 21:14:32 +053091@frappe.whitelist()
Suraj Shetty1923ef02020-08-05 19:42:25 +053092@frappe.validate_and_sanitize_search_inputs
Rohit Waghchaure5f849932022-10-24 16:10:47 +053093def customer_query(doctype, txt, searchfield, start, page_len, filters, as_dict=False):
Sagar Vora9baa2222022-08-03 05:42:30 +000094 doctype = "Customer"
KanchanChauhan4b888b92017-07-25 14:03:01 +053095 conditions = []
Rushabh Mehta793ba6b2014-02-14 15:47:51 +053096 cust_master_name = frappe.defaults.get_user_default("cust_master_name")
Saurabhf52dc072013-07-10 13:07:49 +053097
Rohit Waghchaure46d148d2022-10-24 15:48:34 +053098 fields = ["name"]
99 if cust_master_name != "Customer Name":
Rohit Waghchaureb0fc5682022-11-03 11:24:58 +0530100 fields.append("customer_name")
Rushabh Mehtab92087c2017-01-13 18:53:11 +0530101
Sagar Vora9baa2222022-08-03 05:42:30 +0000102 fields = get_fields(doctype, fields)
Sagar Vora9baa2222022-08-03 05:42:30 +0000103 searchfields = frappe.get_meta(doctype).get_search_fields()
Ankush Menata9c84f72021-06-11 16:00:48 +0530104 searchfields = " or ".join(field + " like %(txt)s" for field in searchfields)
Saurabh02875592013-07-08 18:45:55 +0530105
Ankush Menat494bd9e2022-03-28 18:52:46 +0530106 return frappe.db.sql(
107 """select {fields} from `tabCustomer`
Anand Doshibd67e872014-04-11 16:51:27 +0530108 where docstatus < 2
Console Admin86231662017-06-23 20:32:52 +0300109 and ({scond}) and disabled=0
KanchanChauhan4b888b92017-07-25 14:03:01 +0530110 {fcond} {mcond}
Anand Doshibd67e872014-04-11 16:51:27 +0530111 order by
Conorea28ed12022-06-17 10:47:48 -0500112 (case when locate(%(_txt)s, name) > 0 then locate(%(_txt)s, name) else 99999 end),
113 (case when locate(%(_txt)s, customer_name) > 0 then locate(%(_txt)s, customer_name) else 99999 end),
Rushabh Mehta3574b372016-03-11 14:33:04 +0530114 idx desc,
Anand Doshibd67e872014-04-11 16:51:27 +0530115 name, customer_name
Conor00ef4992022-06-14 00:19:07 -0500116 limit %(page_len)s offset %(start)s""".format(
Ankush Menat494bd9e2022-03-28 18:52:46 +0530117 **{
118 "fields": ", ".join(fields),
119 "scond": searchfields,
120 "mcond": get_match_cond(doctype),
121 "fcond": get_filters_cond(doctype, filters, conditions).replace("%", "%%"),
122 }
123 ),
124 {"txt": "%%%s%%" % txt, "_txt": txt.replace("%", ""), "start": start, "page_len": page_len},
Rohit Waghchaure5f849932022-10-24 16:10:47 +0530125 as_dict=as_dict,
Ankush Menat494bd9e2022-03-28 18:52:46 +0530126 )
Saurabh02875592013-07-08 18:45:55 +0530127
Himanshud94a38e2020-05-18 14:26:26 +0530128
Saurabh02875592013-07-08 18:45:55 +0530129# searches for supplier
Chinmay D. Paiaa121092020-07-01 21:14:32 +0530130@frappe.whitelist()
Suraj Shetty1923ef02020-08-05 19:42:25 +0530131@frappe.validate_and_sanitize_search_inputs
Rohit Waghchaure5f849932022-10-24 16:10:47 +0530132def supplier_query(doctype, txt, searchfield, start, page_len, filters, as_dict=False):
Sagar Vora9baa2222022-08-03 05:42:30 +0000133 doctype = "Supplier"
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530134 supp_master_name = frappe.defaults.get_user_default("supp_master_name")
Suraj Shetty1923ef02020-08-05 19:42:25 +0530135
Rohit Waghchaure46d148d2022-10-24 15:48:34 +0530136 fields = ["name"]
137 if supp_master_name != "Supplier Name":
Rohit Waghchaureb0fc5682022-11-03 11:24:58 +0530138 fields.append("supplier_name")
Himanshud94a38e2020-05-18 14:26:26 +0530139
Sagar Vora9baa2222022-08-03 05:42:30 +0000140 fields = get_fields(doctype, fields)
Saurabh02875592013-07-08 18:45:55 +0530141
Ankush Menat494bd9e2022-03-28 18:52:46 +0530142 return frappe.db.sql(
143 """select {field} from `tabSupplier`
Anand Doshibd67e872014-04-11 16:51:27 +0530144 where docstatus < 2
Anand Doshi48d3b542014-07-09 13:15:03 +0530145 and ({key} like %(txt)s
Ankush Menat2221c9e2021-10-27 19:15:44 +0530146 or supplier_name like %(txt)s) and disabled=0
Conorea28ed12022-06-17 10:47:48 -0500147 and (on_hold = 0 or (on_hold = 1 and CURRENT_DATE > release_date))
Anand Doshi48d3b542014-07-09 13:15:03 +0530148 {mcond}
Anand Doshibd67e872014-04-11 16:51:27 +0530149 order by
Conorea28ed12022-06-17 10:47:48 -0500150 (case when locate(%(_txt)s, name) > 0 then locate(%(_txt)s, name) else 99999 end),
151 (case when locate(%(_txt)s, supplier_name) > 0 then locate(%(_txt)s, supplier_name) else 99999 end),
Rushabh Mehta3574b372016-03-11 14:33:04 +0530152 idx desc,
Anand Doshibd67e872014-04-11 16:51:27 +0530153 name, supplier_name
Conor00ef4992022-06-14 00:19:07 -0500154 limit %(page_len)s offset %(start)s""".format(
Ankush Menat494bd9e2022-03-28 18:52:46 +0530155 **{"field": ", ".join(fields), "key": searchfield, "mcond": get_match_cond(doctype)}
156 ),
157 {"txt": "%%%s%%" % txt, "_txt": txt.replace("%", ""), "start": start, "page_len": page_len},
Rohit Waghchaure5f849932022-10-24 16:10:47 +0530158 as_dict=as_dict,
Ankush Menat494bd9e2022-03-28 18:52:46 +0530159 )
Anand Doshibd67e872014-04-11 16:51:27 +0530160
Himanshud94a38e2020-05-18 14:26:26 +0530161
Chinmay D. Paiaa121092020-07-01 21:14:32 +0530162@frappe.whitelist()
Suraj Shetty1923ef02020-08-05 19:42:25 +0530163@frappe.validate_and_sanitize_search_inputs
Nabin Hait9a380ef2013-07-16 17:24:17 +0530164def tax_account_query(doctype, txt, searchfield, start, page_len, filters):
Sagar Vora9baa2222022-08-03 05:42:30 +0000165 doctype = "Account"
Ankush Menat494bd9e2022-03-28 18:52:46 +0530166 company_currency = erpnext.get_company_currency(filters.get("company"))
Deepesh Gargfbf6e562020-03-31 10:45:32 +0530167
Suraj Shetty1923ef02020-08-05 19:42:25 +0530168 def get_accounts(with_account_type_filter):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530169 account_type_condition = ""
Suraj Shetty1923ef02020-08-05 19:42:25 +0530170 if with_account_type_filter:
171 account_type_condition = "AND account_type in %(account_types)s"
172
Ankush Menat494bd9e2022-03-28 18:52:46 +0530173 accounts = frappe.db.sql(
174 """
Suraj Shetty1923ef02020-08-05 19:42:25 +0530175 SELECT name, parent_account
176 FROM `tabAccount`
177 WHERE `tabAccount`.docstatus!=2
178 {account_type_condition}
179 AND is_group = 0
180 AND company = %(company)s
Saqib Ansaria1e3ae82022-05-11 13:01:06 +0530181 AND disabled = %(disabled)s
Deepesh Garg57924592022-03-22 18:26:58 +0530182 AND (account_currency = %(currency)s or ifnull(account_currency, '') = '')
Suraj Shetty1923ef02020-08-05 19:42:25 +0530183 AND `{searchfield}` LIKE %(txt)s
prssannade7a2bc2020-09-21 13:57:04 +0530184 {mcond}
Suraj Shetty1923ef02020-08-05 19:42:25 +0530185 ORDER BY idx DESC, name
Conor00ef4992022-06-14 00:19:07 -0500186 LIMIT %(limit)s offset %(offset)s
prssannade7a2bc2020-09-21 13:57:04 +0530187 """.format(
188 account_type_condition=account_type_condition,
189 searchfield=searchfield,
Ankush Menat494bd9e2022-03-28 18:52:46 +0530190 mcond=get_match_cond(doctype),
prssannade7a2bc2020-09-21 13:57:04 +0530191 ),
Suraj Shetty1923ef02020-08-05 19:42:25 +0530192 dict(
193 account_types=filters.get("account_type"),
194 company=filters.get("company"),
Saqib Ansaria1e3ae82022-05-11 13:01:06 +0530195 disabled=filters.get("disabled", 0),
Suraj Shetty1923ef02020-08-05 19:42:25 +0530196 currency=company_currency,
197 txt="%{}%".format(txt),
198 offset=start,
Ankush Menat494bd9e2022-03-28 18:52:46 +0530199 limit=page_len,
200 ),
Suraj Shetty1923ef02020-08-05 19:42:25 +0530201 )
202
203 return accounts
204
205 tax_accounts = get_accounts(True)
206
Nabin Hait0c21e2a2014-03-21 11:14:49 +0530207 if not tax_accounts:
Suraj Shetty1923ef02020-08-05 19:42:25 +0530208 tax_accounts = get_accounts(False)
Anand Doshibd67e872014-04-11 16:51:27 +0530209
Nabin Hait0c21e2a2014-03-21 11:14:49 +0530210 return tax_accounts
Saurabh02875592013-07-08 18:45:55 +0530211
Himanshud94a38e2020-05-18 14:26:26 +0530212
Chinmay D. Paiaa121092020-07-01 21:14:32 +0530213@frappe.whitelist()
Suraj Shetty1923ef02020-08-05 19:42:25 +0530214@frappe.validate_and_sanitize_search_inputs
Rushabh Mehta203cc962016-04-07 15:25:43 +0530215def item_query(doctype, txt, searchfield, start, page_len, filters, as_dict=False):
Sagar Vora9baa2222022-08-03 05:42:30 +0000216 doctype = "Item"
Saurabh02875592013-07-08 18:45:55 +0530217 conditions = []
Saurabhf52dc072013-07-10 13:07:49 +0530218
rohitwaghchaurec59371a2021-06-03 20:02:58 +0530219 if isinstance(filters, str):
220 filters = json.loads(filters)
221
Ankush Menat494bd9e2022-03-28 18:52:46 +0530222 # Get searchfields from meta and use in Item Link field query
Sagar Vora9baa2222022-08-03 05:42:30 +0000223 meta = frappe.get_meta(doctype, cached=True)
marination3dbef9d2019-10-28 15:48:10 +0530224 searchfields = meta.get_search_fields()
225
Ankush Menat494bd9e2022-03-28 18:52:46 +0530226 columns = ""
barredterraeb9ee3f2023-12-05 11:22:55 +0100227 extra_searchfields = [field for field in searchfields if field not in ["name", "description"]]
Rohit Waghchaurec42312e2019-11-19 19:05:23 +0530228
229 if extra_searchfields:
Rohit Waghchaurefd889fd2022-09-28 23:00:45 +0530230 columns += ", " + ", ".join(extra_searchfields)
231
232 if "description" in searchfields:
233 columns += """, if(length(tabItem.description) > 40, \
234 concat(substr(tabItem.description, 1, 40), "..."), description) as description"""
marination1e754b12019-10-30 18:33:44 +0530235
Ankush Menat494bd9e2022-03-28 18:52:46 +0530236 searchfields = searchfields + [
237 field
barredterraeb9ee3f2023-12-05 11:22:55 +0100238 for field in [
239 searchfield or "name",
240 "item_code",
241 "item_group",
242 "item_name",
243 ]
244 if field not in searchfields
Ankush Menat494bd9e2022-03-28 18:52:46 +0530245 ]
marination3dbef9d2019-10-28 15:48:10 +0530246 searchfields = " or ".join([field + " like %(txt)s" for field in searchfields])
247
DeeMysterioaa826242021-09-14 13:58:18 +0530248 if filters and isinstance(filters, dict):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530249 if filters.get("customer") or filters.get("supplier"):
250 party = filters.get("customer") or filters.get("supplier")
251 item_rules_list = frappe.get_all(
252 "Party Specific Item", filters={"party": party}, fields=["restrict_based_on", "based_on_value"]
253 )
Rohit Waghchaure721b4132021-06-02 14:13:09 +0530254
DeeMysterioaa826242021-09-14 13:58:18 +0530255 filters_dict = {}
256 for rule in item_rules_list:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530257 if rule["restrict_based_on"] == "Item":
258 rule["restrict_based_on"] = "name"
DeeMysterioaa826242021-09-14 13:58:18 +0530259 filters_dict[rule.restrict_based_on] = []
noahjacobca2fb472021-05-12 16:25:07 +0530260
DeeMysterioaa826242021-09-14 13:58:18 +0530261 for rule in item_rules_list:
262 filters_dict[rule.restrict_based_on].append(rule.based_on_value)
noahjacobca2fb472021-05-12 16:25:07 +0530263
DeeMysterioaa826242021-09-14 13:58:18 +0530264 for filter in filters_dict:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530265 filters[scrub(filter)] = ["in", filters_dict[filter]]
DeeMysterioaa826242021-09-14 13:58:18 +0530266
Ankush Menat494bd9e2022-03-28 18:52:46 +0530267 if filters.get("customer"):
268 del filters["customer"]
DeeMysterioaa826242021-09-14 13:58:18 +0530269 else:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530270 del filters["supplier"]
Ankush Menat41a95e52022-02-03 13:02:13 +0530271 else:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530272 filters.pop("customer", None)
273 filters.pop("supplier", None)
DeeMysterioaa826242021-09-14 13:58:18 +0530274
Ankush Menat494bd9e2022-03-28 18:52:46 +0530275 description_cond = ""
Sagar Vora9baa2222022-08-03 05:42:30 +0000276 if frappe.db.count(doctype, cache=True) < 50000:
Rushabh Mehtad5f9ebd2018-04-02 23:37:33 +0530277 # scan description only if items are less than 50000
Ankush Menat494bd9e2022-03-28 18:52:46 +0530278 description_cond = "or tabItem.description LIKE %(txt)s"
Rohit Waghchaurefd889fd2022-09-28 23:00:45 +0530279
Ankush Menat494bd9e2022-03-28 18:52:46 +0530280 return frappe.db.sql(
281 """select
Rohit Waghchaurefd889fd2022-09-28 23:00:45 +0530282 tabItem.name {columns}
Anand Doshibd67e872014-04-11 16:51:27 +0530283 from tabItem
Anand Doshi22c0d782013-11-04 16:23:04 +0530284 where tabItem.docstatus < 2
Anand Doshi21e09a22015-10-29 12:21:41 +0530285 and tabItem.disabled=0
rohitwaghchaure79789072020-05-21 18:10:13 +0530286 and tabItem.has_variants=0
Rushabh Mehta864d1ea2014-06-23 12:20:12 +0530287 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 +0530288 and ({scond} or tabItem.item_code IN (select parent from `tabItem Barcode` where barcode LIKE %(txt)s)
Rohit Waghchaure2bfb0632019-03-02 21:47:55 +0530289 {description_cond})
Anand Doshi22c0d782013-11-04 16:23:04 +0530290 {fcond} {mcond}
Anand Doshi652bc072014-04-16 15:21:46 +0530291 order by
292 if(locate(%(_txt)s, name), locate(%(_txt)s, name), 99999),
293 if(locate(%(_txt)s, item_name), locate(%(_txt)s, item_name), 99999),
Rushabh Mehta3574b372016-03-11 14:33:04 +0530294 idx desc,
Anand Doshi652bc072014-04-16 15:21:46 +0530295 name, item_name
Rushabh Mehtabc4e2cd2017-10-17 12:30:34 +0530296 limit %(start)s, %(page_len)s """.format(
marination1e754b12019-10-30 18:33:44 +0530297 columns=columns,
marination3dbef9d2019-10-28 15:48:10 +0530298 scond=searchfields,
Ankush Menat494bd9e2022-03-28 18:52:46 +0530299 fcond=get_filters_cond(doctype, filters, conditions).replace("%", "%%"),
300 mcond=get_match_cond(doctype).replace("%", "%%"),
301 description_cond=description_cond,
302 ),
303 {
304 "today": nowdate(),
305 "txt": "%%%s%%" % txt,
306 "_txt": txt.replace("%", ""),
307 "start": start,
308 "page_len": page_len,
309 },
310 as_dict=as_dict,
311 )
Saurabh02875592013-07-08 18:45:55 +0530312
Himanshud94a38e2020-05-18 14:26:26 +0530313
Chinmay D. Paiaa121092020-07-01 21:14:32 +0530314@frappe.whitelist()
Suraj Shetty1923ef02020-08-05 19:42:25 +0530315@frappe.validate_and_sanitize_search_inputs
Saurabh022ab632017-11-10 15:06:02 +0530316def bom(doctype, txt, searchfield, start, page_len, filters):
Sagar Vora9baa2222022-08-03 05:42:30 +0000317 doctype = "BOM"
Anand Doshibd67e872014-04-11 16:51:27 +0530318 conditions = []
Sagar Vora9baa2222022-08-03 05:42:30 +0000319 fields = get_fields(doctype, ["name", "item"])
Saurabhf52dc072013-07-10 13:07:49 +0530320
Ankush Menat494bd9e2022-03-28 18:52:46 +0530321 return frappe.db.sql(
322 """select {fields}
Conorea28ed12022-06-17 10:47:48 -0500323 from `tabBOM`
324 where `tabBOM`.docstatus=1
325 and `tabBOM`.is_active=1
326 and `tabBOM`.`{key}` like %(txt)s
Nabin Hait62211172016-03-16 16:22:03 +0530327 {fcond} {mcond}
328 order by
Conorea28ed12022-06-17 10:47:48 -0500329 (case when locate(%(_txt)s, name) > 0 then locate(%(_txt)s, name) else 99999 end),
Rushabh Mehta3574b372016-03-11 14:33:04 +0530330 idx desc, name
Conorea28ed12022-06-17 10:47:48 -0500331 limit %(page_len)s offset %(start)s""".format(
Himanshud94a38e2020-05-18 14:26:26 +0530332 fields=", ".join(fields),
Ankush Menat494bd9e2022-03-28 18:52:46 +0530333 fcond=get_filters_cond(doctype, filters, conditions).replace("%", "%%"),
334 mcond=get_match_cond(doctype).replace("%", "%%"),
335 key=searchfield,
336 ),
Mangesh-Khairnar6a796912019-07-08 10:40:40 +0530337 {
Ankush Menat494bd9e2022-03-28 18:52:46 +0530338 "txt": "%" + txt + "%",
339 "_txt": txt.replace("%", ""),
340 "start": start or 0,
341 "page_len": page_len or 20,
342 },
343 )
Saurabh02875592013-07-08 18:45:55 +0530344
Himanshud94a38e2020-05-18 14:26:26 +0530345
Chinmay D. Paiaa121092020-07-01 21:14:32 +0530346@frappe.whitelist()
Suraj Shetty1923ef02020-08-05 19:42:25 +0530347@frappe.validate_and_sanitize_search_inputs
Saurabh02875592013-07-08 18:45:55 +0530348def get_project_name(doctype, txt, searchfield, start, page_len, filters):
ruthra kumar4eefb442024-01-16 13:38:53 +0530349 proj = qb.DocType("Project")
350 qb_filter_and_conditions = []
351 qb_filter_or_conditions = []
ruthra kumarbfe42fd2024-01-16 14:35:06 +0530352 ifelse = CustomFunction("IF", ["condition", "then", "else"])
353
Ankush Menat494bd9e2022-03-28 18:52:46 +0530354 if filters and filters.get("customer"):
ruthra kumar4eefb442024-01-16 13:38:53 +0530355 qb_filter_and_conditions.append(proj.customer == filters.get("customer"))
Anand Doshibd67e872014-04-11 16:51:27 +0530356
ruthra kumar4eefb442024-01-16 13:38:53 +0530357 qb_filter_and_conditions.append(proj.status.notin(["Completed", "Cancelled"]))
Himanshud94a38e2020-05-18 14:26:26 +0530358
ruthra kumar4eefb442024-01-16 13:38:53 +0530359 q = qb.from_(proj)
360
ruthra kumar3349dde2024-01-16 14:28:09 +0530361 fields = get_fields(doctype, ["name", "project_name"])
ruthra kumar4eefb442024-01-16 13:38:53 +0530362 for x in fields:
363 q = q.select(proj[x])
364
ruthra kumarbfe42fd2024-01-16 14:35:06 +0530365 # don't consider 'customer' and 'status' fields for pattern search, as they must be exactly matched
ruthra kumar4eefb442024-01-16 13:38:53 +0530366 searchfields = [
367 x for x in frappe.get_meta(doctype).get_search_fields() if x not in ["customer", "status"]
368 ]
ruthra kumarbfe42fd2024-01-16 14:35:06 +0530369
370 # pattern search
ruthra kumar4eefb442024-01-16 13:38:53 +0530371 if txt:
372 for x in searchfields:
373 qb_filter_or_conditions.append(proj[x].like(f"%{txt}%"))
374
375 q = q.where(Criterion.all(qb_filter_and_conditions)).where(Criterion.any(qb_filter_or_conditions))
ruthra kumarbfe42fd2024-01-16 14:35:06 +0530376
377 # ordering
378 if txt:
379 # project_name containing search string 'txt' will be given higher precedence
380 q = q.orderby(ifelse(Locate(txt, proj.project_name) > 0, Locate(txt, proj.project_name), 99999))
381 q = q.orderby(proj.idx, order=Order.desc).orderby(proj.name)
382
ruthra kumar4eefb442024-01-16 13:38:53 +0530383 if page_len:
384 q = q.limit(page_len)
ruthra kumarbfe42fd2024-01-16 14:35:06 +0530385
386 if start:
387 q = q.offset(start)
ruthra kumar4eefb442024-01-16 13:38:53 +0530388 return q.run()
Anand Doshibd67e872014-04-11 16:51:27 +0530389
tundebabzyf6d738b2017-09-18 12:40:09 +0100390
Chinmay D. Paiaa121092020-07-01 21:14:32 +0530391@frappe.whitelist()
Suraj Shetty1923ef02020-08-05 19:42:25 +0530392@frappe.validate_and_sanitize_search_inputs
Nabin Hait1e2d7b32017-05-17 13:52:21 +0530393def get_delivery_notes_to_be_billed(doctype, txt, searchfield, start, page_len, filters, as_dict):
Sagar Vora9baa2222022-08-03 05:42:30 +0000394 doctype = "Delivery Note"
395 fields = get_fields(doctype, ["name", "customer", "posting_date"])
Himanshud94a38e2020-05-18 14:26:26 +0530396
Ankush Menat494bd9e2022-03-28 18:52:46 +0530397 return frappe.db.sql(
398 """
Himanshud94a38e2020-05-18 14:26:26 +0530399 select %(fields)s
Anand Doshibd67e872014-04-11 16:51:27 +0530400 from `tabDelivery Note`
401 where `tabDelivery Note`.`%(key)s` like %(txt)s and
tundebabzyf6d738b2017-09-18 12:40:09 +0100402 `tabDelivery Note`.docstatus = 1
Conor74a782d2022-06-17 06:31:27 -0500403 and status not in ('Stopped', 'Closed') %(fcond)s
tundebabzyf6d738b2017-09-18 12:40:09 +0100404 and (
405 (`tabDelivery Note`.is_return = 0 and `tabDelivery Note`.per_billed < 100)
Deepesh Garge2dc1022021-04-14 11:21:11 +0530406 or (`tabDelivery Note`.grand_total = 0 and `tabDelivery Note`.per_billed < 100)
tundebabzyf6d738b2017-09-18 12:40:09 +0100407 or (
408 `tabDelivery Note`.is_return = 1
409 and return_against in (select name from `tabDelivery Note` where per_billed < 100)
410 )
411 )
Conor00ef4992022-06-14 00:19:07 -0500412 %(mcond)s order by `tabDelivery Note`.`%(key)s` asc limit %(page_len)s offset %(start)s
Ankush Menat494bd9e2022-03-28 18:52:46 +0530413 """
414 % {
415 "fields": ", ".join(["`tabDelivery Note`.{0}".format(f) for f in fields]),
416 "key": searchfield,
417 "fcond": get_filters_cond(doctype, filters, []),
418 "mcond": get_match_cond(doctype),
419 "start": start,
420 "page_len": page_len,
421 "txt": "%(txt)s",
422 },
423 {"txt": ("%%%s%%" % txt)},
424 as_dict=as_dict,
425 )
tundebabzyf6d738b2017-09-18 12:40:09 +0100426
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530427
Chinmay D. Paiaa121092020-07-01 21:14:32 +0530428@frappe.whitelist()
Suraj Shetty1923ef02020-08-05 19:42:25 +0530429@frappe.validate_and_sanitize_search_inputs
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530430def get_batch_no(doctype, txt, searchfield, start, page_len, filters):
Sagar Vora9baa2222022-08-03 05:42:30 +0000431 doctype = "Batch"
Sagar Vora9baa2222022-08-03 05:42:30 +0000432 meta = frappe.get_meta(doctype, cached=True)
Deepesh Garga0d192e2020-09-22 13:54:07 +0530433 searchfields = meta.get_search_fields()
434
Rohit Waghchaure114f2b42024-01-14 23:23:55 +0530435 batches = get_batches_from_stock_ledger_entries(searchfields, txt, filters, start, page_len)
436 batches.extend(
437 get_batches_from_serial_and_batch_bundle(searchfields, txt, filters, start, page_len)
Rohit Waghchaureacd12c52023-06-04 16:09:01 +0530438 )
Deepesh Garga0d192e2020-09-22 13:54:07 +0530439
Rohit Waghchaure114f2b42024-01-14 23:23:55 +0530440 filtered_batches = get_filterd_batches(batches)
Deepesh Garga0d192e2020-09-22 13:54:07 +0530441
rohitwaghchaurecef62912024-03-06 19:43:36 +0530442 if filters.get("is_inward"):
443 filtered_batches.extend(get_empty_batches(filters))
444
Rohit Waghchaure114f2b42024-01-14 23:23:55 +0530445 return filtered_batches
Rohit Waghchaureacd12c52023-06-04 16:09:01 +0530446
447
rohitwaghchaurecef62912024-03-06 19:43:36 +0530448def get_empty_batches(filters):
449 return frappe.get_all(
450 "Batch",
451 fields=["name", "batch_qty"],
452 filters={"item": filters.get("item_code"), "batch_qty": 0.0},
453 as_list=1,
454 )
455
456
Rohit Waghchaureacd12c52023-06-04 16:09:01 +0530457def get_filterd_batches(data):
458 batches = OrderedDict()
459
460 for batch_data in data:
461 if batch_data[0] not in batches:
462 batches[batch_data[0]] = list(batch_data)
463 else:
464 batches[batch_data[0]][1] += batch_data[1]
465
466 filterd_batch = []
467 for batch, batch_data in batches.items():
468 if batch_data[1] > 0:
469 filterd_batch.append(tuple(batch_data))
470
471 return filterd_batch
472
473
Rohit Waghchaure114f2b42024-01-14 23:23:55 +0530474def get_batches_from_stock_ledger_entries(searchfields, txt, filters, start=0, page_len=100):
Rohit Waghchaureacd12c52023-06-04 16:09:01 +0530475 stock_ledger_entry = frappe.qb.DocType("Stock Ledger Entry")
476 batch_table = frappe.qb.DocType("Batch")
477
478 expiry_date = filters.get("posting_date") or today()
479
480 query = (
481 frappe.qb.from_(stock_ledger_entry)
482 .inner_join(batch_table)
483 .on(batch_table.name == stock_ledger_entry.batch_no)
484 .select(
485 stock_ledger_entry.batch_no,
486 Sum(stock_ledger_entry.actual_qty).as_("qty"),
Ankush Menat494bd9e2022-03-28 18:52:46 +0530487 )
Rohit Waghchaureacd12c52023-06-04 16:09:01 +0530488 .where(((batch_table.expiry_date >= expiry_date) | (batch_table.expiry_date.isnull())))
489 .where(stock_ledger_entry.is_cancelled == 0)
490 .where(
491 (stock_ledger_entry.item_code == filters.get("item_code"))
492 & (batch_table.disabled == 0)
493 & (stock_ledger_entry.batch_no.isnotnull())
Ankush Menat494bd9e2022-03-28 18:52:46 +0530494 )
Rohit Waghchaureacd12c52023-06-04 16:09:01 +0530495 .groupby(stock_ledger_entry.batch_no, stock_ledger_entry.warehouse)
Rohit Waghchaure114f2b42024-01-14 23:23:55 +0530496 .offset(start)
497 .limit(page_len)
Rohit Waghchaureacd12c52023-06-04 16:09:01 +0530498 )
499
500 query = query.select(
501 Concat("MFG-", batch_table.manufacturing_date).as_("manufacturing_date"),
502 Concat("EXP-", batch_table.expiry_date).as_("expiry_date"),
503 )
504
505 if filters.get("warehouse"):
506 query = query.where(stock_ledger_entry.warehouse == filters.get("warehouse"))
507
508 for field in searchfields:
509 query = query.select(batch_table[field])
510
511 if txt:
Rohit Waghchaure114f2b42024-01-14 23:23:55 +0530512 txt_condition = batch_table.name.like("%{0}%".format(txt))
Rohit Waghchaureacd12c52023-06-04 16:09:01 +0530513 for field in searchfields + ["name"]:
Rohit Waghchaure114f2b42024-01-14 23:23:55 +0530514 txt_condition |= batch_table[field].like("%{0}%".format(txt))
Rohit Waghchaureacd12c52023-06-04 16:09:01 +0530515
516 query = query.where(txt_condition)
517
Rohit Waghchaure114f2b42024-01-14 23:23:55 +0530518 return query.run(as_list=1) or []
Rohit Waghchaureacd12c52023-06-04 16:09:01 +0530519
520
Rohit Waghchaure114f2b42024-01-14 23:23:55 +0530521def get_batches_from_serial_and_batch_bundle(searchfields, txt, filters, start=0, page_len=100):
Rohit Waghchaureacd12c52023-06-04 16:09:01 +0530522 bundle = frappe.qb.DocType("Serial and Batch Entry")
523 stock_ledger_entry = frappe.qb.DocType("Stock Ledger Entry")
524 batch_table = frappe.qb.DocType("Batch")
525
526 expiry_date = filters.get("posting_date") or today()
527
528 bundle_query = (
529 frappe.qb.from_(bundle)
530 .inner_join(stock_ledger_entry)
531 .on(bundle.parent == stock_ledger_entry.serial_and_batch_bundle)
532 .inner_join(batch_table)
533 .on(batch_table.name == bundle.batch_no)
534 .select(
535 bundle.batch_no,
536 Sum(bundle.qty).as_("qty"),
537 )
538 .where(((batch_table.expiry_date >= expiry_date) | (batch_table.expiry_date.isnull())))
539 .where(stock_ledger_entry.is_cancelled == 0)
540 .where(
541 (stock_ledger_entry.item_code == filters.get("item_code"))
542 & (batch_table.disabled == 0)
543 & (stock_ledger_entry.serial_and_batch_bundle.isnotnull())
544 )
545 .groupby(bundle.batch_no, bundle.warehouse)
Rohit Waghchaure114f2b42024-01-14 23:23:55 +0530546 .offset(start)
547 .limit(page_len)
Rohit Waghchaureacd12c52023-06-04 16:09:01 +0530548 )
549
550 bundle_query = bundle_query.select(
551 Concat("MFG-", batch_table.manufacturing_date),
552 Concat("EXP-", batch_table.expiry_date),
553 )
554
555 if filters.get("warehouse"):
556 bundle_query = bundle_query.where(stock_ledger_entry.warehouse == filters.get("warehouse"))
557
558 for field in searchfields:
559 bundle_query = bundle_query.select(batch_table[field])
560
561 if txt:
Rohit Waghchaure114f2b42024-01-14 23:23:55 +0530562 txt_condition = batch_table.name.like("%{0}%".format(txt))
Rohit Waghchaureacd12c52023-06-04 16:09:01 +0530563 for field in searchfields + ["name"]:
Rohit Waghchaure114f2b42024-01-14 23:23:55 +0530564 txt_condition |= batch_table[field].like("%{0}%".format(txt))
Rohit Waghchaureacd12c52023-06-04 16:09:01 +0530565
566 bundle_query = bundle_query.where(txt_condition)
567
Rohit Waghchaure114f2b42024-01-14 23:23:55 +0530568 return bundle_query.run(as_list=1)
Nabin Haitea4aa042014-05-28 12:56:28 +0530569
Himanshud94a38e2020-05-18 14:26:26 +0530570
Chinmay D. Paiaa121092020-07-01 21:14:32 +0530571@frappe.whitelist()
Suraj Shetty1923ef02020-08-05 19:42:25 +0530572@frappe.validate_and_sanitize_search_inputs
Nabin Haitea4aa042014-05-28 12:56:28 +0530573def get_account_list(doctype, txt, searchfield, start, page_len, filters):
Sagar Vora9baa2222022-08-03 05:42:30 +0000574 doctype = "Account"
Nabin Haite1b2b3e2014-06-14 15:26:10 +0530575 filter_list = []
Nabin Haitea4aa042014-05-28 12:56:28 +0530576
Nabin Haite1b2b3e2014-06-14 15:26:10 +0530577 if isinstance(filters, dict):
578 for key, val in filters.items():
579 if isinstance(val, (list, tuple)):
580 filter_list.append([doctype, key, val[0], val[1]])
581 else:
582 filter_list.append([doctype, key, "=", val])
bhupeshg2e2e973f2015-04-14 22:15:24 +0530583 elif isinstance(filters, list):
584 filter_list.extend(filters)
Nabin Haite1b2b3e2014-06-14 15:26:10 +0530585
Rushabh Mehta38c6b522015-04-23 13:14:17 +0530586 if "is_group" not in [d[1] for d in filter_list]:
587 filter_list.append(["Account", "is_group", "=", "0"])
Nabin Haite1b2b3e2014-06-14 15:26:10 +0530588
589 if searchfield and txt:
590 filter_list.append([doctype, searchfield, "like", "%%%s%%" % txt])
591
Ankush Menat494bd9e2022-03-28 18:52:46 +0530592 return frappe.desk.reportview.execute(
Sagar Vora9baa2222022-08-03 05:42:30 +0000593 doctype,
Ankush Menat494bd9e2022-03-28 18:52:46 +0530594 filters=filter_list,
595 fields=["name", "parent_account"],
596 limit_start=start,
597 limit_page_length=page_len,
598 as_list=True,
599 )
600
Anand Doshifaefeaa2014-06-24 18:53:04 +0530601
Chinmay D. Paiaa121092020-07-01 21:14:32 +0530602@frappe.whitelist()
Suraj Shetty1923ef02020-08-05 19:42:25 +0530603@frappe.validate_and_sanitize_search_inputs
Marica299e2172020-04-28 13:00:04 +0530604def get_blanket_orders(doctype, txt, searchfield, start, page_len, filters):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530605 return frappe.db.sql(
606 """select distinct bo.name, bo.blanket_order_type, bo.to_date
Marica299e2172020-04-28 13:00:04 +0530607 from `tabBlanket Order` bo, `tabBlanket Order Item` boi
608 where
609 boi.parent = bo.name
610 and boi.item_code = {item_code}
611 and bo.blanket_order_type = '{blanket_order_type}'
612 and bo.company = {company}
Ankush Menat494bd9e2022-03-28 18:52:46 +0530613 and bo.docstatus = 1""".format(
614 item_code=frappe.db.escape(filters.get("item")),
615 blanket_order_type=filters.get("blanket_order_type"),
616 company=frappe.db.escape(filters.get("company")),
617 )
618 )
Nabin Haitafd14f62015-10-19 11:55:28 +0530619
Himanshud94a38e2020-05-18 14:26:26 +0530620
Nabin Haitafd14f62015-10-19 11:55:28 +0530621@frappe.whitelist()
Suraj Shetty1923ef02020-08-05 19:42:25 +0530622@frappe.validate_and_sanitize_search_inputs
Nabin Haitafd14f62015-10-19 11:55:28 +0530623def get_income_account(doctype, txt, searchfield, start, page_len, filters):
624 from erpnext.controllers.queries import get_match_cond
625
626 # income account can be any Credit account,
627 # but can also be a Asset account with account_type='Income Account' in special circumstances.
628 # Hence the first condition is an "OR"
Ankush Menat494bd9e2022-03-28 18:52:46 +0530629 if not filters:
630 filters = {}
Nabin Haitafd14f62015-10-19 11:55:28 +0530631
Sagar Vora9baa2222022-08-03 05:42:30 +0000632 doctype = "Account"
Anand Doshi21e09a22015-10-29 12:21:41 +0530633 condition = ""
Nabin Haitafd14f62015-10-19 11:55:28 +0530634 if filters.get("company"):
635 condition += "and tabAccount.company = %(company)s"
Anand Doshi21e09a22015-10-29 12:21:41 +0530636
ruthra kumar6e3e0942023-11-02 17:19:06 +0530637 condition += f"and tabAccount.disabled = {filters.get('disabled', 0)}"
638
Ankush Menat494bd9e2022-03-28 18:52:46 +0530639 return frappe.db.sql(
640 """select tabAccount.name from `tabAccount`
Nabin Haitafd14f62015-10-19 11:55:28 +0530641 where (tabAccount.report_type = "Profit and Loss"
642 or tabAccount.account_type in ("Income Account", "Temporary"))
643 and tabAccount.is_group=0
644 and tabAccount.`{key}` LIKE %(txt)s
Rushabh Mehta3574b372016-03-11 14:33:04 +0530645 {condition} {match_condition}
Ankush Menat494bd9e2022-03-28 18:52:46 +0530646 order by idx desc, name""".format(
647 condition=condition, match_condition=get_match_cond(doctype), key=searchfield
648 ),
649 {"txt": "%" + txt + "%", "company": filters.get("company", "")},
650 )
651
Nabin Hait3a15c922016-03-04 12:30:46 +0530652
Deepesh Garg96e874b2020-11-15 22:43:01 +0530653@frappe.whitelist()
654@frappe.validate_and_sanitize_search_inputs
Ankush Menat6de71eb2023-04-25 18:33:31 +0530655def get_filtered_dimensions(
656 doctype, txt, searchfield, start, page_len, filters, reference_doctype=None
657):
Chillar Anand915b3432021-09-02 16:44:59 +0530658 from erpnext.accounts.doctype.accounting_dimension_filter.accounting_dimension_filter import (
659 get_dimension_filter_map,
660 )
Ankush Menat494bd9e2022-03-28 18:52:46 +0530661
Deepesh Garg96e874b2020-11-15 22:43:01 +0530662 dimension_filters = get_dimension_filter_map()
Ankush Menat494bd9e2022-03-28 18:52:46 +0530663 dimension_filters = dimension_filters.get((filters.get("dimension"), filters.get("account")))
Deepesh Garg6c17b842020-11-25 13:42:16 +0530664 query_filters = []
mergify[bot]071118f2021-11-30 13:15:20 +0000665 or_filters = []
Ankush Menat494bd9e2022-03-28 18:52:46 +0530666 fields = ["name"]
mergify[bot]071118f2021-11-30 13:15:20 +0000667
668 searchfields = frappe.get_meta(doctype).get_search_fields()
Deepesh Garg96e874b2020-11-15 22:43:01 +0530669
670 meta = frappe.get_meta(doctype)
Deepesh Garg96e874b2020-11-15 22:43:01 +0530671 if meta.is_tree:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530672 query_filters.append(["is_group", "=", 0])
Deepesh Garg96e874b2020-11-15 22:43:01 +0530673
Ankush Menat494bd9e2022-03-28 18:52:46 +0530674 if meta.has_field("disabled"):
675 query_filters.append(["disabled", "!=", 1])
Subin Tom333e44e2021-08-18 16:17:54 +0530676
Ankush Menat494bd9e2022-03-28 18:52:46 +0530677 if meta.has_field("company"):
678 query_filters.append(["company", "=", filters.get("company")])
Deepesh Garg6c17b842020-11-25 13:42:16 +0530679
mergify[bot]071118f2021-11-30 13:15:20 +0000680 for field in searchfields:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530681 or_filters.append([field, "LIKE", "%%%s%%" % txt])
mergify[bot]071118f2021-11-30 13:15:20 +0000682 fields.append(field)
Deepesh Garg96e874b2020-11-15 22:43:01 +0530683
684 if dimension_filters:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530685 if dimension_filters["allow_or_restrict"] == "Allow":
686 query_selector = "in"
Deepesh Garg96e874b2020-11-15 22:43:01 +0530687 else:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530688 query_selector = "not in"
Deepesh Garg96e874b2020-11-15 22:43:01 +0530689
Ankush Menat494bd9e2022-03-28 18:52:46 +0530690 if len(dimension_filters["allowed_dimensions"]) == 1:
691 dimensions = tuple(dimension_filters["allowed_dimensions"] * 2)
Deepesh Garg96e874b2020-11-15 22:43:01 +0530692 else:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530693 dimensions = tuple(dimension_filters["allowed_dimensions"])
Deepesh Garg96e874b2020-11-15 22:43:01 +0530694
Ankush Menat494bd9e2022-03-28 18:52:46 +0530695 query_filters.append(["name", query_selector, dimensions])
Deepesh Garg96e874b2020-11-15 22:43:01 +0530696
Ankush Menat494bd9e2022-03-28 18:52:46 +0530697 output = frappe.get_list(
Ankush Menat6de71eb2023-04-25 18:33:31 +0530698 doctype,
699 fields=fields,
700 filters=query_filters,
701 or_filters=or_filters,
702 as_list=1,
703 reference_doctype=reference_doctype,
Ankush Menat494bd9e2022-03-28 18:52:46 +0530704 )
Deepesh Garg6c17b842020-11-25 13:42:16 +0530705
mergify[bot]071118f2021-11-30 13:15:20 +0000706 return [tuple(d) for d in set(output)]
Nabin Hait3a15c922016-03-04 12:30:46 +0530707
Ankush Menat494bd9e2022-03-28 18:52:46 +0530708
Nabin Hait3a15c922016-03-04 12:30:46 +0530709@frappe.whitelist()
Suraj Shetty1923ef02020-08-05 19:42:25 +0530710@frappe.validate_and_sanitize_search_inputs
Nabin Hait3a15c922016-03-04 12:30:46 +0530711def get_expense_account(doctype, txt, searchfield, start, page_len, filters):
712 from erpnext.controllers.queries import get_match_cond
Rushabh Mehta203cc962016-04-07 15:25:43 +0530713
Ankush Menat494bd9e2022-03-28 18:52:46 +0530714 if not filters:
715 filters = {}
Nabin Hait3a15c922016-03-04 12:30:46 +0530716
Sagar Vora9baa2222022-08-03 05:42:30 +0000717 doctype = "Account"
Nabin Hait3a15c922016-03-04 12:30:46 +0530718 condition = ""
719 if filters.get("company"):
720 condition += "and tabAccount.company = %(company)s"
Rushabh Mehta203cc962016-04-07 15:25:43 +0530721
Ankush Menat494bd9e2022-03-28 18:52:46 +0530722 return frappe.db.sql(
723 """select tabAccount.name from `tabAccount`
Nabin Hait3a15c922016-03-04 12:30:46 +0530724 where (tabAccount.report_type = "Profit and Loss"
Mangesh-Khairnar5619db22019-08-21 14:49:24 +0530725 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 +0530726 and tabAccount.is_group=0
727 and tabAccount.docstatus!=2
728 and tabAccount.{key} LIKE %(txt)s
Ankush Menat494bd9e2022-03-28 18:52:46 +0530729 {condition} {match_condition}""".format(
730 condition=condition, key=searchfield, match_condition=get_match_cond(doctype)
731 ),
732 {"company": filters.get("company", ""), "txt": "%" + txt + "%"},
733 )
suyashphadtare049a88c2017-01-12 17:49:37 +0530734
735
736@frappe.whitelist()
Suraj Shetty1923ef02020-08-05 19:42:25 +0530737@frappe.validate_and_sanitize_search_inputs
suyashphadtare049a88c2017-01-12 17:49:37 +0530738def warehouse_query(doctype, txt, searchfield, start, page_len, filters):
739 # Should be used when item code is passed in filters.
Sagar Vora9baa2222022-08-03 05:42:30 +0000740 doctype = "Warehouse"
suyashphadtare750a0672017-01-18 15:35:01 +0530741 conditions, bin_conditions = [], []
742 filter_dict = get_doctype_wise_filters(filters)
743
s-aga-ree14faa2024-02-05 21:53:25 +0530744 warehouse_field = "name"
745 meta = frappe.get_meta("Warehouse")
746 if meta.get("show_title_field_in_link") and meta.get("title_field"):
747 searchfield = meta.get("title_field")
748 warehouse_field = meta.get("title_field")
749
750 query = """select `tabWarehouse`.`{warehouse_field}`,
Conor74a782d2022-06-17 06:31:27 -0500751 CONCAT_WS(' : ', 'Actual Qty', ifnull(round(`tabBin`.actual_qty, 2), 0 )) actual_qty
Diksha Jadhav182ee5e2020-08-18 00:35:04 +0530752 from `tabWarehouse` left join `tabBin`
753 on `tabBin`.warehouse = `tabWarehouse`.name {bin_conditions}
suyashphadtare34ab1362017-01-31 15:14:44 +0530754 where
Diksha Jadhav182ee5e2020-08-18 00:35:04 +0530755 `tabWarehouse`.`{key}` like {txt}
suyashphadtare34ab1362017-01-31 15:14:44 +0530756 {fcond} {mcond}
s-aga-ree14faa2024-02-05 21:53:25 +0530757 order by ifnull(`tabBin`.actual_qty, 0) desc, `tabWarehouse`.`{warehouse_field}` asc
suyashphadtare34ab1362017-01-31 15:14:44 +0530758 limit
Conor00ef4992022-06-14 00:19:07 -0500759 {page_len} offset {start}
suyashphadtare34ab1362017-01-31 15:14:44 +0530760 """.format(
s-aga-ree14faa2024-02-05 21:53:25 +0530761 warehouse_field=warehouse_field,
Ankush Menat494bd9e2022-03-28 18:52:46 +0530762 bin_conditions=get_filters_cond(
763 doctype, filter_dict.get("Bin"), bin_conditions, ignore_permissions=True
764 ),
765 key=searchfield,
766 fcond=get_filters_cond(doctype, filter_dict.get("Warehouse"), conditions),
767 mcond=get_match_cond(doctype),
768 start=start,
769 page_len=page_len,
770 txt=frappe.db.escape("%{0}%".format(txt)),
771 )
Rushabh Mehta7e506af2017-08-24 15:23:33 +0530772
773 return frappe.db.sql(query)
suyashphadtare750a0672017-01-18 15:35:01 +0530774
775
776def get_doctype_wise_filters(filters):
777 # Helper function to seperate filters doctype_wise
778 filter_dict = defaultdict(list)
779 for row in filters:
780 filter_dict[row[0]].append(row)
781 return filter_dict
tundebabzy2a4fefc2017-11-29 06:23:09 +0100782
783
784@frappe.whitelist()
Suraj Shetty1923ef02020-08-05 19:42:25 +0530785@frappe.validate_and_sanitize_search_inputs
tundebabzy2a4fefc2017-11-29 06:23:09 +0100786def get_batch_numbers(doctype, txt, searchfield, start, page_len, filters):
rohitwaghchaure9fbed562018-01-12 16:22:33 +0530787 query = """select batch_id from `tabBatch`
Doridel Cahanap59e4c322018-08-06 17:15:18 +0800788 where disabled = 0
Conorb8f728a2022-06-15 01:37:33 -0500789 and (expiry_date >= CURRENT_DATE or expiry_date IS NULL)
Ankush Menat494bd9e2022-03-28 18:52:46 +0530790 and name like {txt}""".format(
791 txt=frappe.db.escape("%{0}%".format(txt))
792 )
tundebabzy2a4fefc2017-11-29 06:23:09 +0100793
Ankush Menat494bd9e2022-03-28 18:52:46 +0530794 if filters and filters.get("item"):
795 query += " and item = {item}".format(item=frappe.db.escape(filters.get("item")))
tundebabzy2a4fefc2017-11-29 06:23:09 +0100796
Sachin Mane64f48db2018-01-08 17:57:32 +0530797 return frappe.db.sql(query, filters)
Rohit Waghchaure3cf24362019-06-02 16:03:05 +0530798
Himanshud94a38e2020-05-18 14:26:26 +0530799
Rohit Waghchaure3cf24362019-06-02 16:03:05 +0530800@frappe.whitelist()
Suraj Shetty1923ef02020-08-05 19:42:25 +0530801@frappe.validate_and_sanitize_search_inputs
Rohit Waghchaure3cf24362019-06-02 16:03:05 +0530802def item_manufacturer_query(doctype, txt, searchfield, start, page_len, filters):
Maricabac4b932019-09-16 19:44:28 +0530803 item_filters = [
Ankush Menat494bd9e2022-03-28 18:52:46 +0530804 ["manufacturer", "like", "%" + txt + "%"],
805 ["item_code", "=", filters.get("item_code")],
Maricabac4b932019-09-16 19:44:28 +0530806 ]
Rohit Waghchaure3cf24362019-06-02 16:03:05 +0530807
Maricabac4b932019-09-16 19:44:28 +0530808 item_manufacturers = frappe.get_all(
809 "Item Manufacturer",
810 fields=["manufacturer", "manufacturer_part_no"],
811 filters=item_filters,
Rohit Waghchaure3cf24362019-06-02 16:03:05 +0530812 limit_start=start,
813 limit_page_length=page_len,
Ankush Menat494bd9e2022-03-28 18:52:46 +0530814 as_list=1,
Rohit Waghchaure3cf24362019-06-02 16:03:05 +0530815 )
Maricabac4b932019-09-16 19:44:28 +0530816 return item_manufacturers
Saqibd9956092019-11-18 11:46:55 +0530817
Himanshud94a38e2020-05-18 14:26:26 +0530818
Saqibd9956092019-11-18 11:46:55 +0530819@frappe.whitelist()
Suraj Shetty1923ef02020-08-05 19:42:25 +0530820@frappe.validate_and_sanitize_search_inputs
Saqibd9956092019-11-18 11:46:55 +0530821def get_purchase_receipts(doctype, txt, searchfield, start, page_len, filters):
822 query = """
Deepesh Gargef0d26c2020-01-06 15:34:15 +0530823 select pr.name
Saqibd9956092019-11-18 11:46:55 +0530824 from `tabPurchase Receipt` pr, `tabPurchase Receipt Item` pritem
825 where pr.docstatus = 1 and pritem.parent = pr.name
Ankush Menat494bd9e2022-03-28 18:52:46 +0530826 and pr.name like {txt}""".format(
827 txt=frappe.db.escape("%{0}%".format(txt))
828 )
Saqibd9956092019-11-18 11:46:55 +0530829
Ankush Menat494bd9e2022-03-28 18:52:46 +0530830 if filters and filters.get("item_code"):
831 query += " and pritem.item_code = {item_code}".format(
832 item_code=frappe.db.escape(filters.get("item_code"))
833 )
Saqibd9956092019-11-18 11:46:55 +0530834
835 return frappe.db.sql(query, filters)
836
Himanshud94a38e2020-05-18 14:26:26 +0530837
Saqibd9956092019-11-18 11:46:55 +0530838@frappe.whitelist()
Suraj Shetty1923ef02020-08-05 19:42:25 +0530839@frappe.validate_and_sanitize_search_inputs
Saqibd9956092019-11-18 11:46:55 +0530840def get_purchase_invoices(doctype, txt, searchfield, start, page_len, filters):
841 query = """
Deepesh Gargef0d26c2020-01-06 15:34:15 +0530842 select pi.name
Saqibd9956092019-11-18 11:46:55 +0530843 from `tabPurchase Invoice` pi, `tabPurchase Invoice Item` piitem
844 where pi.docstatus = 1 and piitem.parent = pi.name
Ankush Menat494bd9e2022-03-28 18:52:46 +0530845 and pi.name like {txt}""".format(
846 txt=frappe.db.escape("%{0}%".format(txt))
847 )
Saqibd9956092019-11-18 11:46:55 +0530848
Ankush Menat494bd9e2022-03-28 18:52:46 +0530849 if filters and filters.get("item_code"):
850 query += " and piitem.item_code = {item_code}".format(
851 item_code=frappe.db.escape(filters.get("item_code"))
852 )
Saqibd9956092019-11-18 11:46:55 +0530853
854 return frappe.db.sql(query, filters)
Deepesh Gargef0d26c2020-01-06 15:34:15 +0530855
Himanshud94a38e2020-05-18 14:26:26 +0530856
Deepesh Gargef0d26c2020-01-06 15:34:15 +0530857@frappe.whitelist()
Suraj Shetty1923ef02020-08-05 19:42:25 +0530858@frappe.validate_and_sanitize_search_inputs
mergify[bot]b4db5e92023-07-18 17:40:49 +0530859def get_doctypes_for_closing(doctype, txt, searchfield, start, page_len, filters):
860 doctypes = frappe.get_hooks("period_closing_doctypes")
861 if txt:
862 doctypes = [d for d in doctypes if txt.lower() in d.lower()]
863 return [(d,) for d in set(doctypes)]
864
865
866@frappe.whitelist()
867@frappe.validate_and_sanitize_search_inputs
Deepesh Gargef0d26c2020-01-06 15:34:15 +0530868def get_tax_template(doctype, txt, searchfield, start, page_len, filters):
869
Ankush Menat494bd9e2022-03-28 18:52:46 +0530870 item_doc = frappe.get_cached_doc("Item", filters.get("item_code"))
871 item_group = filters.get("item_group")
872 company = filters.get("company")
Deepesh Gargef0d26c2020-01-06 15:34:15 +0530873 taxes = item_doc.taxes or []
874
875 while item_group:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530876 item_group_doc = frappe.get_cached_doc("Item Group", item_group)
Deepesh Gargef0d26c2020-01-06 15:34:15 +0530877 taxes += item_group_doc.taxes or []
878 item_group = item_group_doc.parent_item_group
879
880 if not taxes:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530881 return frappe.get_all(
882 "Item Tax Template", filters={"disabled": 0, "company": company}, as_list=True
883 )
Deepesh Gargef0d26c2020-01-06 15:34:15 +0530884 else:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530885 valid_from = filters.get("valid_from")
Marica0fcb05a2020-08-10 14:48:13 +0530886 valid_from = valid_from[1] if isinstance(valid_from, list) else valid_from
887
Deepesh Gargef0d26c2020-01-06 15:34:15 +0530888 args = {
Ankush Menat494bd9e2022-03-28 18:52:46 +0530889 "item_code": filters.get("item_code"),
890 "posting_date": valid_from,
891 "tax_category": filters.get("tax_category"),
892 "company": company,
Deepesh Gargef0d26c2020-01-06 15:34:15 +0530893 }
894
895 taxes = _get_item_tax_template(args, taxes, for_validate=True)
896 return [(d,) for d in set(taxes)]
Himanshud94a38e2020-05-18 14:26:26 +0530897
898
Ankush Menat7eac4a22021-04-19 10:33:39 +0530899def get_fields(doctype, fields=None):
900 if fields is None:
901 fields = []
Himanshud94a38e2020-05-18 14:26:26 +0530902 meta = frappe.get_meta(doctype)
903 fields.extend(meta.get_search_fields())
904
barredterraeb9ee3f2023-12-05 11:22:55 +0100905 if meta.title_field and meta.title_field.strip() not in fields:
Himanshud94a38e2020-05-18 14:26:26 +0530906 fields.insert(1, meta.title_field.strip())
907
908 return unique(fields)
ruthra kumar662ccd42023-07-22 11:18:11 +0530909
910
911@frappe.whitelist()
912@frappe.validate_and_sanitize_search_inputs
913def get_payment_terms_for_references(doctype, txt, searchfield, start, page_len, filters) -> list:
914 terms = []
915 if filters:
916 terms = frappe.db.get_all(
917 "Payment Schedule",
918 filters={"parent": filters.get("reference")},
919 fields=["payment_term"],
920 limit=page_len,
921 as_list=1,
922 )
923 return terms
s-aga-r00261092023-12-04 18:00:06 +0530924
925
926@frappe.whitelist()
927@frappe.validate_and_sanitize_search_inputs
928def get_filtered_child_rows(doctype, txt, searchfield, start, page_len, filters) -> list:
929 table = frappe.qb.DocType(doctype)
930 query = (
931 frappe.qb.from_(table)
932 .select(
933 table.name,
934 Concat("#", table.idx, ", ", table.item_code),
935 )
936 .orderby(table.idx)
937 .offset(start)
938 .limit(page_len)
939 )
940
941 if filters:
942 for field, value in filters.items():
943 query = query.where(table[field] == value)
944
945 if txt:
946 txt += "%"
947 query = query.where(
948 ((table.idx.like(txt.replace("#", ""))) | (table.item_code.like(txt))) | (table.name.like(txt))
949 )
950
951 return query.run(as_dict=False)