diff options
Diffstat (limited to 'vit_efaktur/model/product.py')
| -rw-r--r-- | vit_efaktur/model/product.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/vit_efaktur/model/product.py b/vit_efaktur/model/product.py new file mode 100644 index 0000000..5413b09 --- /dev/null +++ b/vit_efaktur/model/product.py @@ -0,0 +1,9 @@ +from odoo import api, fields, models, _ + +class product(models.Model): + _name = 'product.template' + _inherit = 'product.template' + + is_efaktur_exported = fields.Boolean(string="Is eFaktur Exported", ) + date_efaktur_exported = fields.Datetime(string="eFaktur Exported Date", required=False, ) + |
