10 lines
396 B
Python
10 lines
396 B
Python
|
from odoo import models, fields
|
||
|
|
||
|
|
||
|
class ResCompany(models.Model):
|
||
|
_name = "res.company"
|
||
|
_inherit = "res.company"
|
||
|
|
||
|
account_production_wip_account_id = fields.Many2one('account.account', string='Production WIP Account', check_company=True)
|
||
|
account_production_wip_overhead_account_id = fields.Many2one('account.account', string='Production WIP Overhead Account', check_company=True)
|