29 lines
760 B
Python
29 lines
760 B
Python
# This file is part of Tryton. The COPYRIGHT file at the top level of
|
|
# this repository contains the full copyright notices and license terms.
|
|
|
|
from trytond.pool import PoolMeta
|
|
from trytond.model import fields
|
|
from trytond.pyson import Eval
|
|
|
|
|
|
_CUSTOMER_TYPE = [("ips", "IPS"), ("optica", "Optica"), ("otro", "Otro")]
|
|
|
|
|
|
class Party(metaclass=PoolMeta):
|
|
__name__ = "party.party"
|
|
|
|
customer_type = fields.Selection(_CUSTOMER_TYPE, "Customer Type")
|
|
|
|
@classmethod
|
|
def default_customer_type(csl):
|
|
return "otro"
|
|
|
|
|
|
class Address(metaclass=PoolMeta):
|
|
__name__ = "party.address"
|
|
|
|
campus = fields.Boolean("Campus")
|
|
party_related = fields.Many2One(
|
|
"party.party", "Party Related", states={"invisible": (~Eval("campus"))}
|
|
)
|