11 lines
219 B
Python
11 lines
219 B
Python
|
|
from odoo import fields, models
|
||
|
|
|
||
|
|
|
||
|
|
class DocApprovalDocumentCustom(models.Model):
|
||
|
|
_inherit = 'xf.doc.approval.document'
|
||
|
|
|
||
|
|
is_reference = fields.Boolean(
|
||
|
|
string='Is Reference',
|
||
|
|
default=False,
|
||
|
|
)
|