mrp_workcenter.py 417 B

12345678910111213
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. from odoo import fields, models
  4. class MrpWorkcenter(models.Model):
  5. _inherit = 'mrp.workcenter'
  6. costs_hour_account_id = fields.Many2one(
  7. 'account.analytic.account', string='Analytic Account',
  8. help="Posts analytical accounting entries in real time for both component and operational costs.")