mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
* clean views. * allow to create a stock.request with no analytic account. * remove copy attribute in non-stored field. * remove non-existing field from compute method.
22 lines
830 B
Python
22 lines
830 B
Python
# Copyright 2017 Eficent Business and IT Consulting Services, S.L.
|
|
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html).
|
|
|
|
from odoo import _, api, fields, models
|
|
from odoo.exceptions import ValidationError
|
|
|
|
|
|
class StockRequest(models.Model):
|
|
_inherit = "stock.request"
|
|
|
|
analytic_account_id = fields.Many2one(
|
|
'account.analytic.account', string='Analytic Account')
|
|
|
|
@api.constrains('analytic_account_id')
|
|
def _check_analytic_company_constrains(self):
|
|
if any(r.company_id and r.analytic_account_id and
|
|
r.analytic_account_id.company_id != r.company_id for r in self):
|
|
raise ValidationError(
|
|
_('You cannot link a analytic account '
|
|
'to a stock request that belongs to '
|
|
'another company.'))
|