@things-factory/operato-wms 4.3.752 → 4.3.755

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (78) hide show
  1. package/client/pages/inbound/unload-product.js +30 -33
  2. package/client/pages/outbound/loading-product.js +2 -3
  3. package/client/pages/outbound/loading-v2/loading-execution-base.js +568 -56
  4. package/client/pages/outbound/loading-v2/loading-execution.js +258 -8
  5. package/client/pages/outbound/loading-v2/loading.js +82 -12
  6. package/client/pages/outbound/picking-product.js +11 -6
  7. package/client/pages/outbound/picking-v2/picking-execution-base.js +8 -8
  8. package/client/pages/outbound/picking-v2/picking-execution.js +75 -0
  9. package/client/pages/outbound/route-label-history-dialog.js +253 -0
  10. package/client/pages/outbound/route-label-popup.js +637 -131
  11. package/client/pages/outbound/show-ro-list-popup.js +8 -4
  12. package/client/pages/outbound/single-outbound-worksheet.js +55 -6
  13. package/client/pages/outbound/sorting-product.js +71 -25
  14. package/client/pages/outbound/zone-worksheet.js +62 -3
  15. package/dist-server/entities/index.js +9 -0
  16. package/dist-server/entities/index.js.map +1 -0
  17. package/dist-server/entities/route-label-sequence-counter.js +75 -0
  18. package/dist-server/entities/route-label-sequence-counter.js.map +1 -0
  19. package/dist-server/entities/route-label-sequence-log.js +74 -0
  20. package/dist-server/entities/route-label-sequence-log.js.map +1 -0
  21. package/dist-server/graphql/resolvers/index.js +3 -0
  22. package/dist-server/graphql/resolvers/index.js.map +1 -1
  23. package/dist-server/graphql/resolvers/outbound/complete-load.js +40 -3
  24. package/dist-server/graphql/resolvers/outbound/complete-load.js.map +1 -1
  25. package/dist-server/graphql/resolvers/outbound/find-loadable-release-good-by-bin.js +50 -11
  26. package/dist-server/graphql/resolvers/outbound/find-loadable-release-good-by-bin.js.map +1 -1
  27. package/dist-server/graphql/resolvers/outbound/find-loadable-release-good.js +90 -48
  28. package/dist-server/graphql/resolvers/outbound/find-loadable-release-good.js.map +1 -1
  29. package/dist-server/graphql/resolvers/outbound/loading-worksheet-v2.js +15 -7
  30. package/dist-server/graphql/resolvers/outbound/loading-worksheet-v2.js.map +1 -1
  31. package/dist-server/graphql/resolvers/outbound/sort-item.js +95 -16
  32. package/dist-server/graphql/resolvers/outbound/sort-item.js.map +1 -1
  33. package/dist-server/graphql/resolvers/route-label/index.js +7 -0
  34. package/dist-server/graphql/resolvers/route-label/index.js.map +1 -0
  35. package/dist-server/graphql/resolvers/route-label/route-label.js +220 -0
  36. package/dist-server/graphql/resolvers/route-label/route-label.js.map +1 -0
  37. package/dist-server/graphql/resolvers/zone-worksheet/index.js.map +1 -1
  38. package/dist-server/graphql/resolvers/zone-worksheet/zone-picking.js +123 -27
  39. package/dist-server/graphql/resolvers/zone-worksheet/zone-picking.js.map +1 -1
  40. package/dist-server/graphql/resolvers/zone-worksheet/zone-worksheet.js.map +1 -1
  41. package/dist-server/graphql/types/index.js +4 -0
  42. package/dist-server/graphql/types/index.js.map +1 -1
  43. package/dist-server/graphql/types/outbound/index.js +7 -1
  44. package/dist-server/graphql/types/outbound/index.js.map +1 -1
  45. package/dist-server/graphql/types/route-label/index.js +14 -0
  46. package/dist-server/graphql/types/route-label/index.js.map +1 -0
  47. package/dist-server/graphql/types/route-label/route-label-sequence.js +53 -0
  48. package/dist-server/graphql/types/route-label/route-label-sequence.js.map +1 -0
  49. package/dist-server/index.js +5 -0
  50. package/dist-server/index.js.map +1 -1
  51. package/dist-server/validators/setting-validators.js +519 -0
  52. package/dist-server/validators/setting-validators.js.map +1 -0
  53. package/helps/operato-wms/outbound/picking-product.en.md +156 -158
  54. package/package.json +50 -50
  55. package/server/entities/index.ts +6 -0
  56. package/server/entities/route-label-sequence-counter.ts +56 -0
  57. package/server/entities/route-label-sequence-log.ts +47 -0
  58. package/server/graphql/resolvers/index.ts +3 -0
  59. package/server/graphql/resolvers/outbound/complete-load.ts +42 -1
  60. package/server/graphql/resolvers/outbound/find-loadable-release-good-by-bin.ts +56 -13
  61. package/server/graphql/resolvers/outbound/find-loadable-release-good.ts +120 -57
  62. package/server/graphql/resolvers/outbound/loading-worksheet-v2.ts +9 -2
  63. package/server/graphql/resolvers/outbound/sort-item.ts +125 -21
  64. package/server/graphql/resolvers/route-label/index.ts +16 -0
  65. package/server/graphql/resolvers/route-label/route-label.ts +264 -0
  66. package/server/graphql/resolvers/zone-worksheet/index.ts +2 -2
  67. package/server/graphql/resolvers/zone-worksheet/zone-picking.ts +156 -39
  68. package/server/graphql/resolvers/zone-worksheet/zone-worksheet.ts +1 -2
  69. package/server/graphql/types/index.ts +4 -0
  70. package/server/graphql/types/outbound/index.ts +7 -1
  71. package/server/graphql/types/route-label/index.ts +18 -0
  72. package/server/graphql/types/route-label/route-label-sequence.ts +50 -0
  73. package/server/index.ts +7 -1
  74. package/server/validators/setting-validators.ts +668 -0
  75. package/translations/en.json +280 -252
  76. package/translations/ko.json +29 -1
  77. package/translations/ms.json +28 -0
  78. package/translations/zh.json +28 -0
