mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
9 lines
281 B
Python
9 lines
281 B
Python
from odoo import fields, models
|
|
|
|
|
|
class StockLocation(models.Model):
|
|
_inherit = 'stock.location'
|
|
|
|
valuation_in_account_id = fields.Many2one('account.account', company_dependent=True)
|
|
valuation_out_account_id = fields.Many2one('account.account', company_dependent=True)
|