Skip to content
Snippets Groups Projects
Commit 85ed6a31 authored by Khoi Nguyen's avatar Khoi Nguyen
Browse files

[REF] mrp: Enabling Work Orders installs quality_mrp

This commit applies the following changes to the MRP settings:

- Ticking 'Work Orders' installs quality_mrp;
- quality_mrp is removed if 'Work Orders' are disabled;
- The quality_mrp section has been removed;
parent 33aa89ed
No related branches found
No related tags found
No related merge requests found
......@@ -35,3 +35,7 @@ class ResConfigSettings(models.TransientModel):
def _onchange_use_manufacturing_lead(self):
if not self.use_manufacturing_lead:
self.manufacturing_lead = 0.0
@api.onchange('group_mrp_routings')
def _onchange_group_mrp_routings(self):
self.module_quality_mrp = self.group_mrp_routings
......@@ -13,7 +13,8 @@
<div class="row mt16 o_settings_container">
<div class="col-md-6 col-xs-12 o_setting_box" id="work_order" title="Work Order Operations allow you to create and manage the manufacturing operations that should be followed within your work centers in order to produce a product. They are attached to bills of materials that will define the required raw materials.">
<div class="o_setting_left_pane">
<field name="group_mrp_routings"/>
<field name="group_mrp_routings" widget="upgrade_boolean"/>
<field name="module_quality_mrp" invisible="1"/>
</div>
<div class="o_setting_right_pane">
<label for="group_mrp_routings"/>
......@@ -32,17 +33,6 @@
</div>
</div>
</div>
<div class="col-md-6 col-xs-12 o_setting_box" id="mrp_quality">
<div class="o_setting_left_pane">
<field name="module_quality_mrp" widget="upgrade_boolean"/>
</div>
<div class="o_setting_right_pane">
<label for="module_quality_mrp"/>
<div class="text-muted">
Manage quality control points, quality checks and quality alerts
</div>
</div>
</div>
<div class="col-md-6 col-xs-12 o_setting_box" id="mrp_repair">
<div class="o_setting_left_pane">
<field name="module_mrp_repair"/>
......
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