fix: sales percentage equal to 100
This commit is contained in:
parent
5ca977a41c
commit
40b99e3347
@ -63,8 +63,9 @@ class Customer(TransactionBase):
|
|||||||
allocated_percentage = 0
|
allocated_percentage = 0
|
||||||
for percentage in self.sales_team:
|
for percentage in self.sales_team:
|
||||||
allocated_percentage += percentage.allocated_percentage
|
allocated_percentage += percentage.allocated_percentage
|
||||||
if allocated_percentage > 100:
|
|
||||||
frappe.throw(_("Total contribution percentage can't exceed 100"))
|
if not allocated_percentage == 100:
|
||||||
|
frappe.throw(_("Total contribution percentage should be equal to 100"))
|
||||||
|
|
||||||
def check_customer_group_change(self):
|
def check_customer_group_change(self):
|
||||||
frappe.flags.customer_group_changed = False
|
frappe.flags.customer_group_changed = False
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user