mirror of
https://github.com/frappe/erpnext.git
synced 2026-08-11 21:51:48 +00:00
chore: fix conflicts
This commit is contained in:
@@ -2152,20 +2152,14 @@ def get_reference_serial_and_batch_bundle(child_row):
|
||||
|
||||
|
||||
@frappe.whitelist()
|
||||
<<<<<<< HEAD
|
||||
def add_serial_batch_ledgers(entries, child_row, doc, warehouse, do_not_save=False) -> object:
|
||||
if isinstance(child_row, str):
|
||||
child_row = frappe._dict(parse_json(child_row))
|
||||
=======
|
||||
def add_serial_batch_ledgers(
|
||||
entries: list | str,
|
||||
child_row: PurchaseReceiptItem | dict | str,
|
||||
child_row: dict | str,
|
||||
doc: Document | dict | str,
|
||||
warehouse: str | None = None,
|
||||
do_not_save: bool = False,
|
||||
):
|
||||
child_row = parse_json(child_row)
|
||||
>>>>>>> 8b3caeb578 (fix(stock): pick list serial batch posting date (#56957))
|
||||
|
||||
if isinstance(entries, str):
|
||||
entries = parse_json(entries)
|
||||
|
||||
Reference in New Issue
Block a user