mirror of
https://github.com/bringout/oca-payroll.git
synced 2026-04-18 09:42:00 +02:00
14 lines
295 B
Python
14 lines
295 B
Python
from odoo import fields, models
|
|
|
|
|
|
class Attachment(models.Model):
|
|
_inherit = "ir.attachment"
|
|
|
|
payrol_rel = fields.Many2many(
|
|
"payroll.management.wizard",
|
|
"payrolls",
|
|
"attachment_id3",
|
|
"document_id",
|
|
string="Attachment",
|
|
invisible=1,
|
|
)
|