@@ -4,225 +4,223 @@
4
4
 
5
5
  ![picking worksheet list](../images/picking-product-worksheet-list.png)
6
6
 
7
- | | | |
8
- |:-:| :-------------------- |:--------------------------------------------------------------------- |
9
- | A | Picking Type | Picking: Single Release Order <br/>Batch picking: Multiple Release Order|
10
- | B | My Worksheet List | List of executing worksheet |
11
- | C | Pending Worksheet List | List of deactivated picking worksheet |
12
- | D | Picking Worksheet List | List of activated picking worksheet |
7
+ | | | |
8
+ | :-: | :--------------------- | :----------------------------------------------------------------------- |
9
+ | A | Picking Type | Picking: Single Release Order <br/>Batch picking: Multiple Release Order |
10
+ | B | My Worksheet List | List of executing worksheet |
11
+ | C | Pending Worksheet List | List of deactivated picking worksheet |
12
+ | D | Picking Worksheet List | List of activated picking worksheet |
13
13
 
14
14
  ## Case 1:
15
15
 
16
- ### <center> **Hub Setting** </center>
16
+ ### <center> **Hub Setting** </center>
17
17
 
18
- | **Name** | **Value** | **Description** |
18
+ | **Name** | **Value** | **Description** |
19
19
  | :--------------: | :-------: | :---------------------------------------------: |
20
- | enable-input-qty | 2 | Enable quantity field for b2c single picking |
20
+ | enable-input-qty | 2 | Enable quantity field for b2c single picking |
21
21
  | | 3 | Enable quantity field for b2b/b2c batch picking |
22
- | | | Enable quantity field for b2c single picking |
22
+ | | | Enable quantity field for b2c single picking |
23
23
 
24
24
  ![picking product label](../images/picking-product-worksheet-ro.png)
25
25
  ![picking product label](../images/picking-product-worksheet-choose.png)
26
26
 
27
- | | | |
28
- |:-:| :-------------------- |:--------------------------------------------------------------------- |
29
- | A | Picking Type | Picking: Single Release Order <br/>Batch picking: Multiple Release Order|
30
- | B | RO No. | Scan RO No. |
31
- | C | Lot Id | Scan Lot |
32
- | D | Picked Quantity | Total picked quantity |
33
- | E | Return Location | Location name. It can be new or same as the previous location |
34
- | F | Product Description | Display RO No. & company name |
35
- | G | Product List | List of ordered product |
36
- | H | My Worksheet List | List of executing worksheet |
37
- | I | Plastic Pallet | Bing pallet with reusable pallet |
38
- | J | Missing Stock | Missing physical quantity |
27
+ | | | |
28
+ | :-: | :------------------ | :----------------------------------------------------------------------- |
29
+ | A | Picking Type | Picking: Single Release Order <br/>Batch picking: Multiple Release Order |
30
+ | B | RO No. | Scan RO No. |
31
+ | C | Lot Id | Scan Lot |
32
+ | D | Picked Quantity | Total picked quantity |
33
+ | E | Return Location | Location name. It can be new or same as the previous location |
34
+ | F | Product Description | Display RO No. & company name |
35
+ | G | Product List | List of ordered product |
36
+ | H | My Worksheet List | List of executing worksheet |
37
+ | I | Plastic Pallet | Bing pallet with reusable pallet |
38
+ | J | Missing Stock | Missing physical quantity |
39
39
 
