[IMP] stock_location_position: black, isort, prettier

This commit is contained in:
Thierry Ducrest
2022-10-10 10:52:29 +02:00
parent 8c9be5a1dc
commit 8c91f76a08
3 changed files with 11 additions and 4 deletions

View File

@@ -0,0 +1 @@
../../../../stock_location_position

View File

@@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

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"