Created
September 4, 2018 13:17
-
-
Save gulp/f5ad78e96ccdffc0c02c28d1e0945a7b 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 -> Multiple items added to allocated | |
Packaging | |
Allocated pack | |
Single item added to allocated | |
Multiple items added to allocated | |
scan new pack -> New pack added | |
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