40
40
  ## Case 2:
41
41
 
42
- ### <center> **Hub Setting** </center>
43
-
44
- | **Name** | **Value** | **Description** |
45
- | :---------------------: | :----------------: | :------------------------------: |
46
- | enable-carton-id | true | Enable carton id field |
47
- | enable-product-scanning | true | Enable product scanning field |
48
-
42
+ ### <center> **Hub Setting** </center>
49
43
 
44
+ | **Name** | **Value** | **Description** |
45
+ | :---------------------: | :-------: | :---------------------------: |
46
+ | enable-carton-id | true | Enable carton id field |
47
+ | enable-product-scanning | true | Enable product scanning field |
50
48
 
51
49
  ![picking product ro](../images/picking-product-worksheet-case2.png)
52
50
 
53
- | | | |
54
- |:-:| :----------------- |:--------------------------------------------------------------------- |
55
- | A | Picking Type | Picking: Single Release Order <br/>Batch picking: Multiple Release Order|
56
- | B | RO No. | Scan RO No. |
57
- | C | Carton Id | Scan Carton |
58
- | D | Product Barcode | Scan Barcode |
59
- | E | Product Description | Display RO No. & company name |
60
- | F | Product List | List of ordered product |
61
- | G | My Worksheet List | List of executing worksheet |
62
- | H | Plastic Pallet | Bind pallet with reusable pallet |
51
+ | | | |
52
+ | :-: | :------------------ | :----------------------------------------------------------------------- |
53
+ | A | Picking Type | Picking: Single Release Order <br/>Batch picking: Multiple Release Order |
54
+ | B | RO No. | Scan RO No. |
55
+ | C | Carton Id | Scan Carton |
56
+ | D | Product Barcode | Scan Barcode |
57
+ | E | Product Description | Display RO No. & company name |
58
+ | F | Product List | List of ordered product |
59
+ | G | My Worksheet List | List of executing worksheet |
60
+ | H | Plastic Pallet | Bind pallet with reusable pallet |
63
61
 
64
62
  ## Case 3:
65
63
 
66
- ### <center> **Hub Setting** </center>
64
+ ### <center> **Hub Setting** </center>
65
+
66
+ | **Name** | **Value** | **Description** |
67
+ | :---------------------: | :-------: | :---------------------------: |
68
+ | enable-carton-id | true | Enable carton id field |
69
+ | enable-product-scanning | true | Enable product scanning field |
67
70
 
68
- | **Name** | **Value** | **Description** |
69
- | :---------------------: | :----------------: | :------------------------------: |
70
- | enable-carton-id | true | Enable carton id field |
71
- | enable-product-scanning | true | Enable product scanning field |
72
- ### <center> **Product** </center>
73
- | | | |
74
- | :---------------------: | :--------------:| :------------------------------: |
75
- | Required Serial Number | ✔️ | Enable product serial number field |
71
+ ### <center> **Product** </center>
72
+
73
+ | | | |
74
+ | :--------------------: | :-: | :--------------------------------: |
75
+ | Required Serial Number | ✔️ | Enable product serial number field |
76
76
 
77
77
  ![picking product](../images/picking-product-worksheet-case3.png)
78
78
  ![picking product](../images/picking-product-worksheet-scan.png)
79
79
 
80
- | | | |
81
- |:-:| :----------------- |:--------------------------------------------------------------------- |
82
- | A | Picking Type | Picking: Single Release Order <br/>Batch picking: Multiple Release Order|
83
- | B | RO No. | Scan RO No. |
84
- | C | Carton Id | Scan Carton |
85
- | D | Product Barcode | Scan Barcode |
86
- | E | Serial Number | Scan Serial Number |
87
- | F | Product Description | Display RO No. & company name |
88
- | G | Product List | List of ordered product |
89
- | H | My Worksheet List | List of executing worksheet |
90
- | I | Serial Number | List of scanned Serial Number |
91
- | J | Plastic Pallet | Bind pallet with reusable pallet |
80
+ | | | |
81
+ | :-: | :------------------ | :----------------------------------------------------------------------- |
82
+ | A | Picking Type | Picking: Single Release Order <br/>Batch picking: Multiple Release Order |
83
+ | B | RO No. | Scan RO No. |
84
+ | C | Carton Id | Scan Carton |
85
+ | D | Product Barcode | Scan Barcode |
86
+ | E | Serial Number | Scan Serial Number |
87
+ | F | Product Description | Display RO No. & company name |
88
+ | G | Product List | List of ordered product |
89
+ | H | My Worksheet List | List of executing worksheet |
90
+ | I | Serial Number | List of scanned Serial Number |
91
+ | J | Plastic Pallet | Bind pallet with reusable pallet |
92
92
 
