Frozen field is moved to More Information section for Customer and Supplier. Any Supplier/Customer which is disabled will not be shown while creating PO/SO
9 lines
280 B
Python
9 lines
280 B
Python
from __future__ import unicode_literals
|
|
import frappe
|
|
|
|
# accounts
|
|
class CustomerFrozen(frappe.ValidationError): pass
|
|
class InvalidAccountCurrency(frappe.ValidationError): pass
|
|
class InvalidCurrency(frappe.ValidationError): pass
|
|
class CustomerDisabled(frappe.ValidationError):pass
|