50 lines
2.0 KiB
Python
50 lines
2.0 KiB
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||
|
|
||
|
from odoo import api, fields, models, _
|
||
|
|
||
|
|
||
|
class SaleOrder(models.Model):
|
||
|
_inherit = 'sale.order'
|
||
|
|
||
|
mrp_production_count = fields.Integer(
|
||
|
"Count of MO generated",
|
||
|
compute='_compute_mrp_production_ids',
|
||
|
groups='mrp.group_mrp_user')
|
||
|
mrp_production_ids = fields.Many2many(
|
||
|
'mrp.production',
|
||
|
compute='_compute_mrp_production_ids',
|
||
|
string='Manufacturing orders associated with this sales order.',
|
||
|
groups='mrp.group_mrp_user')
|
||
|
|
||
|
@api.depends('procurement_group_id.stock_move_ids.created_production_id.procurement_group_id.mrp_production_ids')
|
||
|
def _compute_mrp_production_ids(self):
|
||
|
data = self.env['procurement.group'].read_group([('sale_id', 'in', self.ids)], ['ids:array_agg(id)'], ['sale_id'])
|
||
|
mrp_productions = dict()
|
||
|
for item in data:
|
||
|
procurement_groups = self.env['procurement.group'].browse(item['ids'])
|
||
|
mrp_productions[item['sale_id'][0]] = procurement_groups.stock_move_ids.created_production_id.procurement_group_id.mrp_production_ids | procurement_groups.mrp_production_ids
|
||
|
for sale in self:
|
||
|
mrp_production_ids = mrp_productions.get(sale.id, self.env['mrp.production'])
|
||
|
sale.mrp_production_count = len(mrp_production_ids)
|
||
|
sale.mrp_production_ids = mrp_production_ids
|
||
|
|
||
|
def action_view_mrp_production(self):
|
||
|
self.ensure_one()
|
||
|
action = {
|
||
|
'res_model': 'mrp.production',
|
||
|
'type': 'ir.actions.act_window',
|
||
|
}
|
||
|
if len(self.mrp_production_ids) == 1:
|
||
|
action.update({
|
||
|
'view_mode': 'form',
|
||
|
'res_id': self.mrp_production_ids.id,
|
||
|
})
|
||
|
else:
|
||
|
action.update({
|
||
|
'name': _("Manufacturing Orders Generated by %s", self.name),
|
||
|
'domain': [('id', 'in', self.mrp_production_ids.ids)],
|
||
|
'view_mode': 'tree,form',
|
||
|
})
|
||
|
return action
|