93
93
  ## Case 4:
94
94
 
95
- ### <center> **Hub Setting** </center>
95
+ ### <center> **Hub Setting** </center>
96
96
 
97
- | **Name** | **Value** | **Description** |
98
- | :---------------------: | :----------------: | :------------------------------: |
99
- | enable-carton-id | true | Enable carton id field |
100
- | enable-product-scanning | true | Enable product scanning field |
97
+ | **Name** | **Value** | **Description** |
98
+ | :---------------------: | :-------: | :---------------------------: |
99
+ | enable-carton-id | true | Enable carton id field |
100
+ | enable-product-scanning | true | Enable product scanning field |
101
101
 
102
102
  ![picking product](../images/picking-product-worksheet-case4.png)
103
103
  ![picking product](../images/picking-product-worksheet-casescan.png)
104
104
 
105
- | | | |
106
- |:-:| :----------------- |:--------------------------------------------------------------------- |
107
- | A | Picking Type | Picking: Single Release Order <br/>Batch picking: Multiple Release Order|
108
- | B | RO No. | Scan RO No. |
109
- | C | Carton Id | Scan Carton |
110
- | D | Product Barcode | Scan Barcode |
111
- | E | Product Description | Display RO No. & company name |
112
- | F | Product List | List of ordered product |
113
- | G | My Worksheet List | List of executing worksheet |
114
- | H | Plastic Pallet | Bind pallet with reusable pallet |
115
- | I | Tote | Type of bin |
116
-
105
+ | | | |
106
+ | :-: | :------------------ | :----------------------------------------------------------------------- |
107
+ | A | Picking Type | Picking: Single Release Order <br/>Batch picking: Multiple Release Order |
108
+ | B | RO No. | Scan RO No. |
109
+ | C | Carton Id | Scan Carton |
110
+ | D | Product Barcode | Scan Barcode |
111
+ | E | Product Description | Display RO No. & company name |
112
+ | F | Product List | List of ordered product |
113
+ | G | My Worksheet List | List of executing worksheet |
114
+ | H | Plastic Pallet | Bind pallet with reusable pallet |
115
+ | I | Tote | Type of bin |
117
116
 
118
117
  ## Case 5:
119
118
 
120
- ### <center> **Hub Setting** </center>
119
+ ### <center> **Hub Setting** </center>
121
120
 
122
- | **Name** | **Value** | **Description** |
123
- | :---------------------: | :----------------: | :------------------------------: |
124
- | enable-bin-picking | true | Enable the use of bin |
125
- | enable-carton-id | true | Enable carton id field |
126
- | enable-product-scanning | true | Enable product scanning field |
121
+ | **Name** | **Value** | **Description** |
122
+ | :---------------------: | :-------: | :---------------------------: |
123
+ | enable-bin-picking | true | Enable the use of bin |
124
+ | enable-carton-id | true | Enable carton id field |
125
+ | enable-product-scanning | true | Enable product scanning field |
127
126
 
128
127
  ![picking product](../images/picking-product-worksheet-case5.png)
129
128
  ![picking product](../images/picking-product-worksheet-check.png)
130
129
 
131
- | | | |
132
- |:-:| :----------------- |:--------------------------------------------------------------------- |
133
- | A | Picking Type | Picking: Single Release Order <br/>Batch picking: Multiple Release Order|
134
- | B | RO No. | Scan RO No. |
135
- | C | Carton Id | Scan Carton |
136
- | D | Product Barcode | Scan Barcode |
137
- | E | Serial Number | Scan Serial Number |
138
- | F | Product Description | Display RO No. & company name |
139
- | G | Product List | List of ordered product |
140
- | H | My Worksheet List | List of executing worksheet |
141
- | I | Serial Number | List of scanned Serial Number |
142
- | J | Plastic Pallet | Bind pallet with reusable pallet |
143
-
130
+ | | | |
131
+ | :-: | :------------------ | :----------------------------------------------------------------------- |
132
+ | A | Picking Type | Picking: Single Release Order <br/>Batch picking: Multiple Release Order |
133
+ | B | RO No. | Scan RO No. |
134
+ | C | Carton Id | Scan Carton |
135
+ | D | Product Barcode | Scan Barcode |
136
+ | E | Serial Number | Scan Serial Number |
137
+ | F | Product Description | Display RO No. & company name |
138
+ | G | Product List | List of ordered product |
139
+ | H | My Worksheet List | List of executing worksheet |
140
+ | I | Serial Number | List of scanned Serial Number |
141
+ | J | Plastic Pallet | Bind pallet with reusable pallet |
144
142
 
