mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
40 lines
1.1 KiB
Python
40 lines
1.1 KiB
Python
# Copyright 2017-2020 ForgeFlow, S.L. (https://www.forgeflow.com)
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
|
|
|
from odoo import models
|
|
|
|
|
|
class ProcurementRule(models.Model):
|
|
_inherit = "stock.rule"
|
|
|
|
def _get_stock_move_values(
|
|
self,
|
|
product_id,
|
|
product_qty,
|
|
product_uom,
|
|
location_id,
|
|
name,
|
|
origin,
|
|
company_id,
|
|
values,
|
|
):
|
|
res = super(ProcurementRule, self)._get_stock_move_values(
|
|
product_id,
|
|
product_qty,
|
|
product_uom,
|
|
location_id,
|
|
name,
|
|
origin,
|
|
company_id,
|
|
values,
|
|
)
|
|
if values.get("stock_request_id"):
|
|
stock_request = self.env["stock.request"].browse(values["stock_request_id"])
|
|
analytic_account = stock_request.analytic_account_id
|
|
analytic_tags = stock_request.analytic_tag_ids
|
|
res.update(
|
|
analytic_account_id=analytic_account.id,
|
|
analytic_tag_ids=[(4, tag.id) for tag in analytic_tags],
|
|
)
|
|
return res
|