mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
42 lines
1.1 KiB
Python
42 lines
1.1 KiB
Python
# Copyright 2018-19 ForgeFlow S.L. (https://www.forgeflow.com)
|
|
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html).
|
|
|
|
from datetime import datetime
|
|
|
|
from odoo import models
|
|
|
|
|
|
class StockRule(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(StockRule, self)._get_stock_move_values(
|
|
product_id,
|
|
product_qty,
|
|
product_uom,
|
|
location_id,
|
|
name,
|
|
origin,
|
|
company_id,
|
|
values,
|
|
)
|
|
warehouse = self.propagate_warehouse_id or self.warehouse_id
|
|
if warehouse.calendar_id and self.delay:
|
|
date_expected = warehouse.wh_plan_days(
|
|
values["date_planned"], -1 * self.delay
|
|
)
|
|
if date_expected > datetime.now():
|
|
res["date"] = date_expected
|
|
res["date_expected"] = date_expected
|
|
return res
|