mirror of
https://github.com/bringout/oca-technical.git
synced 2026-04-20 05:52:01 +02:00
Initial commit: OCA Technical packages (595 packages)
This commit is contained in:
commit
2cc02aac6e
24950 changed files with 2318079 additions and 0 deletions
|
|
@ -0,0 +1,75 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<!-- Copyright 2017-24 ForgeFlow S.L. (https://www.forgeflow.com)
|
||||
License AGPL-3.0 or later (http://www.gnu.org/licenses/lgpl-3.0) -->
|
||||
<odoo>
|
||||
<record id="view_ddmrp_adjustment_tree" model="ir.ui.view">
|
||||
<field name="name">ddmrp.adjustment.tree</field>
|
||||
<field name="model">ddmrp.adjustment</field>
|
||||
<field name="arch" type="xml">
|
||||
<tree editable="top">
|
||||
<field name="buffer_id" />
|
||||
<field name="product_id" />
|
||||
<field name="location_id" />
|
||||
<field name="date_range_id" />
|
||||
<field name="adjustment_type" />
|
||||
<field name="value" />
|
||||
<field name="company_id" groups="base.group_multi_company" />
|
||||
</tree>
|
||||
</field>
|
||||
</record>
|
||||
<record id="view_ddmrp_adjustment_search" model="ir.ui.view">
|
||||
<field name="name">ddmrp.adjustment.search</field>
|
||||
<field name="model">ddmrp.adjustment</field>
|
||||
<field name="arch" type="xml">
|
||||
<search>
|
||||
<field name="buffer_id" />
|
||||
<field name="product_id" />
|
||||
<field name="location_id" />
|
||||
<field name="adjustment_type" />
|
||||
<field name="company_id" groups="base.group_multi_company" />
|
||||
<filter
|
||||
name="current"
|
||||
string="Affecting Currently"
|
||||
domain="[
|
||||
('date_end', '>=', context_today().strftime('%Y-%m-%d')),
|
||||
('date_start', '<=', context_today().strftime('%Y-%m-%d'))]"
|
||||
/>
|
||||
<filter
|
||||
name="not_expired"
|
||||
string="Not Expired"
|
||||
domain="['|', ('date_end', '=', False), ('date_end', '>', context_today().strftime('%Y-%m-%d'))]"
|
||||
/>
|
||||
<group expand="1" string="Group By">
|
||||
<filter
|
||||
string="Buffer"
|
||||
name="group_buffer"
|
||||
context="{'group_by':'buffer_id'}"
|
||||
/>
|
||||
</group>
|
||||
</search>
|
||||
</field>
|
||||
</record>
|
||||
<record id="view_ddmrp_adjustment_graph" model="ir.ui.view">
|
||||
<field name="name">ddmrp.adjustment.graph</field>
|
||||
<field name="model">ddmrp.adjustment</field>
|
||||
<field name="arch" type="xml">
|
||||
<graph>
|
||||
<field name="date_range_id" type="column" />
|
||||
<field name="value" type="measure" />
|
||||
</graph>
|
||||
</field>
|
||||
</record>
|
||||
<record id="ddmrp_adjustment_action" model="ir.actions.act_window">
|
||||
<field name="name">Buffer Adjustments</field>
|
||||
<field name="type">ir.actions.act_window</field>
|
||||
<field name="res_model">ddmrp.adjustment</field>
|
||||
<field name="view_mode">tree,graph,form</field>
|
||||
<field name="context">{"search_default_not_expired": 1}</field>
|
||||
</record>
|
||||
<menuitem
|
||||
id="menu_ddmrp_adjustment"
|
||||
parent="stock_demand_estimate.stock_demand_planning_menu"
|
||||
action="ddmrp_adjustment_action"
|
||||
sequence="50"
|
||||
/>
|
||||
</odoo>
|
||||
Loading…
Add table
Add a link
Reference in a new issue