mirror of
https://github.com/OCA/manufacture.git
synced 2025-01-28 16:37:15 +02:00
51 lines
1.7 KiB
Python
51 lines
1.7 KiB
Python
# Copyright 2016 Eficent Business and IT Consulting Services S.L.
|
|
# (http://www.eficent.com)
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
|
|
|
from odoo import api, models
|
|
|
|
|
|
class MrpProduction(models.Model):
|
|
_inherit = "mrp.production"
|
|
|
|
@api.multi
|
|
def _prepare_service_procurement_values(self):
|
|
self.ensure_one()
|
|
location = self.location_src_id
|
|
return {
|
|
'company_id': self.company_id,
|
|
'date_planned': self.date_planned_start,
|
|
'warehouse_id': location.get_warehouse(),
|
|
'group_id': self.procurement_group_id,
|
|
}
|
|
|
|
@api.model
|
|
def _action_launch_procurement_rule(self, bom_line, dict):
|
|
values = self._prepare_service_procurement_values()
|
|
|
|
name = '%s for %s' % (bom_line.product_id.name,
|
|
self.name)
|
|
self.env['procurement.group'].sudo().run(
|
|
bom_line.product_id, dict['qty'],
|
|
bom_line.product_uom_id,
|
|
self.location_src_id, name,
|
|
name, values)
|
|
return True
|
|
|
|
@api.multi
|
|
def _generate_moves(self):
|
|
res = super()._generate_moves()
|
|
for production in self:
|
|
factor = production.product_uom_id._compute_quantity(
|
|
production.product_qty,
|
|
production.bom_id.product_uom_id
|
|
) / production.bom_id.product_qty
|
|
boms, lines = production.bom_id.explode(
|
|
production.product_id, factor,
|
|
picking_type=production.bom_id.picking_type_id)
|
|
for line in lines:
|
|
if line[0].product_id.type == 'service':
|
|
production._action_launch_procurement_rule(
|
|
line[0], line[1])
|
|
return res
|