Merge pull request #33182 from deepeshgarg007/invalid_message_fix

fix: Error on making stock entry from material request
This commit is contained in:
Deepesh Garg 2022-12-01 18:15:29 +05:30 committed by GitHub
commit 8d36328544
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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()