diff options
| author | Azka Nathan <darizkyfaz@gmail.com> | 2025-05-30 15:06:15 +0700 |
|---|---|---|
| committer | Azka Nathan <darizkyfaz@gmail.com> | 2025-05-30 15:06:15 +0700 |
| commit | acd06377bb5c4b375fadf3ad37a7ad5853ed79b3 (patch) | |
| tree | aef72c07173801e6836e5a8bc3ad87763dd9b0ad /fixco_custom/models/partner.py | |
| parent | c7f63c374488c2f28dedc070308dadb5cfc1f9bd (diff) | |
push
Diffstat (limited to 'fixco_custom/models/partner.py')
| -rwxr-xr-x | fixco_custom/models/partner.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/fixco_custom/models/partner.py b/fixco_custom/models/partner.py index 510cf4d..52e89de 100755 --- a/fixco_custom/models/partner.py +++ b/fixco_custom/models/partner.py @@ -1,8 +1,12 @@ from odoo import models, fields, api - class Partner(models.Model): _inherit = 'res.partner' ginee_shop_id = fields.Char(string='Ginee Shop ID') ginee_journal_id = fields.Many2one('account.journal', string='Ginee Journal ID') + transaction_type = fields.Selection( + [('digunggung', 'Digunggung'), + ('difaktur', 'Faktur Pajak')], + string='Transaction Type' + )
\ No newline at end of file |
