8 lines
183 B
Python
8 lines
183 B
Python
|
from odoo import models, fields
|
||
|
|
||
|
|
||
|
class RepairOrder(models.Model):
|
||
|
_inherit = 'repair.order'
|
||
|
|
||
|
l10n_din5008_printing_date = fields.Date(default=fields.Date.today, store=False)
|