Merge pull request #7285 from rohitwaghchaure/packed_items_issue

[Fix] Warehouse is mandatory for packing materials on the sales invoice
This commit is contained in:
Nabin Hait 2016-12-21 14:12:00 +05:30 committed by GitHub
commit ffcf0ca3a6

View File

@ -403,9 +403,9 @@ class SalesInvoice(SellingController):
def validate_warehouse(self):
super(SalesInvoice, self).validate_warehouse()
for d in self.get('items'):
for d in self.get_item_list():
if not d.warehouse and frappe.db.get_value("Item", d.item_code, "is_stock_item"):
frappe.throw(_("Warehouse required at Row No {0}").format(d.idx))
frappe.throw(_("Warehouse required for stock Item {0}").format(d.item_code))
def validate_delivery_note(self):
for d in self.get("items"):