mirror of
https://gitlab.com/sonalarora/tra_backend.git
synced 2025-12-17 10:19:09 +02:00
10 lines
378 B
Python
10 lines
378 B
Python
from odoo import fields, models
|
|
|
|
class ResCompany(models.Model):
|
|
_inherit = "res.company"
|
|
_description = 'Res Company'
|
|
|
|
intercompany_user_id = fields.Many2one('res.users', string="Intercompany User")
|
|
sale_journal = fields.Many2one('account.journal', string="Sale Journal")
|
|
purchase_journal = fields.Many2one('account.journal', string="Purchase Journal")
|