Odoo18-Base/addons/stock_account/models/res_company.py

10 lines
396 B
Python
Raw Permalink Normal View History

2025-01-06 10:57:38 +07:00
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)