Skip to content

Commit

Permalink
Merge PR #413 into 16.0
Browse files Browse the repository at this point in the history
Signed-off-by legalsylvain
  • Loading branch information
github-grap-bot committed Feb 17, 2025
2 parents 531d3bb + 4cdac94 commit c0a46ef
Show file tree
Hide file tree
Showing 22 changed files with 646 additions and 631 deletions.
10 changes: 6 additions & 4 deletions mrp_bom_wizard_production/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,24 @@
{
"name": "MRP BoM Wizard production",
"summary": "Wizard linked to Bill of Materials to help your production.",
"version": "16.0.1.1.1",
"category": "GRAP - Custom",
"version": "16.0.1.2.0",
"category": "Manufacturing",
"author": "GRAP",
"website": "https://github.com/grap/grap-odoo-custom",
"license": "AGPL-3",
"depends": [
# OCA modules
"mrp_bom_simple_packaging_description",
"mrp_bom_product_price_margin",
"mrp_bom_simple_report",
"mrp_bom_simple_packaging_description",
],
"data": [
"security/ir.model.access.csv",
"data/report_paperformat.xml",
"report/report_bom_purchase_list.xml",
"report/report_bom_wizard_production.xml",
"report/ir_actions_report.xml",
"wizard/view_bom_print_purchase_list_wizard.xml",
"wizard/view_bom_wizard_production.xml",
"views/action.xml",
"views/menu.xml",
],
Expand Down
6 changes: 3 additions & 3 deletions mrp_bom_wizard_production/data/report_paperformat.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
-->
<odoo>

<record id="paper_format_purchase_list" model="report.paperformat">
<field name="name">BoM Purchase Print Format</field>
<record id="paper_format_bom_wizard_production" model="report.paperformat">
<field name="name">BoM Wizard Production Format</field>
<field name="format">A4</field>
<field name="page_height">0</field>
<field name="page_width">0</field>
Expand All @@ -16,7 +16,7 @@ License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
<field name="margin_bottom">10</field>
<field name="margin_left">5</field>
<field name="margin_right">5</field>
<field name="dpi">90</field>
<field name="dpi">75</field>
</record>

</odoo>
196 changes: 88 additions & 108 deletions mrp_bom_wizard_production/i18n/fr.po

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion mrp_bom_wizard_production/report/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from . import report_bom_purchase_list
from . import report_bom_wizard_production
10 changes: 5 additions & 5 deletions mrp_bom_wizard_production/report/ir_actions_report.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
-->
<odoo>

<record id="bom_purchase_list" model="ir.actions.report">
<field name="model">report.bom.purchase.list</field>
<field name="name">BoM Purchase List</field>
<record id="bom_wizard_production" model="ir.actions.report">
<field name="model">report.bom.wizard.production</field>
<field name="name">BoM Wizard Production</field>
<field name="report_type">qweb-pdf</field>
<field name="report_name">mrp_bom_wizard_production.report_bom_purchase_list</field>
<field name="report_name">mrp_bom_wizard_production.report_bom_wizard_production</field>
<field name="attachment_use">False</field>
<field name="paperformat_id" ref="paper_format_purchase_list"/>
<field name="paperformat_id" ref="paper_format_bom_wizard_production"/>
</record>

</odoo>
Loading

0 comments on commit c0a46ef

Please sign in to comment.