mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-01 11:19:09 +00:00
chore: resolve conflicts
This commit is contained in:
@@ -254,11 +254,7 @@ class SubcontractingController(StockController):
|
|||||||
):
|
):
|
||||||
for row in frappe.get_all(
|
for row in frappe.get_all(
|
||||||
f"{self.subcontract_data.order_doctype} Item",
|
f"{self.subcontract_data.order_doctype} Item",
|
||||||
<<<<<<< HEAD
|
fields=["item_code", "(qty - received_qty) as qty", "parent", "bom"],
|
||||||
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)
|
|
||||||
filters={"docstatus": 1, "parent": ("in", self.subcontract_orders)},
|
filters={"docstatus": 1, "parent": ("in", self.subcontract_orders)},
|
||||||
):
|
):
|
||||||
self.qty_to_be_received[(row.item_code, row.parent, row.bom)] += row.qty
|
self.qty_to_be_received[(row.item_code, row.parent, row.bom)] += row.qty
|
||||||
|
|||||||
Reference in New Issue
Block a user