fix: incorrect error message string in sales order (backport #55090) (#55094)

Co-authored-by: Shllokkk <140623894+Shllokkk@users.noreply.github.com>
fix: incorrect error message string in sales order (#55090)
This commit is contained in:
mergify[bot]
2026-05-20 09:31:21 +00:00
committed by GitHub
parent d666871d86
commit 04e28f9556

View File

@@ -385,7 +385,7 @@ class SalesOrder(SellingController):
and not cint(d.delivered_by_supplier)
):
frappe.throw(
_("Delivery warehouse required for stock item {0}").format(d.item_code), WarehouseRequired
_("Source warehouse required for stock item {0}").format(d.item_code), WarehouseRequired
)
def validate_with_previous_doc(self):