minor fixes
This commit is contained in:
parent
e2787cf2ec
commit
63e431a219
@ -206,7 +206,7 @@ class Company(Document):
|
||||
frappe.db.sql("""update tabItem set %s=NULL where %s in (%s)"""
|
||||
% (f, f, ', '.join(['%s']*len(warehouses))), tuple(warehouses))
|
||||
|
||||
frappe.db.sql("""update `tabItem Reorder` set warehouse=NULL where warehouse in (%s)"""
|
||||
frappe.db.sql("""delete from `tabItem Reorder` where warehouse in (%s)"""
|
||||
% ', '.join(['%s']*len(warehouses)), tuple(warehouses))
|
||||
|
||||
for f in ["income_account", "expense_account"]:
|
||||
|
@ -32,4 +32,4 @@ class SalesPerson(NestedSet):
|
||||
sales_person = frappe.db.get_value("Sales Person", {"employee": self.employee})
|
||||
|
||||
if sales_person and sales_person != self.name:
|
||||
frappe.throw(_("Another sales person {0} exists with the same employee id").format(sales_person))
|
||||
frappe.throw(_("Another Sales Person {0} exists with the same Employee id").format(sales_person))
|
||||
|
Loading…
x
Reference in New Issue
Block a user