Skip to content

Commit

Permalink
Merge PR OCA#1032 into 13.0
Browse files Browse the repository at this point in the history
Signed-off-by LoisRForgeFlow
  • Loading branch information
OCA-git-bot committed May 4, 2023
2 parents 90849b8 + cdf8aa9 commit 85a5add
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions mrp_multi_level/views/mrp_move_views.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<record id="mrp_move_view_tree" model="ir.ui.view">
<field name="name">mrp.move.tree</field>
<field name="model">mrp.move</field>
<field name="arch" type="xml">
<tree string="MRP Moves">
<field name="mrp_date" />
<field name="current_date" />
<field name="mrp_origin" />
<field name="state" />
<field name="mrp_order_number" />
<field name="parent_product_id" />
<field name="name" />
<field name="mrp_qty" />
<field name="current_qty" />
<field name="mrp_type" />
<field name="planned_order_up_ids" />
</tree>
</field>
</record>

<record id="mrp_move_view_form" model="ir.ui.view">
<field name="name">mrp.move.form</field>
<field name="model">mrp.move</field>
Expand Down Expand Up @@ -68,4 +88,11 @@
</form>
</field>
</record>

<record id="mrp_move_action" model="ir.actions.act_window">
<field name="name">MRP Moves</field>
<field name="res_model">mrp.move</field>
<field name="type">ir.actions.act_window</field>
<field name="view_mode">tree,form</field>
</record>
</odoo>

0 comments on commit 85a5add

Please sign in to comment.