[Minor]Changed CustomerDisabled and CustomerFrozen to PartyDisabled and PartyFrozen

This commit is contained in:
shreyas
2016-01-25 21:25:11 +05:30
parent 323dc96c99
commit f76853a8d9
5 changed files with 11 additions and 11 deletions

View File

@@ -2,7 +2,7 @@ from __future__ import unicode_literals
import frappe
# accounts
class CustomerFrozen(frappe.ValidationError): pass
class PartyFrozen(frappe.ValidationError): pass
class InvalidAccountCurrency(frappe.ValidationError): pass
class InvalidCurrency(frappe.ValidationError): pass
class CustomerDisabled(frappe.ValidationError):pass
class PartyDisabled(frappe.ValidationError):pass