145
143
  ## Case 6:
146
144
 
147
- ### <center> **Hub Setting** </center>
145
+ ### <center> **Hub Setting** </center>
148
146
 
149
- | **Name** | **Value** | **Description** |
150
- | :---------------------: | :----------------: | :-------------------------------------------: |
151
- | enable-bin-picking | true | Enable the use of bin |
152
- | enable-carton-id | true | Enable carton id field |
153
- | enable-product-scanning | true | Enable product scanning field |
154
- | enable-input-qty | 2 | Enable quantity field for b2c single picking |
155
- | | 3 | Enable quantity field for b2b/b2c batch picking |
156
- | | | Enable quantity field for b2c single picking |
147
+ | **Name** | **Value** | **Description** |
148
+ | :---------------------: | :-------: | :---------------------------------------------: |
149
+ | enable-bin-picking | true | Enable the use of bin |
150
+ | enable-carton-id | true | Enable carton id field |
151
+ | enable-product-scanning | true | Enable product scanning field |
152
+ | enable-input-qty | 2 | Enable quantity field for b2c single picking |
153
+ | | 3 | Enable quantity field for b2b/b2c batch picking |
154
+ | | | Enable quantity field for b2c single picking |
157
155
 
158
156
  ![picking product](../images/picking-product-worksheet-case6.png)
159
157
  ![picking product](../images/picking-product-worksheet-multiple.png)
160
158
 
161
- | | | |
162
- |:-:| :----------------- |:--------------------------------------------------------------------- |
163
- | A | Picking Type | Picking: Single Release Order <br/>Batch picking: Multiple Release Order|
164
- | B | RO No. | Scan RO No. |
165
- | C | Bin Location | Scan Bin |
166
- | D | Carton Id | Scan Carton |
167
- | E | Product Barcode | Scan Barcode |
168
- | F | Picked Quantity | Total picked quantity |
169
- | G | Product Description | Display RO No. & company name |
170
- | H | Product List | List of ordered product |
171
- | I | Get Task | |
172
- | J | My Worksheet List | List of executing worksheet |
173
- | K | Plastic Pallet | Bind pallet with reusable pallet |
159
+ | | | |
160
+ | :-: | :------------------ | :----------------------------------------------------------------------- |
161
+ | A | Picking Type | Picking: Single Release Order <br/>Batch picking: Multiple Release Order |
162
+ | B | RO No. | Scan RO No. |
163
+ | C | Bin Location | Scan Bin |
164
+ | D | Carton Id | Scan Carton |
165
+ | E | Product Barcode | Scan Barcode |
166
+ | F | Picked Quantity | Total picked quantity |
167
+ | G | Product Description | Display RO No. & company name |
168
+ | H | Product List | List of ordered product |
169
+ | I | Get Task | |
170
+ | J | My Worksheet List | List of executing worksheet |
171
+ | K | Plastic Pallet | Bind pallet with reusable pallet |
174
172
 
175
173
  ## Case 7:
176
174
 
177
- ### <center> **Hub Setting** </center>
175
+ ### <center> **Hub Setting** </center>
178
176
 
179
- | **Name** | **Value** | **Description** |
180
- | :---------------------: | :----------------: | :-------------------------------------------: |
181
- | enable-carton-id | true | Enable carton id field |
182
- | enable-product-scanning | true | Enable product scanning field |
183
- | enable-input-qty | 2 | Enable quantity field for b2c single picking |
184
- | | 3 | Enable quantity field for b2b/b2c batch picking |
185
- | | | Enable quantity field for b2c single picking |
177
+ | **Name** | **Value** | **Description** |
178
+ | :---------------------: | :-------: | :---------------------------------------------: |
179
+ | enable-carton-id | true | Enable carton id field |
180
+ | enable-product-scanning | true | Enable product scanning field |
181
+ | enable-input-qty | 2 | Enable quantity field for b2c single picking |
182
+ | | 3 | Enable quantity field for b2b/b2c batch picking |
183
+ | | | Enable quantity field for b2c single picking |
186
184
 
187
185
  ![product picking](../images/picking-product-worksheet-case7.png)
