pos_usability: add pos_type_id on warehouse form view
This commit is contained in:
@@ -35,6 +35,7 @@ Akretion:
|
|||||||
"views/pos_config.xml",
|
"views/pos_config.xml",
|
||||||
"views/product.xml",
|
"views/product.xml",
|
||||||
"views/pos_payment_method.xml",
|
"views/pos_payment_method.xml",
|
||||||
|
"views/stock_warehouse.xml",
|
||||||
],
|
],
|
||||||
"installable": True,
|
"installable": True,
|
||||||
}
|
}
|
||||||
|
|||||||
20
pos_usability/views/stock_warehouse.xml
Normal file
20
pos_usability/views/stock_warehouse.xml
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
Copyright 2024 Akretion France (http://www.akretion.com/)
|
||||||
|
@author: Alexis de Lattre <alexis.delattre@akretion.com>
|
||||||
|
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||||
|
-->
|
||||||
|
|
||||||
|
<odoo>
|
||||||
|
|
||||||
|
<record id="view_warehouse" model="ir.ui.view">
|
||||||
|
<field name="model">stock.warehouse</field>
|
||||||
|
<field name="inherit_id" ref="stock.view_warehouse"/>
|
||||||
|
<field name="arch" type="xml">
|
||||||
|
<field name="out_type_id" position="after">
|
||||||
|
<field name="pos_type_id"/>
|
||||||
|
</field>
|
||||||
|
</field>
|
||||||
|
</record>
|
||||||
|
|
||||||
|
</odoo>
|
||||||
Reference in New Issue
Block a user