blob: 5413b09e7d12b214a03375b4719da66d2e563291 (
plain)
1
2
3
4
5
6
7
8
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, )
|