-
-
Notifications
You must be signed in to change notification settings - Fork 729
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[WMS][12.0] Add stock_location_attribute (split from stock_location_zone) #712
[WMS][12.0] Add stock_location_attribute (split from stock_location_zone) #712
Conversation
@grindtildeath Maybe another name for this module as I don't really like generic names. Maybe more 'functional' oriented one (I don't know which one 😄 ). |
|
I personally like stock_location_position or stock_location_map |
|
||
_inherit = 'stock.location' | ||
|
||
corridor = fields.Char('Corridor') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
help="Define as the street"
|
||
corridor = fields.Char('Corridor') | ||
row = fields.Char('Row') | ||
rack = fields.Char('Rack') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
help="Define as the house number within the street"
corridor = fields.Char('Corridor') | ||
row = fields.Char('Row') | ||
rack = fields.Char('Rack') | ||
level = fields.Char('Level') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
help="Define as the floor of the house"
_inherit = 'stock.location' | ||
|
||
corridor = fields.Char('Corridor') | ||
row = fields.Char('Row') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
help="Define as the side within the street"
row = fields.Char('Row') | ||
rack = fields.Char('Rack') | ||
level = fields.Char('Level') | ||
posx = fields.Integer('Box (X)') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
help="Optional (X) coordinate of the bin if the location is split in several part. e.g. drawer storage"
rack = fields.Char('Rack') | ||
level = fields.Char('Level') | ||
posx = fields.Integer('Box (X)') | ||
posy = fields.Integer('Box (Y)') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
help="Optional (Y) coordinate of the bin if the location is split in several part. e.g. drawer storage"
level = fields.Char('Level') | ||
posx = fields.Integer('Box (X)') | ||
posy = fields.Integer('Box (Y)') | ||
posz = fields.Integer('Box (Z)') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
help="Optional (Z) coordinate of the bin if the location is split in several part. e.g. storage tray"
Replaced by #805. Changes asked here are done for 13.0. |
Followup to #653