Skip to content
Snippets Groups Projects
Commit b4acfd20 authored by Santiago Said's avatar Santiago Said
Browse files

Merge branch 'SupportSubcontractingServicesFromExternalRoutingLocations' into '11.0-stage'

[FIX] When the routing has a location_id external the warehouse is NULL

See merge request !4
parents 43f9c708 f086f037
No related branches found
No related tags found
1 merge request!4[FIX] When the routing has a location_id external the warehouse is NULL
......@@ -28,7 +28,7 @@
'company': "Eynes - Ingenieria del software",
'website': "https://www.eynes.com.ar",
'category': 'Custom',
'depends': ['mrp', 'quality_control', 'delivery'],
'depends': ['mrp', 'quality_control', 'delivery', 'mrp_production_service'],
'data': [
#~ 'security/ir.model.access.csv',
'views/quality_control_view.xml',
......
......@@ -49,6 +49,12 @@ msgstr "Manufacturing Order"
msgid "Operation Type"
msgstr "Tipo de operación"
#. module: emu_custom
#: model:ir.model.fields,field_description:emu_custom.field_product_product_subcontracting_service_proc_rule_id
#: model:ir.model.fields,field_description:emu_custom.field_product_template_subcontracting_service_proc_rule_id
msgid "Subcontracting Service Procurement Rule"
msgstr "Regla de subcontratación de servicio"
#. module: emu_custom
#: model:ir.model,name:emu_custom.model_product_template
msgid "Product Template"
......
......@@ -24,9 +24,13 @@ from odoo import api, fields, models, _
class ProductTemplate(models.Model):
_inherit = 'product.template'
picking_type_id = fields.Many2one('stock.picking.type', string='Operation Type')
subcontracting_service_proc_rule_id = fields.Many2one(
comodel_name='procurement.rule',
string="Subcontracting Service Procurement Rule"
)
class MrpProduction(models.Model):
_inherit = 'mrp.production'
......
......@@ -42,6 +42,21 @@ class PurchaseOrder(models.Model):
res = super(PurchaseOrder, self).create(values)
return res
class ProcurementGroup(models.Model):
_inherit = "procurement.group"
@api.model
def _get_rule(self, product_id, location_id, values):
res = super()._get_rule(product_id, location_id, values)
if not res:
if self._is_subcontracted_service(product_id):
rule_id = product_id.product_tmpl_id.subcontracting_service_proc_rule_id
if rule_id:
return rule_id
return res
class ProcurementRule(models.Model):
_inherit = 'procurement.rule'
......
......@@ -13,5 +13,16 @@
</field>
</record>
<record id="product_template_emu_custom_view_form" model="ir.ui.view">
<field name="name">product_template_emu_custom_view_form</field>
<field name="model">product.template</field>
<field name="inherit_id" ref="product.product_template_form_view"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='type']" position="after">
<field name="subcontracting_service_proc_rule_id" attrs="{'invisible': [('type', '!=', 'service')]}"/>
</xpath>
</field>
</record>
</data>
</odoo>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment