mirror of
https://github.com/bringout/oca-ocb-l10n_asia-pacific.git
synced 2026-04-28 02:22:00 +02:00
7 lines
183 B
Python
7 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)
|