diff options
| author | IT Fixcomart <it@fixcomart.co.id> | 2023-10-03 07:05:14 +0000 |
|---|---|---|
| committer | IT Fixcomart <it@fixcomart.co.id> | 2023-10-03 07:05:14 +0000 |
| commit | 19e0be70679ed862453fedeba14fb4cdf02232e9 (patch) | |
| tree | 69b578c47cc17ae477c58d8bda718d823b998b20 /indoteknik_custom/views/stock_move_line.xml | |
| parent | 78f205302c35cab2512971d64c8152aab2dcfa95 (diff) | |
| parent | d238f43442cc27db0d0c05bba99b42b41eaadf54 (diff) | |
Merged in production (pull request #128)
Production
Diffstat (limited to 'indoteknik_custom/views/stock_move_line.xml')
| -rw-r--r-- | indoteknik_custom/views/stock_move_line.xml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/indoteknik_custom/views/stock_move_line.xml b/indoteknik_custom/views/stock_move_line.xml new file mode 100644 index 00000000..757d2522 --- /dev/null +++ b/indoteknik_custom/views/stock_move_line.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<odoo> + <record id="stock_move_line_form_view_inherited" model="ir.ui.view"> + <field name="name">Stock Move Line</field> + <field name="model">stock.move.line</field> + <field name="inherit_id" ref="stock.view_move_line_form" /> + <field name="arch" type="xml"> + <field name="qty_done" position="after"> + <field name="manufacture"/> + </field> + </field> + </record> + + <record id="stock_move_line_tree_view_inherited" model="ir.ui.view"> + <field name="name">Stock Move Line</field> + <field name="model">stock.move.line</field> + <field name="inherit_id" ref="stock.view_move_line_tree" /> + <field name="arch" type="xml"> + <field name="product_id" position="after"> + <field name="manufacture"/> + </field> + </field> + </record> +</odoo> |
