-
-
Notifications
You must be signed in to change notification settings - Fork 193
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
[14.0][IMP] shopfloor zone picking improve select_line endpoint/state #727
[14.0][IMP] shopfloor zone picking improve select_line endpoint/state #727
Conversation
if ( | ||
this.state.data.scan_location_or_pack_first && | ||
!sublocation | ||
!sublocation && | ||
!pack | ||
) { | ||
if (this.all_lines_with_package()) { | ||
return "Scan pack"; | ||
} | ||
return "Scan location / pack"; | ||
} |
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.
if (this.state.data.scan_location_or_pack_first)
if (!pack && this.all_lines_with_package() {
return "Scan pack";
}
if (!sublocation && !pack) {
return "Scan location / pack";
}
if (any_line_with_lot) {
return "Scan product / lot";
} else {
return "Scan product";
}
}
776f2ca
to
8e31839
Compare
return "Scan product / pack / lot"; | ||
} | ||
return "Scan product / pack"; | ||
} |
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.
pack / product / lot
Why having pack after product? Or product / lot / pack
pack / product ?
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.
changed
@TDu Can you squash the fixups? |
f8a60b5
to
1863d4c
Compare
squashed |
On line selection for the zone picking scenario. Without this change the user may move a product without ever scanning the product barcode or lot. Because after scanning scanning a packge if only one line is left the next screen with the quantity picker is shown to the user, where the quantity can be changed manually or by scanning a product.
e9d295c
to
9fb2f85
Compare
rebased |
This PR has the |
/ocabot merge minor |
This PR looks fantastic, let's merge it! |
Congratulations, your PR was merged at d5cb57d. Thanks a lot for contributing to OCA. ❤️ |
ref.: rau-214 rau-215