Files
eimzo/core/apps/contracts/enums/contract.py
2025-07-17 14:49:06 +05:00

13 lines
339 B
Python

SIDES = (
('two_or_more', 'two or more',),
('customer_only', 'customer only',),
('only_company', 'onlycompany'),
)
STATUS = (
('created', 'created',),
('signed_company', 'signed by company',),
('signed_customer', 'signed by customer',),
('contract_signed', 'contract signed'),
('cancelled', 'cancelled'),
)