-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpick_tasks_sample.json
80 lines (80 loc) · 2.46 KB
/
pick_tasks_sample.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"tasks": [
{
"orders": [
{
"orderId": 1,
"receivingBinTag": "C11",
"sourceBins": [
{
"binTag": "A23",
"numItems": 1
},
{
"binTag": "A31",
"numItems": 1
},
{
"binTag": "B23",
"numItems": 1
},
{
"binTag": "B13",
"numItems": 1
},
{
"binTag": "B11",
"numItems": 2
}
]
},
{
"orderId": 2,
"receivingBinTag": "C12",
"sourceBins": [
{
"binTag": "A13",
"numItems": 1
},
{
"binTag": "B43",
"numItems": 2
},
{
"binTag": "B32",
"numItems": 1
}
]
},
{
"orderId": 3,
"receivingBinTag": "C13",
"sourceBins": [
{
"binTag": "B12",
"numItems": 1
},
{
"binTag": "B21",
"numItems": 1
},
{
"binTag": "B11",
"numItems": 1
},
{
"binTag": "B32",
"numItems": 1
},
{
"binTag": "B22",
"numItems": 1
}
]
}
],
"taskId": 1,
"isTrainingTask": true
}
]
}