mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
71 lines
2.8 KiB
Python
71 lines
2.8 KiB
Python
# Copyright 2017 ForgeFlow S.L.
|
|
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl-3.0).
|
|
|
|
from odoo import _, api, models
|
|
|
|
|
|
class StockMoveLine(models.Model):
|
|
_inherit = "stock.move.line"
|
|
|
|
@api.model
|
|
def _stock_request_confirm_done_message_content(self, message_data):
|
|
title = _("Receipt confirmation %s for your Request %s") % (
|
|
message_data["picking_name"],
|
|
message_data["request_name"],
|
|
)
|
|
message = "<h3>%s</h3>" % title
|
|
message += _(
|
|
"The following requested items from Stock Request %s "
|
|
"have now been received in %s using Picking %s:"
|
|
) % (
|
|
message_data["request_name"],
|
|
message_data["location_name"],
|
|
message_data["picking_name"],
|
|
)
|
|
message += "<ul>"
|
|
message += _("<li><b>%s</b>: Transferred quantity %s %s</li>") % (
|
|
message_data["product_name"],
|
|
message_data["product_qty"],
|
|
message_data["product_uom"],
|
|
)
|
|
message += "</ul>"
|
|
return message
|
|
|
|
def _prepare_message_data(self, ml, request, allocated_qty):
|
|
return {
|
|
"request_name": request.name,
|
|
"picking_name": ml.picking_id.name,
|
|
"product_name": ml.product_id.name_get()[0][1],
|
|
"product_qty": allocated_qty,
|
|
"product_uom": ml.product_uom_id.name,
|
|
"location_name": ml.location_dest_id.name_get()[0][1],
|
|
}
|
|
|
|
def _action_done(self):
|
|
res = super(StockMoveLine, self)._action_done()
|
|
for ml in self.filtered(lambda m: m.exists() and m.move_id.allocation_ids):
|
|
qty_done = ml.product_uom_id._compute_quantity(
|
|
ml.qty_done, ml.product_id.uom_id
|
|
)
|
|
|
|
# We do sudo because potentially the user that completes the move
|
|
# may not have permissions for stock.request.
|
|
to_allocate_qty = qty_done
|
|
for allocation in ml.move_id.allocation_ids.sudo():
|
|
allocated_qty = 0.0
|
|
if allocation.open_product_qty:
|
|
allocated_qty = min(allocation.open_product_qty, to_allocate_qty)
|
|
allocation.allocated_product_qty += allocated_qty
|
|
to_allocate_qty -= allocated_qty
|
|
if allocated_qty:
|
|
request = allocation.stock_request_id
|
|
message_data = self._prepare_message_data(
|
|
ml, request, allocated_qty
|
|
)
|
|
message = self._stock_request_confirm_done_message_content(
|
|
message_data
|
|
)
|
|
request.message_post(body=message, subtype_xmlid="mail.mt_comment")
|
|
request.check_done()
|
|
return res
|