Initial commit: OCA Technical packages (595 packages)

This commit is contained in:
Ernad Husremovic 2025-08-29 15:43:03 +02:00
commit 2cc02aac6e
24950 changed files with 2318079 additions and 0 deletions

View file

@ -0,0 +1,46 @@
<?xml version="1.0" encoding="utf-8" ?>
<!-- Copyright 2017 ForgeFlow S.L. (https://www.forgeflow.com)
License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl-3.0) -->
<odoo>
<record id="view_ddmrp_history_tree" model="ir.ui.view">
<field name="name">ddmrp.history.tree</field>
<field name="model">ddmrp.history</field>
<field name="arch" type="xml">
<tree create="0">
<field name="buffer_id" />
<field name="adu" />
<field name="top_of_green" />
<field name="top_of_yellow" />
<field name="top_of_red" />
<field name="net_flow_position" />
<field name="on_hand_position" />
<field name="date" />
<field
name="company_id"
groups="base.group_multi_company"
optional="hide"
/>
</tree>
</field>
</record>
<record id="view_ddmrp_history_search" model="ir.ui.view">
<field name="name">ddmrp.history.search</field>
<field name="model">ddmrp.history</field>
<field name="arch" type="xml">
<search>
<field name="buffer_id" />
</search>
</field>
</record>
<record id="action_ddmrp_history" model="ir.actions.act_window">
<field name="name">DDMRP Buffer History</field>
<field name="res_model">ddmrp.history</field>
<field name="view_mode">tree,pivot,graph</field>
</record>
<menuitem
name="DDMRP Buffer History"
parent="stock.menu_warehouse_report"
action="action_ddmrp_history"
id="menu_ddmrp_history"
/>
</odoo>

View file

@ -0,0 +1,34 @@
<?xml version="1.0" encoding="utf-8" ?>
<!-- Copyright 2017-19 ForgeFlow S.L. (https://www.forgeflow.com)
License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl-3.0) -->
<odoo>
<record id="stock_buffer_view_form" model="ir.ui.view">
<field name="name">stock.buffer.form - ddmrp_history</field>
<field name="model">stock.buffer</field>
<field name="inherit_id" ref="ddmrp.stock_buffer_view_form" />
<field name="arch" type="xml">
<notebook position="inside">
<page name="planning_history" string="Planning Chart">
<div style="margin-top: 1em;">
<field
name="planning_history_chart"
style="width:100%"
widget="bokeh_chart"
nolabel="1"
/>
</div>
</page>
<page name="execution_history" string="Execution Chart">
<div style="margin-top: 1em;">
<field
name="execution_history_chart"
style="width:100%"
widget="bokeh_chart"
nolabel="1"
/>
</div>
</page>
</notebook>
</field>
</record>
</odoo>