# Part of Odoo. See LICENSE file for full copyright and licensing details. from odoo import fields, models class AccountTax(models.Model): _inherit = "account.tax" l10n_pe_edi_tax_code = fields.Selection([ ('1000', 'IGV - General Sales Tax'), ('1016', 'IVAP - Tax on Sale Paddy Rice'), ('2000', 'ISC - Selective Excise Tax'), ('7152', 'ICBPER - Plastic bag tax'), ('9995', 'EXP - Exportation'), ('9996', 'GRA - Free'), ('9997', 'EXO - Exonerated'), ('9998', 'INA - Unaffected'), ('9999', 'OTROS - Other taxes') ], 'EDI peruvian code') l10n_pe_edi_unece_category = fields.Selection([ ('E', 'Exempt from tax'), ('G', 'Free export item, tax not charged'), ('O', 'Services outside scope of tax'), ('S', 'Standard rate'), ('Z', 'Zero rated goods')], 'EDI UNECE code', help="Follow the UN/ECE 5305 standard from the United Nations Economic Commission for Europe for more " "information http://www.unece.org/trade/untdid/d08a/tred/tred5305.htm" ) class AccountTaxTemplate(models.Model): _inherit = "account.tax.template" l10n_pe_edi_tax_code = fields.Selection([ ('1000', 'IGV - General Sales Tax'), ('1016', 'IVAP - Tax on Sale Paddy Rice'), ('2000', 'ISC - Selective Excise Tax'), ('7152', 'ICBPER - Plastic bag tax'), ('9995', 'EXP - Exportation'), ('9996', 'GRA - Free'), ('9997', 'EXO - Exonerated'), ('9998', 'INA - Unaffected'), ('9999', 'OTROS - Other taxes') ], 'EDI peruvian code') l10n_pe_edi_unece_category = fields.Selection([ ('E', 'Exempt from tax'), ('G', 'Free export item, tax not charged'), ('O', 'Services outside scope of tax'), ('S', 'Standard rate'), ('Z', 'Zero rated goods')], 'EDI UNECE code', help="Follow the UN/ECE 5305 standard from the United Nations Economic Commission for Europe for more " "information http://www.unece.org/trade/untdid/d08a/tred/tred5305.htm" ) def _get_tax_vals(self, company, tax_template_to_tax): val = super()._get_tax_vals(company, tax_template_to_tax) val.update({ 'l10n_pe_edi_tax_code': self.l10n_pe_edi_tax_code, 'l10n_pe_edi_unece_category': self.l10n_pe_edi_unece_category, }) return val