An organization represents any internal or external organization.
Organizations can include businesses and groups of individuals
|
name = Field(Unicode(50), required= True, index= True)
|
|
logo = Field(camelot.types.Image(upload_to= 'organization-logo...
|
|
tax_id = Field(Unicode(20))
|
|
directors = OneToMany('DirectedDirector', inverse= 'establishe...
|
|
employees = OneToMany('EmployerEmployee', inverse= 'establishe...
|
|
suppliers = OneToMany('SupplierCustomer', inverse= 'establishe...
|
|
customers = OneToMany('SupplierCustomer', inverse= 'establishe...
|
|
shareholders = OneToMany('SharedShareholder', inverse= 'establ...
|
|
shares = OneToMany('SharedShareholder', inverse= 'established_...
|
Inherited from Party :
addresses ,
contact_mechanisms
|