mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
107 lines
4.5 KiB
Python
107 lines
4.5 KiB
Python
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import _, api, fields, models
|
|
from odoo.exceptions import ValidationError
|
|
from odoo.osv import expression
|
|
from odoo.tools import float_compare, float_is_zero
|
|
|
|
|
|
class StockRule(models.Model):
|
|
_inherit = "stock.rule"
|
|
|
|
action = fields.Selection(
|
|
selection_add=[("split_procurement", "Choose between MTS and MTO")]
|
|
)
|
|
mts_rule_id = fields.Many2one("stock.rule", string="MTS Rule", check_company=True)
|
|
mto_rule_id = fields.Many2one("stock.rule", string="MTO Rule", check_company=True)
|
|
|
|
@api.constrains("action", "mts_rule_id", "mto_rule_id")
|
|
def _check_mts_mto_rule(self):
|
|
for rule in self:
|
|
if rule.action == "split_procurement":
|
|
if not rule.mts_rule_id or not rule.mto_rule_id:
|
|
msg = _(
|
|
"No MTS or MTO rule configured on procurement " "rule: %s!"
|
|
) % (rule.name,)
|
|
raise ValidationError(msg)
|
|
if (
|
|
rule.mts_rule_id.location_src_id.id
|
|
!= rule.mto_rule_id.location_src_id.id
|
|
):
|
|
msg = _(
|
|
"Inconsistency between the source locations of "
|
|
"the mts and mto rules linked to the procurement "
|
|
"rule: %s! It should be the same."
|
|
) % (rule.name,)
|
|
raise ValidationError(msg)
|
|
|
|
def get_mto_qty_to_order(self, product, product_qty, product_uom, values):
|
|
self.ensure_one()
|
|
precision = self.env["decimal.precision"].precision_get(
|
|
"Product Unit of Measure"
|
|
)
|
|
src_location_id = self.mts_rule_id.location_src_id.id
|
|
product_location = product.with_context(location=src_location_id)
|
|
virtual_available = product_location.virtual_available
|
|
qty_available = product.uom_id._compute_quantity(virtual_available, product_uom)
|
|
if float_compare(qty_available, 0.0, precision_digits=precision) > 0:
|
|
if (
|
|
float_compare(qty_available, product_qty, precision_digits=precision)
|
|
>= 0
|
|
):
|
|
return 0.0
|
|
else:
|
|
return product_qty - qty_available
|
|
return product_qty
|
|
|
|
def _run_split_procurement(self, procurements):
|
|
precision = self.env["decimal.precision"].precision_get(
|
|
"Product Unit of Measure"
|
|
)
|
|
for procurement, rule in procurements:
|
|
domain = self.env["procurement.group"]._get_moves_to_assign_domain(
|
|
procurement.company_id.id
|
|
)
|
|
needed_qty = rule.get_mto_qty_to_order(
|
|
procurement.product_id,
|
|
procurement.product_qty,
|
|
procurement.product_uom,
|
|
procurement.values,
|
|
)
|
|
if float_is_zero(needed_qty, precision_digits=precision):
|
|
getattr(self.env["stock.rule"], "_run_%s" % rule.mts_rule_id.action)(
|
|
[(procurement, rule.mts_rule_id)]
|
|
)
|
|
elif (
|
|
float_compare(
|
|
needed_qty, procurement.product_qty, precision_digits=precision
|
|
)
|
|
== 0.0
|
|
):
|
|
getattr(self.env["stock.rule"], "_run_%s" % rule.mto_rule_id.action)(
|
|
[(procurement, rule.mto_rule_id)]
|
|
)
|
|
else:
|
|
mts_qty = procurement.product_qty - needed_qty
|
|
mts_procurement = procurement._replace(product_qty=mts_qty)
|
|
getattr(self.env["stock.rule"], "_run_%s" % rule.mts_rule_id.action)(
|
|
[(mts_procurement, rule.mts_rule_id)]
|
|
)
|
|
|
|
# Search all confirmed stock_moves of mts_procuremet and assign them
|
|
# to adjust the product's free qty
|
|
group_id = mts_procurement.values.get("group_id")
|
|
group_domain = expression.AND(
|
|
[domain, [("group_id", "=", group_id.id)]]
|
|
)
|
|
moves_to_assign = self.env["stock.move"].search(
|
|
group_domain, order="priority desc, date_expected asc"
|
|
)
|
|
moves_to_assign._action_assign()
|
|
|
|
mto_procurement = procurement._replace(product_qty=needed_qty)
|
|
getattr(self.env["stock.rule"], "_run_%s" % rule.mto_rule_id.action)(
|
|
[(mto_procurement, rule.mto_rule_id)]
|
|
)
|
|
return True
|