mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-07 15:12:51 +00:00
Merge pull request #30102 from deepeshgarg007/pick_list_query
fix: Ambigous column in picklist query
This commit is contained in:
@@ -272,9 +272,9 @@ def get_available_item_locations_for_batched_item(item_code, from_warehouses, re
|
|||||||
and IFNULL(batch.`expiry_date`, '2200-01-01') > %(today)s
|
and IFNULL(batch.`expiry_date`, '2200-01-01') > %(today)s
|
||||||
{warehouse_condition}
|
{warehouse_condition}
|
||||||
GROUP BY
|
GROUP BY
|
||||||
`warehouse`,
|
sle.`warehouse`,
|
||||||
`batch_no`,
|
sle.`batch_no`,
|
||||||
`item_code`
|
sle.`item_code`
|
||||||
HAVING `qty` > 0
|
HAVING `qty` > 0
|
||||||
ORDER BY IFNULL(batch.`expiry_date`, '2200-01-01'), batch.`creation`
|
ORDER BY IFNULL(batch.`expiry_date`, '2200-01-01'), batch.`creation`
|
||||||
""".format(warehouse_condition=warehouse_condition), { #nosec
|
""".format(warehouse_condition=warehouse_condition), { #nosec
|
||||||
|
|||||||
Reference in New Issue
Block a user