mirror of
https://github.com/frappe/erpnext.git
synced 2026-02-18 09:05:00 +00:00
Merge pull request #21911 from rohitwaghchaure/fixed-comparison-operator
fix: comparison operator
This commit is contained in:
@@ -180,7 +180,7 @@ def get_child_warehouses(warehouse):
|
||||
lft, rgt = frappe.get_cached_value("Warehouse", warehouse, ["lft", "rgt"])
|
||||
|
||||
return frappe.db.sql_list("""select name from `tabWarehouse`
|
||||
where lft >= %s and rgt =< %s""", (lft, rgt))
|
||||
where lft >= %s and rgt <= %s""", (lft, rgt))
|
||||
|
||||
def get_warehouses_based_on_account(account, company=None):
|
||||
warehouses = []
|
||||
|
||||
Reference in New Issue
Block a user