diff options
| author | FIN-IT_AndriFP <it@fixcomart.co.id> | 2025-10-15 15:13:19 +0700 |
|---|---|---|
| committer | FIN-IT_AndriFP <it@fixcomart.co.id> | 2025-10-15 15:13:19 +0700 |
| commit | 787ce986cc652bd92d0e477c11853eaef871b4e5 (patch) | |
| tree | 5b9df5e357e301d84554618e3592bdfd389c8178 /indoteknik_custom/models/domain_apo.py | |
| parent | c04dd5a6a38ba35b30a39ed6596514679067e541 (diff) | |
| parent | ee6d5d4433a397ca5cdf3474f29bcbd0b2553736 (diff) | |
Merge branch 'odoo-backup' of https://bitbucket.org/altafixco/indoteknik-addons into matches-so-v2
Diffstat (limited to 'indoteknik_custom/models/domain_apo.py')
| -rw-r--r-- | indoteknik_custom/models/domain_apo.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/indoteknik_custom/models/domain_apo.py b/indoteknik_custom/models/domain_apo.py new file mode 100644 index 00000000..585dd24c --- /dev/null +++ b/indoteknik_custom/models/domain_apo.py @@ -0,0 +1,12 @@ +from odoo import models, fields + + +class ApoDomainConfig(models.Model): + _name = 'apo.domain.config' + _description = 'Automatic Purchase Domain Config' + + name = fields.Char(string="Config Name", required=True) + vendor_id = fields.Many2one('res.partner', string="Vendor", required=True, domain=[('supplier_rank', '>', 0)]) + brand_ids = fields.Many2many('x_manufactures', string="Special Brands") + payment_term_id = fields.Many2one('account.payment.term', string="Payment Term") + is_special = fields.Boolean(string="Special Vendor?", default=False) |
