Merge pull request #33196 from frappe/mergify/bp/version-14-hotfix/pr-33182

fix: Error on making stock entry from material request (backport #33182)
This commit is contained in:
Sagar Sharma
2022-12-01 21:37:39 +05:30
committed by GitHub

View File

@@ -596,7 +596,9 @@ def make_stock_entry(source_name, target_doc=None):
if source.material_request_type == "Customer Provided":
target.purpose = "Material Receipt"
target.set_missing_values()
target.set_transfer_qty()
target.set_actual_qty()
target.calculate_rate_and_amount(raise_error_if_no_rate=False)
target.set_stock_entry_type()
target.set_job_card_data()