account_fiscal_position_template.py 526 B

1234567891011121314151617
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. from odoo import fields, models
  4. class AccountFiscalPositionTemplate(models.Model):
  5. _inherit = 'account.fiscal.position.template'
  6. l10n_br_fp_type = fields.Selection(
  7. selection=[
  8. ('internal', 'Internal'),
  9. ('ss_nnm', 'South/Southeast selling to North/Northeast/Midwest'),
  10. ('interstate', 'Other interstate'),
  11. ],
  12. string='Interstate Fiscal Position Type',
  13. )