mirror of
https://github.com/frappe/erpnext.git
synced 2026-04-30 03:58:26 +00:00
chore: resolve conflicts
This commit is contained in:
@@ -254,11 +254,7 @@ class SubcontractingController(StockController):
|
||||
):
|
||||
for row in frappe.get_all(
|
||||
f"{self.subcontract_data.order_doctype} Item",
|
||||
<<<<<<< HEAD
|
||||
fields=["item_code", "(qty - received_qty) as qty", "parent", "name"],
|
||||
=======
|
||||
fields=["item_code", {"SUB": ["qty", "received_qty"], "as": "qty"}, "parent", "bom"],
|
||||
>>>>>>> 0d372a62a1 (fix(subcontracting): include item bom in supplied items grouping key)
|
||||
fields=["item_code", "(qty - received_qty) as qty", "parent", "bom"],
|
||||
filters={"docstatus": 1, "parent": ("in", self.subcontract_orders)},
|
||||
):
|
||||
self.qty_to_be_received[(row.item_code, row.parent, row.bom)] += row.qty
|
||||
|
||||
Reference in New Issue
Block a user