188
186
 
189
- | | | |
190
- |:-:| :----------------- |:--------------------------------------------------------------------- |
191
- | A | Picking Type | Picking: Single Release Order <br/>Batch picking: Multiple Release Order|
192
- | B | RO No. | Scan RO No. |
193
- | C | Carton Id | Scan Carton |
194
- | D | Product Barcode | Scan Barcode |
195
- | E | Picked Quantity | Total picked quantity |
196
- | F | Product Description | Display RO No. & company name |
197
- | G | Product List | List of ordered product |
198
- | H | My Worksheet List | List of executing worksheet |
199
- | I | Plastic Pallet | Bind pallet with reusable pallet |
187
+ | | | |
188
+ | :-: | :------------------ | :----------------------------------------------------------------------- |
189
+ | A | Picking Type | Picking: Single Release Order <br/>Batch picking: Multiple Release Order |
190
+ | B | RO No. | Scan RO No. |
191
+ | C | Carton Id | Scan Carton |
192
+ | D | Product Barcode | Scan Barcode |
193
+ | E | Picked Quantity | Total picked quantity |
194
+ | F | Product Description | Display RO No. & company name |
195
+ | G | Product List | List of ordered product |
196
+ | H | My Worksheet List | List of executing worksheet |
197
+ | I | Plastic Pallet | Bind pallet with reusable pallet |
200
198
 
201
199
  ## Case 8:
202
200
 
203
- ### <center> **Hub Setting** </center>
201
+ ### <center> **Hub Setting** </center>
204
202
 
205
- | **Name** | **Value** | **Description** |
206
- | :---------------------: | :----------------: | :-------------------------------------------: |
207
- | enable-carton-id | true | Enable carton id field |
208
- | enable-product-scanning | true | Enable product scanning field |
209
- | enable-input-qty | 2 | Enable quantity field for b2c single picking |
210
- | | 3 | Enable quantity field for b2b/b2c batch picking |
211
- | | | Enable quantity field for b2c single picking |
212
- | enable-tote-scanning | true | Enable the use of tote |
203
+ | **Name** | **Value** | **Description** |
204
+ | :---------------------: | :--------: | :---------------------------------------------------: |
205
+ | enable-carton-id | true | Enable carton id field |
206
+ | enable-product-scanning | true | Enable product scanning field |
207
+ | enable-input-qty | 2 | Enable quantity field for b2c single picking |
208
+ | | 3 | Enable quantity field for b2b/b2c batch picking |
209
+ | | | Enable quantity field for b2c single picking |
210
+ | enable-tote-scanning | 0 or above | Enable the use of tote (0 = disabled, >= 1 = enabled) |
213
211
 
214
212
  ![product picking](../images/picking-product-worksheet-case8.png)
215
213
  ![product picking](../images/picking-product-worksheet-show.png)
216
214
 
217
- | | | |
218
- |:-:| :----------------- |:--------------------------------------------------------------------- |
219
- | A | Picking Type | Picking: Single Release Order <br/>Batch picking: Multiple Release Order|
220
- | B | RO No. | Scan RO No. |
221
- | C | Carton Id | Scan Carton |
222
- | D | Product Barcode | Scan Barcode |
223
- | E | Picked Quantity | Total picked quantity |
224
- | F | Product Description | Display RO No. & company name |
225
- | G | Product List | List of ordered product |
226
- | H | My Worksheet List | List of executing worksheet |
227
- | I | Plastic Pallet | Bind pallet with reusable pallet |
228
- | J | Tote | Type of bin |~~
215
+ | | | |
216
+ | :-: | :------------------ | :----------------------------------------------------------------------- | --- |
217
+ | A | Picking Type | Picking: Single Release Order <br/>Batch picking: Multiple Release Order |
218
+ | B | RO No. | Scan RO No. |
219
+ | C | Carton Id | Scan Carton |
220
+ | D | Product Barcode | Scan Barcode |
221
+ | E | Picked Quantity | Total picked quantity |
222
+ | F | Product Description | Display RO No. & company name |
223
+ | G | Product List | List of ordered product |
224
+ | H | My Worksheet List | List of executing worksheet |
225
+ | I | Plastic Pallet | Bind pallet with reusable pallet |
226
+ | J | Tote | Type of bin | ~~ |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/operato-wms",
3
- "version": "4.3.752",
3
+ "version": "4.3.755",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "client/index.js",
6
6
  "things-factory": true,
@@ -62,60 +62,60 @@
62
62
  "@operato/scene-tab": "^0.1.8",
63
63
  "@operato/scene-table": "^0.1.8",
