mrp/report/mrp_report_bom_structure.py

743 lines
39 KiB
Python
Raw Permalink Normal View History

# -*- coding: utf-8 -*-
from collections import defaultdict, OrderedDict
from datetime import date, timedelta
import json
from odoo import api, fields, models, _
from odoo.tools import float_compare, float_round, format_date, float_is_zero
class ReportBomStructure(models.AbstractModel):
_name = 'report.mrp.report_bom_structure'
_description = 'BOM Overview Report'
@api.model
def get_html(self, bom_id=False, searchQty=1, searchVariant=False):
res = self._get_report_data(bom_id=bom_id, searchQty=searchQty, searchVariant=searchVariant)
res['has_attachments'] = self._has_attachments(res['lines'])
return res
@api.model
def get_warehouses(self):
return self.env['stock.warehouse'].search_read([('company_id', 'in', self.env.companies.ids)], fields=['id', 'name'])
@api.model
def _compute_current_production_capacity(self, bom_data):
# Get the maximum amount producible product of the selected bom given each component's stock levels.
components_qty_to_produce = defaultdict(lambda: 0)
components_qty_available = {}
for comp in bom_data.get('components', []):
if comp['product'].type != 'product' or float_is_zero(comp['base_bom_line_qty'], precision_digits=comp['uom'].rounding):
continue
components_qty_to_produce[comp['product_id']] += comp['base_bom_line_qty']
components_qty_available[comp['product_id']] = comp['quantity_available']
producibles = [float_round(components_qty_available[p_id] / qty, precision_digits=0, rounding_method='DOWN') for p_id, qty in components_qty_to_produce.items()]
return min(producibles) * bom_data['bom']['product_qty'] if producibles else 0
@api.model
def _compute_production_capacities(self, bom_qty, bom_data):
date_today = self.env.context.get('from_date', fields.date.today())
lead_time = bom_data['lead_time'] - bom_data['bom'].days_to_prepare_mo
same_delay = lead_time == bom_data['availability_delay']
res = {}
if bom_data.get('producible_qty', 0):
# Check if something is producible today, at the earliest time possible considering product's lead time.
res['earliest_capacity'] = bom_data['producible_qty']
res['earliest_date'] = format_date(self.env, date_today + timedelta(days=lead_time))
if bom_data['availability_state'] != 'unavailable':
if same_delay:
# Means that stock will be resupplied at date_today, so the whole manufacture can start at date_today.
res['earliest_capacity'] = bom_qty
res['earliest_date'] = format_date(self.env, date_today + timedelta(days=bom_data['availability_delay']))
else:
res['leftover_capacity'] = bom_qty - bom_data.get('producible_qty', 0)
res['leftover_date'] = format_date(self.env, date_today + timedelta(days=bom_data['availability_delay']))
return res
@api.model
def _get_report_values(self, docids, data=None):
docs = []
for bom_id in docids:
bom = self.env['mrp.bom'].browse(bom_id)
if not bom:
continue
variant = data.get('variant')
candidates = variant and self.env['product.product'].browse(int(variant)) or bom.product_id or bom.product_tmpl_id.product_variant_ids
quantity = float(data.get('quantity', bom.product_qty))
if data.get('warehouse_id'):
self = self.with_context(warehouse=int(data.get('warehouse_id')))
for product_variant_id in candidates.ids:
docs.append(self._get_pdf_doc(bom_id, data, quantity, product_variant_id))
if not candidates:
docs.append(self._get_pdf_doc(bom_id, data, quantity))
return {
'doc_ids': docids,
'doc_model': 'mrp.bom',
'docs': docs,
}
@api.model
def _get_pdf_doc(self, bom_id, data, quantity, product_variant_id=None):
if data and data.get('unfolded_ids'):
doc = self._get_pdf_line(bom_id, product_id=product_variant_id, qty=quantity, unfolded_ids=set(json.loads(data.get('unfolded_ids'))))
else:
doc = self._get_pdf_line(bom_id, product_id=product_variant_id, qty=quantity, unfolded=True)
doc['show_availabilities'] = False if data and data.get('availabilities') == 'false' else True
doc['show_costs'] = False if data and data.get('costs') == 'false' else True
doc['show_operations'] = False if data and data.get('operations') == 'false' else True
doc['show_lead_times'] = False if data and data.get('lead_times') == 'false' else True
return doc
@api.model
def _get_report_data(self, bom_id, searchQty=0, searchVariant=False):
lines = {}
bom = self.env['mrp.bom'].browse(bom_id)
bom_quantity = searchQty or bom.product_qty or 1
bom_product_variants = {}
bom_uom_name = ''
if searchVariant:
product = self.env['product.product'].browse(int(searchVariant))
else:
product = bom.product_id or bom.product_tmpl_id.product_variant_id
if bom:
bom_uom_name = bom.product_uom_id.name
# Get variants used for search
if not bom.product_id:
for variant in bom.product_tmpl_id.product_variant_ids:
bom_product_variants[variant.id] = variant.display_name
if self.env.context.get('warehouse'):
warehouse = self.env['stock.warehouse'].browse(self.env.context.get('warehouse'))
else:
warehouse = self.env['stock.warehouse'].browse(self.get_warehouses()[0]['id'])
lines = self._get_bom_data(bom, warehouse, product=product, line_qty=bom_quantity, level=0)
production_capacities = self._compute_production_capacities(bom_quantity, lines)
lines.update(production_capacities)
return {
'lines': lines,
'variants': bom_product_variants,
'bom_uom_name': bom_uom_name,
'bom_qty': bom_quantity,
'is_variant_applied': self.env.user.user_has_groups('product.group_product_variant') and len(bom_product_variants) > 1,
'is_uom_applied': self.env.user.user_has_groups('uom.group_uom'),
'precision': self.env['decimal.precision'].precision_get('Product Unit of Measure'),
}
@api.model
def _get_components_closest_forecasted(self, lines, line_quantities, parent_bom, product_info, parent_product, ignore_stock=False):
"""
Returns a dict mapping products to a dict of their corresponding BoM lines,
which are mapped to their closest date in the forecast report where consumed quantity >= forecasted quantity.
E.g. {'product_1_id': {'line_1_id': date_1, line_2_id: date_2}, 'product_2': {line_3_id: date_3}, ...}.
Note that
- if a product is unavailable + not forecasted for a specific bom line => its date will be `date.max`
- if a product's type is not `product` or is already in stock for a specific bom line => its date will be `date.min`.
"""
if ignore_stock:
return {}
# Use defaultdict(OrderedDict) in case there are lines with the same component.
closest_forecasted = defaultdict(OrderedDict)
remaining_products = []
product_quantities_info = defaultdict(OrderedDict)
for line in lines:
product = line.product_id
quantities_info = self._get_quantities_info(product, line.product_uom_id, product_info, parent_bom, parent_product)
stock_loc = quantities_info['stock_loc']
product_info[product.id]['consumptions'][stock_loc] += line_quantities.get(line.id, 0.0)
product_quantities_info[product.id][line.id] = product_info[product.id]['consumptions'][stock_loc]
if (product.detailed_type != 'product' or
float_compare(product_info[product.id]['consumptions'][stock_loc], quantities_info['free_qty'], precision_rounding=product.uom_id.rounding) <= 0):
# Use date.min as a sentinel value for _get_stock_availability
closest_forecasted[product.id][line.id] = date.min
elif stock_loc != 'in_stock':
closest_forecasted[product.id][line.id] = date.max
else:
remaining_products.append(product.id)
closest_forecasted[product.id][line.id] = None
date_today = self.env.context.get('from_date', fields.date.today())
domain = [('state', '=', 'forecast'), ('date', '>=', date_today), ('product_id', 'in', list(set(remaining_products)))]
if self.env.context.get('warehouse'):
domain.append(('warehouse_id', '=', self.env.context.get('warehouse')))
if remaining_products:
res = self.env['report.stock.quantity']._read_group(
domain,
groupby=['product_id', 'product_qty'],
aggregates=['date:min'],
order='product_id asc, date:min asc'
)
available_quantities = defaultdict(list)
for group in res:
product_id = group[0].id
available_quantities[product_id].append([group[2], group[1]])
for product_id in remaining_products:
# Find the first empty line_id for the given product_id.
line_id = next(filter(lambda k: not closest_forecasted[product_id][k], closest_forecasted[product_id].keys()), None)
# Find the first available quantity for the given product and update closest_forecasted
for min_date, product_qty in available_quantities[product_id]:
if product_qty >= product_quantities_info[product_id][line_id]:
closest_forecasted[product_id][line_id] = min_date
break
if not closest_forecasted[product_id][line_id]:
closest_forecasted[product_id][line_id] = date.max
return closest_forecasted
@api.model
def _get_bom_data(self, bom, warehouse, product=False, line_qty=False, bom_line=False, level=0, parent_bom=False, parent_product=False, index=0, product_info=False, ignore_stock=False):
""" Gets recursively the BoM and all its subassemblies and computes availibility estimations for each component and their disponibility in stock.
Accepts specific keys in context that will affect the data computed :
- 'minimized': Will cut all data not required to compute availability estimations.
- 'from_date': Gives a single value for 'today' across the functions, as well as using this date in products quantity computes.
"""
is_minimized = self.env.context.get('minimized', False)
if not product:
product = bom.product_id or bom.product_tmpl_id.product_variant_id
if line_qty is False:
line_qty = bom.product_qty
if not product_info:
product_info = {}
company = bom.company_id or self.env.company
current_quantity = line_qty
if bom_line:
current_quantity = bom_line.product_uom_id._compute_quantity(line_qty, bom.product_uom_id) or 0
prod_cost = 0
attachment_ids = []
if not is_minimized:
if product:
prod_cost = product.uom_id._compute_price(product.with_company(company).standard_price, bom.product_uom_id) * current_quantity
attachment_ids = self.env['mrp.document'].search(['|', '&', ('res_model', '=', 'product.product'),
('res_id', '=', product.id), '&', ('res_model', '=', 'product.template'),
('res_id', '=', product.product_tmpl_id.id)]).ids
else:
# Use the product template instead of the variant
prod_cost = bom.product_tmpl_id.uom_id._compute_price(bom.product_tmpl_id.with_company(company).standard_price, bom.product_uom_id) * current_quantity
attachment_ids = self.env['mrp.document'].search([('res_model', '=', 'product.template'), ('res_id', '=', bom.product_tmpl_id.id)]).ids
key = product.id
bom_key = bom.id
self._update_product_info(product, bom_key, product_info, warehouse, current_quantity, bom=bom, parent_bom=parent_bom, parent_product=parent_product)
route_info = product_info[key].get(bom_key, {})
quantities_info = {}
if not ignore_stock:
# Useless to compute quantities_info if it's not going to be used later on
quantities_info = self._get_quantities_info(product, bom.product_uom_id, product_info, parent_bom, parent_product)
bom_report_line = {
'index': index,
'bom': bom,
'bom_id': bom and bom.id or False,
'bom_code': bom and bom.code or False,
'type': 'bom',
'quantity': current_quantity,
'quantity_available': quantities_info.get('free_qty', 0),
'quantity_on_hand': quantities_info.get('on_hand_qty', 0),
'base_bom_line_qty': bom_line.product_qty if bom_line else False, # bom_line isn't defined only for the top-level product
'name': product.display_name or bom.product_tmpl_id.display_name,
'uom': bom.product_uom_id if bom else product.uom_id,
'uom_name': bom.product_uom_id.name if bom else product.uom_id.name,
'route_type': route_info.get('route_type', ''),
'route_name': route_info.get('route_name', ''),
'route_detail': route_info.get('route_detail', ''),
'currency': company.currency_id,
'currency_id': company.currency_id.id,
'product': product,
'product_id': product.id,
'link_id': (product.id if product.product_variant_count > 1 else product.product_tmpl_id.id) or bom.product_tmpl_id.id,
'link_model': 'product.product' if product.product_variant_count > 1 else 'product.template',
'code': bom and bom.display_name or '',
'prod_cost': prod_cost,
'bom_cost': 0,
'level': level or 0,
'attachment_ids': attachment_ids,
'phantom_bom': bom.type == 'phantom',
'parent_id': parent_bom and parent_bom.id or False,
}
if not is_minimized:
operations = self._get_operation_line(product, bom, float_round(current_quantity, precision_rounding=1, rounding_method='UP'), level + 1, index)
bom_report_line['operations'] = operations
bom_report_line['operations_cost'] = sum([op['bom_cost'] for op in operations])
bom_report_line['operations_time'] = sum([op['quantity'] for op in operations])
bom_report_line['bom_cost'] += bom_report_line['operations_cost']
components = []
no_bom_lines = self.env['mrp.bom.line']
line_quantities = {}
for line in bom.bom_line_ids:
if product and line._skip_bom_line(product):
continue
line_quantity = (current_quantity / (bom.product_qty or 1.0)) * line.product_qty
line_quantities[line.id] = line_quantity
if not line.child_bom_id:
no_bom_lines |= line
# Update product_info for all the components before computing closest forecasted.
self._update_product_info(line.product_id, bom.id, product_info, warehouse, line_quantity, bom=False, parent_bom=bom, parent_product=parent_product)
components_closest_forecasted = self._get_components_closest_forecasted(no_bom_lines, line_quantities, bom, product_info, parent_product, ignore_stock)
for component_index, line in enumerate(bom.bom_line_ids):
new_index = f"{index}{component_index}"
if product and line._skip_bom_line(product):
continue
line_quantity = line_quantities.get(line.id, 0.0)
if line.child_bom_id:
component = self._get_bom_data(line.child_bom_id, warehouse, line.product_id, line_quantity, bom_line=line, level=level + 1, parent_bom=bom,
parent_product=product, index=new_index, product_info=product_info, ignore_stock=ignore_stock)
else:
component = self.with_context(
components_closest_forecasted=components_closest_forecasted,
)._get_component_data(bom, product, warehouse, line, line_quantity, level + 1, new_index, product_info, ignore_stock)
for component_bom in components:
if component['product_id'] == component_bom['product_id'] and component['uom'].id == component_bom['uom'].id:
self._merge_components(component_bom, component)
break
else:
components.append(component)
bom_report_line['bom_cost'] += component['bom_cost']
bom_report_line['components'] = components
bom_report_line['producible_qty'] = self._compute_current_production_capacity(bom_report_line)
if not is_minimized:
byproducts, byproduct_cost_portion = self._get_byproducts_lines(product, bom, current_quantity, level + 1, bom_report_line['bom_cost'], index)
bom_report_line['byproducts'] = byproducts
bom_report_line['cost_share'] = float_round(1 - byproduct_cost_portion, precision_rounding=0.0001)
bom_report_line['byproducts_cost'] = sum(byproduct['bom_cost'] for byproduct in byproducts)
bom_report_line['byproducts_total'] = sum(byproduct['quantity'] for byproduct in byproducts)
bom_report_line['bom_cost'] *= bom_report_line['cost_share']
availabilities = self._get_availabilities(product, current_quantity, product_info, bom_key, quantities_info, level, ignore_stock, components, report_line=bom_report_line)
# in case of subcontracting, lead_time will be calculated with components availability delay
bom_report_line['lead_time'] = route_info.get('lead_time', False)
bom_report_line.update(availabilities)
if level == 0:
# Gives a unique key for the first line that indicates if product is ready for production right now.
bom_report_line['components_available'] = all([c['stock_avail_state'] == 'available' for c in components])
return bom_report_line
@api.model
def _get_component_data(self, parent_bom, parent_product, warehouse, bom_line, line_quantity, level, index, product_info, ignore_stock=False):
company = parent_bom.company_id or self.env.company
price = bom_line.product_id.uom_id._compute_price(bom_line.product_id.with_company(company).standard_price, bom_line.product_uom_id) * line_quantity
rounded_price = company.currency_id.round(price)
key = bom_line.product_id.id
bom_key = parent_bom.id
self._update_product_info(bom_line.product_id, bom_key, product_info, warehouse, line_quantity, bom=False, parent_bom=parent_bom, parent_product=parent_product)
route_info = product_info[key].get(bom_key, {})
quantities_info = {}
if not ignore_stock:
# Useless to compute quantities_info if it's not going to be used later on
quantities_info = self._get_quantities_info(bom_line.product_id, bom_line.product_uom_id, product_info, parent_bom, parent_product)
availabilities = self._get_availabilities(bom_line.product_id, line_quantity, product_info, bom_key, quantities_info, level, ignore_stock, bom_line=bom_line)
attachment_ids = []
if not self.env.context.get('minimized', False):
attachment_ids = self.env['mrp.document'].search(['|', '&', ('res_model', '=', 'product.product'), ('res_id', '=', bom_line.product_id.id),
'&', ('res_model', '=', 'product.template'), ('res_id', '=', bom_line.product_id.product_tmpl_id.id)]).ids
return {
'type': 'component',
'index': index,
'bom_id': False,
'product': bom_line.product_id,
'product_id': bom_line.product_id.id,
'link_id': bom_line.product_id.id if bom_line.product_id.product_variant_count > 1 else bom_line.product_id.product_tmpl_id.id,
'link_model': 'product.product' if bom_line.product_id.product_variant_count > 1 else 'product.template',
'name': bom_line.product_id.display_name,
'code': '',
'currency': company.currency_id,
'currency_id': company.currency_id.id,
'quantity': line_quantity,
'quantity_available': quantities_info.get('free_qty', 0),
'quantity_on_hand': quantities_info.get('on_hand_qty', 0),
'base_bom_line_qty': bom_line.product_qty,
'uom': bom_line.product_uom_id,
'uom_name': bom_line.product_uom_id.name,
'prod_cost': rounded_price,
'bom_cost': rounded_price,
'route_type': route_info.get('route_type', ''),
'route_name': route_info.get('route_name', ''),
'route_detail': route_info.get('route_detail', ''),
'lead_time': route_info.get('lead_time', False),
'stock_avail_state': availabilities['stock_avail_state'],
'resupply_avail_delay': availabilities['resupply_avail_delay'],
'availability_display': availabilities['availability_display'],
'availability_state': availabilities['availability_state'],
'availability_delay': availabilities['availability_delay'],
'parent_id': parent_bom.id,
'level': level or 0,
'attachment_ids': attachment_ids,
}
@api.model
def _get_quantities_info(self, product, bom_uom, product_info, parent_bom=False, parent_product=False):
return {
'free_qty': max(product.uom_id._compute_quantity(product.free_qty, bom_uom), 0) if product.detailed_type == 'product' else 0,
'on_hand_qty': product.uom_id._compute_quantity(product.qty_available, bom_uom) if product.detailed_type == 'product' else 0,
'stock_loc': 'in_stock',
}
@api.model
def _update_product_info(self, product, bom_key, product_info, warehouse, quantity, bom, parent_bom, parent_product):
key = product.id
if key not in product_info:
product_info[key] = {'consumptions': {'in_stock': 0}}
if not product_info[key].get(bom_key):
product_info[key][bom_key] = self._get_resupply_route_info(warehouse, product, quantity, product_info, bom, parent_bom, parent_product)
@api.model
def _get_byproducts_lines(self, product, bom, bom_quantity, level, total, index):
byproducts = []
byproduct_cost_portion = 0
company = bom.company_id or self.env.company
byproduct_index = 0
for byproduct in bom.byproduct_ids:
if byproduct._skip_byproduct_line(product):
continue
line_quantity = (bom_quantity / (bom.product_qty or 1.0)) * byproduct.product_qty
cost_share = byproduct.cost_share / 100
byproduct_cost_portion += cost_share
price = byproduct.product_id.uom_id._compute_price(byproduct.product_id.with_company(company).standard_price, byproduct.product_uom_id) * line_quantity
byproducts.append({
'id': byproduct.id,
'index': f"{index}{byproduct_index}",
'type': 'byproduct',
'link_id': byproduct.product_id.id if byproduct.product_id.product_variant_count > 1 else byproduct.product_id.product_tmpl_id.id,
'link_model': 'product.product' if byproduct.product_id.product_variant_count > 1 else 'product.template',
'currency_id': company.currency_id.id,
'name': byproduct.product_id.display_name,
'quantity': line_quantity,
'uom_name': byproduct.product_uom_id.name,
'prod_cost': company.currency_id.round(price),
'parent_id': bom.id,
'level': level or 0,
'bom_cost': company.currency_id.round(total * cost_share),
'cost_share': cost_share,
})
byproduct_index += 1
return byproducts, byproduct_cost_portion
@api.model
def _get_operation_cost(self, duration, operation):
return (duration / 60.0) * operation.workcenter_id.costs_hour
@api.model
def _get_operation_line(self, product, bom, qty, level, index):
operations = []
total = 0.0
qty = bom.product_uom_id._compute_quantity(qty, bom.product_tmpl_id.uom_id)
company = bom.company_id or self.env.company
operation_index = 0
for operation in bom.operation_ids:
if not product or operation._skip_operation_line(product):
continue
capacity = operation.workcenter_id._get_capacity(product)
operation_cycle = float_round(qty / capacity, precision_rounding=1, rounding_method='UP')
duration_expected = (operation_cycle * operation.time_cycle * 100.0 / operation.workcenter_id.time_efficiency) + \
operation.workcenter_id._get_expected_duration(product)
total = self._get_operation_cost(duration_expected, operation)
operations.append({
'type': 'operation',
'index': f"{index}{operation_index}",
'level': level or 0,
'operation': operation,
'link_id': operation.id,
'link_model': 'mrp.routing.workcenter',
'name': operation.name + ' - ' + operation.workcenter_id.name,
'uom_name': _("Minutes"),
'quantity': duration_expected,
'bom_cost': self.env.company.currency_id.round(total),
'currency_id': company.currency_id.id,
'model': 'mrp.routing.workcenter',
})
operation_index += 1
return operations
@api.model
def _get_pdf_line(self, bom_id, product_id=False, qty=1, unfolded_ids=None, unfolded=False):
if unfolded_ids is None:
unfolded_ids = set()
bom = self.env['mrp.bom'].browse(bom_id)
if product_id:
product = self.env['product.product'].browse(int(product_id))
else:
product = bom.product_id or bom.product_tmpl_id.product_variant_id or bom.product_tmpl_id.with_context(active_test=False).product_variant_id
if self.env.context.get('warehouse'):
warehouse = self.env['stock.warehouse'].browse(self.env.context.get('warehouse'))
else:
warehouse = self.env['stock.warehouse'].browse(self.get_warehouses()[0]['id'])
level = 1
data = self._get_bom_data(bom, warehouse, product=product, line_qty=qty, level=0)
pdf_lines = self._get_bom_array_lines(data, level, unfolded_ids, unfolded, True)
data['lines'] = pdf_lines
return data
@api.model
def _get_bom_array_lines(self, data, level, unfolded_ids, unfolded, parent_unfolded=True):
bom_lines = data['components']
lines = []
for bom_line in bom_lines:
line_unfolded = ('bom_' + str(bom_line['index'])) in unfolded_ids
line_visible = level == 1 or unfolded or parent_unfolded
lines.append({
'bom_id': bom_line['bom_id'],
'name': bom_line['name'],
'type': bom_line['type'],
'quantity': bom_line['quantity'],
'quantity_available': bom_line['quantity_available'],
'quantity_on_hand': bom_line['quantity_on_hand'],
'producible_qty': bom_line.get('producible_qty', False),
'uom': bom_line['uom_name'],
'prod_cost': bom_line['prod_cost'],
'bom_cost': bom_line['bom_cost'],
'route_name': bom_line['route_name'],
'route_detail': bom_line['route_detail'],
'lead_time': bom_line['lead_time'],
'level': bom_line['level'],
'code': bom_line['code'],
'availability_state': bom_line['availability_state'],
'availability_display': bom_line['availability_display'],
'visible': line_visible,
})
if bom_line.get('components'):
lines += self._get_bom_array_lines(bom_line, level + 1, unfolded_ids, unfolded, line_visible and line_unfolded)
if data['operations']:
lines.append({
'name': _('Operations'),
'type': 'operation',
'quantity': data['operations_time'],
'uom': _('minutes'),
'bom_cost': data['operations_cost'],
'level': level,
'visible': parent_unfolded,
})
operations_unfolded = unfolded or (parent_unfolded and ('operations_' + str(data['index'])) in unfolded_ids)
for operation in data['operations']:
lines.append({
'name': operation['name'],
'type': 'operation',
'quantity': operation['quantity'],
'uom': _('minutes'),
'bom_cost': operation['bom_cost'],
'level': level + 1,
'visible': operations_unfolded,
})
if data['byproducts']:
lines.append({
'name': _('Byproducts'),
'type': 'byproduct',
'uom': False,
'quantity': data['byproducts_total'],
'bom_cost': data['byproducts_cost'],
'level': level,
'visible': parent_unfolded,
})
byproducts_unfolded = unfolded or (parent_unfolded and ('byproducts_' + str(data['index'])) in unfolded_ids)
for byproduct in data['byproducts']:
lines.append({
'name': byproduct['name'],
'type': 'byproduct',
'quantity': byproduct['quantity'],
'uom': byproduct['uom_name'],
'prod_cost': byproduct['prod_cost'],
'bom_cost': byproduct['bom_cost'],
'level': level + 1,
'visible': byproducts_unfolded,
})
return lines
@api.model
def _get_resupply_route_info(self, warehouse, product, quantity, product_info, bom=False, parent_bom=False, parent_product=False):
found_rules = []
if self._need_special_rules(product_info, parent_bom, parent_product):
found_rules = self._find_special_rules(product, product_info, parent_bom, parent_product)
if not found_rules:
found_rules = product._get_rules_from_location(warehouse.lot_stock_id)
if not found_rules:
return {}
rules_delay = sum(rule.delay for rule in found_rules)
return self.with_context(parent_bom=parent_bom)._format_route_info(found_rules, rules_delay, warehouse, product, bom, quantity)
@api.model
def _need_special_rules(self, product_info, parent_bom=False, parent_product=False):
return False
@api.model
def _find_special_rules(self, product, product_info, parent_bom=False, parent_product=False):
return False
@api.model
def _format_route_info(self, rules, rules_delay, warehouse, product, bom, quantity):
manufacture_rules = [rule for rule in rules if rule.action == 'manufacture' and bom]
if manufacture_rules:
# Need to get rules from Production location to get delays before production
wh_manufacture_rules = product._get_rules_from_location(product.property_stock_production, route_ids=warehouse.route_ids)
wh_manufacture_rules -= rules
rules_delay += sum(rule.delay for rule in wh_manufacture_rules)
manufacturing_lead = bom.company_id.manufacturing_lead if bom and bom.company_id else 0
return {
'route_type': 'manufacture',
'route_name': manufacture_rules[0].route_id.display_name,
'route_detail': bom.display_name,
'lead_time': bom.produce_delay + rules_delay + manufacturing_lead + bom.days_to_prepare_mo,
'manufacture_delay': bom.produce_delay + rules_delay + manufacturing_lead,
'bom': bom,
}
return {}
@api.model
def _get_availabilities(self, product, quantity, product_info, bom_key, quantities_info, level, ignore_stock=False, components=False, bom_line=None, report_line=False):
# Get availabilities according to stock (today & forecasted).
stock_state, stock_delay = ('unavailable', False)
if not ignore_stock:
stock_state, stock_delay = self._get_stock_availability(product, quantity, product_info, quantities_info, bom_line=bom_line)
# Get availabilities from applied resupply rules
components = components or []
route_info = product_info[product.id].get(bom_key)
resupply_state, resupply_delay = ('unavailable', False)
if product.detailed_type != 'product':
resupply_state, resupply_delay = ('available', 0)
elif route_info:
resupply_state, resupply_delay = self._get_resupply_availability(route_info, components)
if resupply_state == "unavailable" and route_info == {} and components and report_line and report_line['phantom_bom']:
val = self._get_last_availability(report_line)
return val
base = {
'resupply_avail_delay': resupply_delay,
'stock_avail_state': stock_state,
}
if level != 0 and stock_state != 'unavailable':
return {**base, **{
'availability_display': self._format_date_display(stock_state, stock_delay),
'availability_state': stock_state,
'availability_delay': stock_delay,
}}
return {**base, **{
'availability_display': self._format_date_display(resupply_state, resupply_delay),
'availability_state': resupply_state,
'availability_delay': resupply_delay,
}}
@api.model
def _get_stock_availability(self, product, quantity, product_info, quantities_info, bom_line=None):
closest_forecasted = None
if bom_line:
closest_forecasted = self.env.context.get('components_closest_forecasted', {}).get(product.id, {}).get(bom_line.id)
if closest_forecasted == date.min:
return ('available', 0)
if closest_forecasted == date.max:
return ('unavailable', False)
date_today = self.env.context.get('from_date', fields.date.today())
if product.detailed_type != 'product':
return ('available', 0)
stock_loc = quantities_info['stock_loc']
product_info[product.id]['consumptions'][stock_loc] += quantity
# Check if product is already in stock with enough quantity
if float_compare(product_info[product.id]['consumptions'][stock_loc], quantities_info['free_qty'], precision_rounding=product.uom_id.rounding) <= 0:
return ('available', 0)
# No need to check forecast if the product isn't located in our stock
if stock_loc == 'in_stock':
domain = [('state', '=', 'forecast'), ('date', '>=', date_today), ('product_id', '=', product.id), ('product_qty', '>=', product_info[product.id]['consumptions'][stock_loc])]
if self.env.context.get('warehouse'):
domain.append(('warehouse_id', '=', self.env.context.get('warehouse')))
# Seek the closest date in the forecast report where consummed quantity >= forecasted quantity
if not closest_forecasted:
[closest_forecasted] = self.env['report.stock.quantity']._read_group(domain, aggregates=['date:min'])[0]
if closest_forecasted:
days_to_forecast = (closest_forecasted - date_today).days
return ('expected', days_to_forecast)
return ('unavailable', False)
@api.model
def _get_resupply_availability(self, route_info, components):
if route_info.get('route_type') == 'manufacture':
max_component_delay = self._get_max_component_delay(components)
if max_component_delay is False:
return ('unavailable', False)
produce_delay = route_info.get('manufacture_delay', 0) + max_component_delay
return ('estimated', produce_delay)
return ('unavailable', False)
@api.model
def _get_max_component_delay(self, components):
max_component_delay = 0
for component in components:
line_delay = component.get('availability_delay', False)
if line_delay is False:
# This component isn't available right now and cannot be resupplied, so the manufactured product can't be resupplied either.
return False
max_component_delay = max(max_component_delay, line_delay)
return max_component_delay
@api.model
def _format_date_display(self, state, delay):
date_today = self.env.context.get('from_date', fields.date.today())
if state == 'available':
return _('Available')
if state == 'unavailable':
return _('Not Available')
if state == 'expected':
return _('Expected %s', format_date(self.env, date_today + timedelta(days=delay)))
if state == 'estimated':
return _('Estimated %s', format_date(self.env, date_today + timedelta(days=delay)))
return ''
@api.model
def _has_attachments(self, data):
return data['attachment_ids'] or any(self._has_attachments(component) for component in data.get('components', []))
def _merge_components(self, component_1, component_2):
qty = component_2['quantity']
component_1["quantity"] = component_1["quantity"] + qty
component_1["base_bom_line_qty"] = component_1["quantity"] + qty
component_1["prod_cost"] = component_1["prod_cost"] + component_2["prod_cost"]
component_1["bom_cost"] = component_1["bom_cost"] + component_2["bom_cost"]
if component_2.get('availability_delay') is False or component_2.get('availability_delay') >= component_1.get('availability_delay'):
component_1.update(self._format_availability(component_2))
if not component_1.get("components"):
return
for index in range(len(component_1.get("components"))):
self._merge_components(component_1["components"][index], component_2["components"][index])
def _get_last_availability(self, report_line):
delay = 0
component_max_delay = False
for component in report_line["components"]:
if component["availability_delay"] is False:
component_max_delay = component
break
elif component["availability_delay"] >= delay:
component_max_delay = component
delay = component["availability_delay"]
return self._format_availability(component_max_delay)
def _format_availability(self, component):
return {
'resupply_avail_delay': component['resupply_avail_delay'],
'stock_avail_state': component['stock_avail_state'],
'availability_display': component['availability_display'],
'availability_state': component['availability_state'],
'availability_delay': component['availability_delay'],
}