mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
Add tooltips
This commit is contained in:
committed by
Tran Thanh Phuc
parent
aaea2610f9
commit
49ce4edf60
@@ -10,10 +10,22 @@ class StockLocation(models.Model):
|
|||||||
|
|
||||||
_inherit = "stock.location"
|
_inherit = "stock.location"
|
||||||
|
|
||||||
corridor = fields.Char("Corridor")
|
corridor = fields.Char("Corridor", help="Define as the street")
|
||||||
row = fields.Char("Row")
|
row = fields.Char("Row", help="Define as the side within the street")
|
||||||
rack = fields.Char("Rack")
|
rack = fields.Char("Rack", help="Define as the house number within the street")
|
||||||
level = fields.Char("Level")
|
level = fields.Char("Level", help="Define as the floor of the house")
|
||||||
posx = fields.Integer("Box (X)")
|
posx = fields.Integer(
|
||||||
posy = fields.Integer("Box (Y)")
|
"Box (X)",
|
||||||
posz = fields.Integer("Box (Z)")
|
help="Optional (X) coordinate of the bin if the location"
|
||||||
|
" is split in several parts. (e.g. drawer storage)",
|
||||||
|
)
|
||||||
|
posy = fields.Integer(
|
||||||
|
"Box (Y)",
|
||||||
|
help="Optional (Y) coordinate of the bin if the location"
|
||||||
|
" is split in several parts. (e.g. drawer storage)",
|
||||||
|
)
|
||||||
|
posz = fields.Integer(
|
||||||
|
"Box (Z)",
|
||||||
|
help="Optional (Z) coordinate of the bin if the location"
|
||||||
|
" is split in several parts. (e.g. storage tray)",
|
||||||
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user