Skip to content

Commit

Permalink
fix: AD not getting copied from SCO while creating a Material Transfer (
Browse files Browse the repository at this point in the history
  • Loading branch information
s-aga-r committed Sep 7, 2022
1 parent 354aaae commit b8b64ac
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion erpnext/controllers/subcontracting_controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

import frappe
from frappe import _
from frappe.model.mapper import get_mapped_doc
from frappe.utils import cint, cstr, flt, get_link_to_form

from erpnext.controllers.stock_controller import StockController
Expand Down Expand Up @@ -870,7 +871,17 @@ def add_items_in_ste(
def make_return_stock_entry_for_subcontract(
available_materials, order_doc, rm_details, order_doctype="Subcontracting Order"
):
ste_doc = frappe.new_doc("Stock Entry")
ste_doc = get_mapped_doc(
order_doctype,
order_doc.name,
{
order_doctype: {
"doctype": "Stock Entry",
},
},
ignore_child_tables=True,
)

ste_doc.purpose = "Material Transfer"

if order_doctype == "Purchase Order":
Expand Down

0 comments on commit b8b64ac

Please sign in to comment.