Skip to content

Commit

Permalink
fix: intercompany SO throws exception
Browse files Browse the repository at this point in the history
(cherry picked from commit af0a353)
  • Loading branch information
ruthra-kumar authored and mergify[bot] committed Aug 8, 2022
1 parent 3673dea commit a17acfd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions erpnext/accounts/doctype/sales_invoice/sales_invoice.py
Original file line number Diff line number Diff line change
Expand Up @@ -2173,13 +2173,13 @@ def make_inter_company_transaction(doctype, source_name, target_doc=None):
target_detail_field = "sales_invoice_item" if doctype == "Sales Invoice" else "sales_order_item"
source_document_warehouse_field = "target_warehouse"
target_document_warehouse_field = "from_warehouse"
received_items = get_received_items(source_name, target_doctype, target_detail_field)
else:
source_doc = frappe.get_doc(doctype, source_name)
target_doctype = "Sales Invoice" if doctype == "Purchase Invoice" else "Sales Order"
source_document_warehouse_field = "from_warehouse"
target_document_warehouse_field = "target_warehouse"

received_items = get_received_items(source_name, target_doctype, target_detail_field)
received_items = {}

validate_inter_company_transaction(source_doc, doctype)
details = get_inter_company_details(source_doc, doctype)
Expand Down

0 comments on commit a17acfd

Please sign in to comment.