[MIG][15.0] stock_location_position:Migration to 15.0

This commit is contained in:
Ruchir Shukla
2024-04-24 11:11:03 +05:30
parent 54f569a0ba
commit 4dd66232db
2 changed files with 5 additions and 5 deletions

View File

@@ -4,7 +4,7 @@
{
"name": "Stock Location Position",
"version": "14.0.1.0.0",
"version": "15.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.",

View File

@@ -10,10 +10,10 @@ class StockLocation(models.Model):
_inherit = "stock.location"
corridor = fields.Char("Corridor", help="Define as the street")
row = fields.Char("Row", help="Define as the side within the street")
rack = fields.Char("Rack", help="Define as the house number within the street")
level = fields.Char("Level", help="Define as the floor of the house")
corridor = fields.Char(help="Define as the street")
row = fields.Char(help="Define as the side within the street")
rack = fields.Char(help="Define as the house number within the street")
level = fields.Char(help="Define as the floor of the house")
posx = fields.Integer(
"Box (X)",
help="Optional (X) coordinate of the bin if the location"