64
64
  "@operato/scene-wheel-sorter": "^0.1.8",
65
- "@things-factory/apptool-ui": "^4.3.752",
66
- "@things-factory/attachment-ui": "^4.3.752",
67
- "@things-factory/auth-ui": "^4.3.752",
68
- "@things-factory/barcode-ui": "^4.3.752",
69
- "@things-factory/biz-ui": "^4.3.752",
70
- "@things-factory/board-service": "^4.3.752",
71
- "@things-factory/board-ui": "^4.3.752",
72
- "@things-factory/code-ui": "^4.3.752",
73
- "@things-factory/context-ui": "^4.3.752",
74
- "@things-factory/export-ui": "^4.3.752",
75
- "@things-factory/export-ui-csv": "^4.3.752",
76
- "@things-factory/export-ui-excel": "^4.3.752",
77
- "@things-factory/fav-base": "^4.3.752",
78
- "@things-factory/form-ui": "^4.3.752",
79
- "@things-factory/geography": "^4.3.752",
80
- "@things-factory/grist-ui": "^4.3.752",
81
- "@things-factory/help": "^4.3.752",
82
- "@things-factory/i18n-base": "^4.3.752",
83
- "@things-factory/id-rule-base": "^4.3.752",
84
- "@things-factory/import-ui": "^4.3.752",
85
- "@things-factory/import-ui-excel": "^4.3.752",
86
- "@things-factory/menu-ui": "^4.3.752",
87
- "@things-factory/more-ui": "^4.3.752",
88
- "@things-factory/notification": "^4.3.752",
89
- "@things-factory/pdf": "^4.3.752",
90
- "@things-factory/print-proxy-service": "^4.3.752",
91
- "@things-factory/print-ui": "^4.3.752",
92
- "@things-factory/product-base": "^4.3.752",
93
- "@things-factory/resource-ui": "^4.3.752",
94
- "@things-factory/sales-ui": "^4.3.752",
95
- "@things-factory/scene-data-transform": "^4.3.752",
96
- "@things-factory/scene-excel": "^4.3.752",
97
- "@things-factory/scene-firebase": "^4.3.752",
98
- "@things-factory/scene-form": "^4.3.752",
99
- "@things-factory/scene-google-map": "^4.3.752",
100
- "@things-factory/scene-graphql": "^4.3.752",
101
- "@things-factory/scene-label": "^4.3.752",
102
- "@things-factory/scene-marker": "^4.3.752",
103
- "@things-factory/scene-mqtt": "^4.3.752",
104
- "@things-factory/scene-restful": "^4.3.752",
105
- "@things-factory/scene-visualizer": "^4.3.752",
106
- "@things-factory/setting-ui": "^4.3.752",
107
- "@things-factory/system-ui": "^4.3.752",
108
- "@things-factory/transport-base": "^4.3.752",
109
- "@things-factory/tutorial-ui": "^4.3.752",
110
- "@things-factory/warehouse-base": "^4.3.752",
111
- "@things-factory/worksheet-base": "^4.3.752"
65
+ "@things-factory/apptool-ui": "^4.3.755",
66
+ "@things-factory/attachment-ui": "^4.3.755",
67
+ "@things-factory/auth-ui": "^4.3.755",
68
+ "@things-factory/barcode-ui": "^4.3.755",
69
+ "@things-factory/biz-ui": "^4.3.755",
70
+ "@things-factory/board-service": "^4.3.755",
71
+ "@things-factory/board-ui": "^4.3.755",
72
+ "@things-factory/code-ui": "^4.3.755",
73
+ "@things-factory/context-ui": "^4.3.755",
74
+ "@things-factory/export-ui": "^4.3.755",
75
+ "@things-factory/export-ui-csv": "^4.3.755",
76
+ "@things-factory/export-ui-excel": "^4.3.755",
77
+ "@things-factory/fav-base": "^4.3.755",
78
+ "@things-factory/form-ui": "^4.3.755",
79
+ "@things-factory/geography": "^4.3.755",
80
+ "@things-factory/grist-ui": "^4.3.755",
81
+ "@things-factory/help": "^4.3.755",
82
+ "@things-factory/i18n-base": "^4.3.755",
83
+ "@things-factory/id-rule-base": "^4.3.755",
84
+ "@things-factory/import-ui": "^4.3.755",
85
+ "@things-factory/import-ui-excel": "^4.3.755",
86
+ "@things-factory/menu-ui": "^4.3.755",
87
+ "@things-factory/more-ui": "^4.3.755",
88
+ "@things-factory/notification": "^4.3.755",
89
+ "@things-factory/pdf": "^4.3.755",
90
+ "@things-factory/print-proxy-service": "^4.3.755",
91
+ "@things-factory/print-ui": "^4.3.755",
92
+ "@things-factory/product-base": "^4.3.755",
93
+ "@things-factory/resource-ui": "^4.3.755",
94
+ "@things-factory/sales-ui": "^4.3.755",
95
+ "@things-factory/scene-data-transform": "^4.3.755",
96
+ "@things-factory/scene-excel": "^4.3.755",
97
+ "@things-factory/scene-firebase": "^4.3.755",
98
+ "@things-factory/scene-form": "^4.3.755",
99
+ "@things-factory/scene-google-map": "^4.3.755",
100
+ "@things-factory/scene-graphql": "^4.3.755",
101
+ "@things-factory/scene-label": "^4.3.755",
102
+ "@things-factory/scene-marker": "^4.3.755",
103
+ "@things-factory/scene-mqtt": "^4.3.755",
104
+ "@things-factory/scene-restful": "^4.3.755",
105
+ "@things-factory/scene-visualizer": "^4.3.755",
106
+ "@things-factory/setting-ui": "^4.3.755",
107
+ "@things-factory/system-ui": "^4.3.755",
108
+ "@things-factory/transport-base": "^4.3.755",
109
+ "@things-factory/tutorial-ui": "^4.3.755",
110
+ "@things-factory/warehouse-base": "^4.3.755",
111
+ "@things-factory/worksheet-base": "^4.3.755"
112
112
  },
