diff options
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 |
