forked from Mapan/odoo17e
12 lines
621 B
Python
12 lines
621 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import models, fields
|
|
|
|
class Company(models.Model):
|
|
_inherit = 'res.company'
|
|
|
|
voes = fields.Char(string="VOES Number", help="Used for companies outside EU that want to make use of OSS")
|
|
ioss = fields.Char(string="IOSS Number", help="Identification number for companies that import goods and services into the EU. For use in OSS reports.")
|
|
intermediary_no = fields.Char(string="Intermediary Number", help="Used for companies outside EU that import into the EU via an intermediary for OSS taxes")
|