Last active
September 4, 2018 08:34
-
-
Save gulp/1b337d3d09f2c2a79e97ed716dc09479 to your computer and use it in GitHub Desktop.
Bin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Bin | |
Has single item | |
scan an item -> Single item added | |
Has multiple items* | |
scan multiple items -> Multiple items selected | |
Multiple items selected | |
scan pack -> How many to move? | |
How many to move? | |
enter qty each -> Multiple items added to allocated | |
distribute evenly -> Multiple items added to allocated | |
Packaging& | |
Current pack | |
Allocated pack* | |
New pack added | |
Items added | |
Single item added to allocate | |
Multiple items added to allocated | |
scan new pack -> New pack added | |
Active | |
Single item added | |
scan pack -> Single item and single pack | |
Shipped | |
Single item and single pack |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function render(model){ | |
let current_state_name = model.active_states[0].name; | |
return $("h1", | |
{style: {color: "darkBlue"}}, | |
`The current state is: ${current_state_name}`); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment