Skip to content

Commit

Permalink
[MIG] Migration of stock_location_position to 13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
guewen committed Jan 7, 2020
1 parent 5afa969 commit a852205
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 7 deletions.
2 changes: 1 addition & 1 deletion stock_location_position/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

{
"name": "Stock Location Position",
"version": "12.0.1.0.0",
"version": "13.0.1.0.0",
"author": "BCIM, Okia, Camptocamp, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/stock-logistics-warehouse",
"summary": "Add coordinate attributes on stock location.",
Expand Down
20 changes: 14 additions & 6 deletions stock_location_position/views/stock_location.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,17 @@
<field name="model">stock.location</field>
<field name="inherit_id" ref="stock.view_location_form"/>
<field name="arch" type="xml">
<field name="posx" position="before">
<field name="corridor" />
<field name="row" />
<field name="rack" />
<field name="level" />
</field>
<group name="additional_info" position="after">
<group name="position" string="Position">
<field name="corridor" />
<field name="row" />
<field name="rack" />
<field name="level" />
<field name="posx" />
<field name="posy" />
<field name="posz" />
</group>
</group>
</field>
</record>

Expand All @@ -26,6 +31,9 @@
<field name="row" />
<field name="rack" />
<field name="level" />
<field name="posx" />
<field name="posy" />
<field name="posz" />
</xpath>

</field>
Expand Down

0 comments on commit a852205

Please sign in to comment.