From 4dd66232db010a54db4dd08640e2b9195b755ac4 Mon Sep 17 00:00:00 2001 From: Ruchir Shukla Date: Wed, 24 Apr 2024 11:11:03 +0530 Subject: [PATCH] [MIG][15.0] stock_location_position:Migration to 15.0 --- stock_location_position/__manifest__.py | 2 +- stock_location_position/models/stock_location.py | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/stock_location_position/__manifest__.py b/stock_location_position/__manifest__.py index 2b5189b80..3b01ef917 100644 --- a/stock_location_position/__manifest__.py +++ b/stock_location_position/__manifest__.py @@ -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.", diff --git a/stock_location_position/models/stock_location.py b/stock_location_position/models/stock_location.py index 537700303..bee77c275 100644 --- a/stock_location_position/models/stock_location.py +++ b/stock_location_position/models/stock_location.py @@ -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"