113
113
  "devDependencies": {
114
- "@things-factory/builder": "^4.3.752",
114
+ "@things-factory/builder": "^4.3.755",
115
115
  "cypress": "^9.4.1",
116
116
  "cypress-file-upload": "^5.0.8",
117
117
  "cypress-localstorage-commands": "^1.6.1",
118
118
  "eslint-plugin-cypress": "^2.12.1"
119
119
  },
120
- "gitHead": "cc2f8abfd00055dfbd1737e3016fe4a464af2548"
120
+ "gitHead": "7cd08ee86623f4ab057bd7bbc63f0f2d1be6659b"
121
121
  }
@@ -0,0 +1,6 @@
1
+ import { RouteLabelSequenceCounter } from './route-label-sequence-counter'
2
+ import { RouteLabelSequenceLog } from './route-label-sequence-log'
3
+
4
+ export const entities = [RouteLabelSequenceCounter, RouteLabelSequenceLog]
5
+
6
+ export { RouteLabelSequenceCounter, RouteLabelSequenceLog }
@@ -0,0 +1,56 @@
1
+ import {
2
+ CreateDateColumn,
3
+ UpdateDateColumn,
4
+ Entity,
5
+ Index,
6
+ Column,
7
+ RelationId,
8
+ ManyToOne,
9
+ PrimaryGeneratedColumn
10
+ } from 'typeorm'
11
+
12
+ import { Domain } from '@things-factory/shell'
13
+ import { User } from '@things-factory/auth-base'
14
+
15
+ @Entity('route_label_sequence_counters')
16
+ @Index('ix_route_label_sequence_counters_0', (c: RouteLabelSequenceCounter) => [c.domain, c.releaseGoodId, c.field], {
17
+ unique: true
18
+ })
19
+ @Index('ix_route_label_sequence_counters_1', (c: RouteLabelSequenceCounter) => [c.domain, c.field])
20
+ export class RouteLabelSequenceCounter {
21
+ @PrimaryGeneratedColumn('uuid')
22
+ readonly id: string
23
+
24
+ @ManyToOne(type => Domain)
25
+ domain?: Domain
26
+
27
+ @RelationId((c: RouteLabelSequenceCounter) => c.domain)
28
+ domainId?: string
29
+
30
+ @Column()
31
+ releaseGoodId: string
32
+
33
+ @Column()
34
+ field: string
35
+
36
+ @Column({ type: 'int', default: 0 })
37
+ lastSeq: number
38
+
39
+ @CreateDateColumn()
40
+ createdAt?: Date
41
+
42
+ @UpdateDateColumn()
43
+ updatedAt?: Date
44
+
45
+ @ManyToOne(type => User, { nullable: true })
46
+ creator?: User
47
+
48
+ @RelationId((c: RouteLabelSequenceCounter) => c.creator)
49
+ creatorId?: string
50
+
51
+ @ManyToOne(type => User, { nullable: true })
52
+ updater?: User
53
+
54
+ @RelationId((c: RouteLabelSequenceCounter) => c.updater)
55
+ updaterId?: string
56
+ }