fix: Unknown column 'tabBatch.batch_no' in 'where clause' (#41418)
fix: unknown column 'tabBatch.batch_no' in 'where clause'
(cherry picked from commit 6bd13d7452)
Co-authored-by: rohitwaghchaure <rohitw1991@gmail.com>
This commit is contained in:
@@ -220,7 +220,7 @@ def get_serial_nos(doctype, txt, searchfield, start, page_len, filters):
|
|||||||
def get_batch_nos(doctype, txt, searchfield, start, page_len, filters):
|
def get_batch_nos(doctype, txt, searchfield, start, page_len, filters):
|
||||||
query_filters = {}
|
query_filters = {}
|
||||||
|
|
||||||
if txt:
|
if filters.get("voucher_no") and txt:
|
||||||
query_filters["batch_no"] = ["like", f"%{txt}%"]
|
query_filters["batch_no"] = ["like", f"%{txt}%"]
|
||||||
|
|
||||||
if filters.get("voucher_no"):
|
if filters.get("voucher_no"):
|
||||||
@@ -239,5 +239,8 @@ def get_batch_nos(doctype, txt, searchfield, start, page_len, filters):
|
|||||||
)
|
)
|
||||||
|
|
||||||
else:
|
else:
|
||||||
|
if txt:
|
||||||
|
query_filters["name"] = ["like", f"%{txt}%"]
|
||||||
|
|
||||||
query_filters["item"] = filters.get("item_code")
|
query_filters["item"] = filters.get("item_code")
|
||||||
return frappe.get_all("Batch", filters=query_filters, as_list=True)
|
return frappe.get_all("Batch", filters=query_filters, as_list=True)
|
||||||
|
|||||||
Reference in New Issue
Block a user