@things-factory/operato-wms 4.3.804 → 4.3.806
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.
- package/client/pages/bulk-operation/bulk-operation.js +2 -0
- package/client/pages/bulk-operation/validate-gan-popup.js +8 -0
- package/client/pages/order/arrival-notice/arrival-notice-detail.js +4 -0
- package/client/pages/order/arrival-notice/arrival-notice-list.js +17 -0
- package/client/pages/order/arrival-notice/arrival-notice-requests.js +17 -0
- package/client/pages/order/arrival-notice/assign-buffer-location.js +4 -0
- package/client/pages/order/arrival-notice/check-arrived-notice.js +4 -0
- package/client/pages/order/arrival-notice/create-arrival-notice.js +3 -0
- package/client/pages/order/arrival-notice/duplicate-arrival-notice.js +6 -0
- package/client/pages/order/arrival-notice/receive-arrival-notice.js +4 -0
- package/client/pages/order/arrival-notice/rejected-arrival-notice.js +4 -0
- package/client/pages/order/goods-received-note/received-note-detail.js +9 -1
- package/client/pages/report/inbound-order-details-report.js +9 -0
- package/dist-server/graphql/resolvers/reports/inbound-order-details-report.js +2 -1
- package/dist-server/graphql/resolvers/reports/inbound-order-details-report.js.map +1 -1
- package/dist-server/graphql/types/reports/inbound-order-details-report.js +1 -0
- package/dist-server/graphql/types/reports/inbound-order-details-report.js.map +1 -1
- package/package.json +5 -5
- package/server/graphql/resolvers/reports/inbound-order-details-report.ts +2 -1
- package/server/graphql/types/reports/inbound-order-details-report.ts +1 -0
- package/translations/en.json +2 -0
- package/translations/ko.json +1 -0
- package/translations/ms.json +2 -0
- package/translations/zh.json +2 -0
|
@@ -176,6 +176,7 @@ class BulkOperation extends localize(i18next)(PageView) {
|
|
|
176
176
|
refNo: '',
|
|
177
177
|
refNo2: '',
|
|
178
178
|
refNo3: '',
|
|
179
|
+
refNo4: '',
|
|
179
180
|
etaDate: date,
|
|
180
181
|
truckNo: '',
|
|
181
182
|
containerNo: '',
|
|
@@ -526,6 +527,7 @@ class BulkOperation extends localize(i18next)(PageView) {
|
|
|
526
527
|
refNo: String(raw.refNo || ''),
|
|
527
528
|
refNo2: String(raw.refNo2 || ''),
|
|
528
529
|
refNo3: String(raw.refNo3 || ''),
|
|
530
|
+
refNo4: String(raw.refNo4 || ''),
|
|
529
531
|
truckNo: String(raw.truckNo || ''),
|
|
530
532
|
ownTransport: !!raw.truckNo,
|
|
531
533
|
looseItem: !!raw.looseItem,
|
|
@@ -111,6 +111,12 @@ class ValidateGanPopup extends localize(i18next)(LitElement) {
|
|
|
111
111
|
header: i18next.t('field.ref_no_3'),
|
|
112
112
|
width: 150
|
|
113
113
|
},
|
|
114
|
+
{
|
|
115
|
+
type: 'string',
|
|
116
|
+
name: 'refNo4',
|
|
117
|
+
header: i18next.t('field.ref_no_4'),
|
|
118
|
+
width: 150
|
|
119
|
+
},
|
|
114
120
|
{
|
|
115
121
|
type: 'string',
|
|
116
122
|
name: 'etaDate',
|
|
@@ -293,6 +299,7 @@ class ValidateGanPopup extends localize(i18next)(LitElement) {
|
|
|
293
299
|
refNo
|
|
294
300
|
refNo2
|
|
295
301
|
refNo3
|
|
302
|
+
refNo4
|
|
296
303
|
etaDate
|
|
297
304
|
truckNo
|
|
298
305
|
ownTransport
|
|
@@ -351,6 +358,7 @@ class ValidateGanPopup extends localize(i18next)(LitElement) {
|
|
|
351
358
|
refNo: raw.refNo,
|
|
352
359
|
refNo2: raw.refNo2,
|
|
353
360
|
refNo3: raw.refNo3,
|
|
361
|
+
refNo4: raw.refNo4,
|
|
354
362
|
etaDate: raw.etaDate,
|
|
355
363
|
truckNo: raw.truckNo,
|
|
356
364
|
ownTransport: !!raw.truckNo || false,
|
|
@@ -537,6 +537,9 @@ class ArrivalNoticeDetail extends localize(i18next)(PageView) {
|
|
|
537
537
|
<label>${i18next.t('label.ref_no')}${`3`}</label>
|
|
538
538
|
<input name="refNo3" ?readonly=${this.determineStatus()} />
|
|
539
539
|
|
|
540
|
+
<label>${i18next.t('label.ref_no')}${`4`}</label>
|
|
541
|
+
<input name="refNo4" ?readonly=${this.determineStatus()} />
|
|
542
|
+
|
|
540
543
|
<label>${i18next.t('label.eta_date')}</label>
|
|
541
544
|
<input name="etaDate" type="date" disabled />
|
|
542
545
|
|
|
@@ -1043,6 +1046,7 @@ class ArrivalNoticeDetail extends localize(i18next)(PageView) {
|
|
|
1043
1046
|
refNo
|
|
1044
1047
|
refNo2
|
|
1045
1048
|
refNo3
|
|
1049
|
+
refNo4
|
|
1046
1050
|
importCargo
|
|
1047
1051
|
attachment {
|
|
1048
1052
|
id
|
|
@@ -160,6 +160,12 @@ class ArrivalNoticeList extends localize(i18next)(PageView) {
|
|
|
160
160
|
type: 'text',
|
|
161
161
|
props: { searchOper: 'i_like' }
|
|
162
162
|
},
|
|
163
|
+
{
|
|
164
|
+
label: i18next.t('field.ref_no_4'),
|
|
165
|
+
name: 'refNo4',
|
|
166
|
+
type: 'text',
|
|
167
|
+
props: { searchOper: 'i_like' }
|
|
168
|
+
},
|
|
163
169
|
{
|
|
164
170
|
label: i18next.t('field.status'),
|
|
165
171
|
name: 'status',
|
|
@@ -234,6 +240,7 @@ class ArrivalNoticeList extends localize(i18next)(PageView) {
|
|
|
234
240
|
'refNo',
|
|
235
241
|
'refNo2',
|
|
236
242
|
'refNo3',
|
|
243
|
+
'refNo4',
|
|
237
244
|
'etaDate',
|
|
238
245
|
'container',
|
|
239
246
|
'importCargo',
|
|
@@ -305,6 +312,14 @@ class ArrivalNoticeList extends localize(i18next)(PageView) {
|
|
|
305
312
|
sortable: true,
|
|
306
313
|
width: 150
|
|
307
314
|
},
|
|
315
|
+
{
|
|
316
|
+
type: 'string',
|
|
317
|
+
name: 'refNo4',
|
|
318
|
+
header: i18next.t('field.ref_no_4'),
|
|
319
|
+
label: true,
|
|
320
|
+
sortable: true,
|
|
321
|
+
width: 150
|
|
322
|
+
},
|
|
308
323
|
{
|
|
309
324
|
type: 'date',
|
|
310
325
|
name: 'etaDate',
|
|
@@ -434,6 +449,7 @@ class ArrivalNoticeList extends localize(i18next)(PageView) {
|
|
|
434
449
|
refNo
|
|
435
450
|
refNo2
|
|
436
451
|
refNo3
|
|
452
|
+
refNo4
|
|
437
453
|
ownTransport
|
|
438
454
|
container
|
|
439
455
|
crossDocking
|
|
@@ -544,6 +560,7 @@ class ArrivalNoticeList extends localize(i18next)(PageView) {
|
|
|
544
560
|
{ header: i18next.t('field.ref_no'), key: 'refNo', width: 25, type: 'string' },
|
|
545
561
|
{ header: i18next.t('field.ref_no_2'), key: 'refNo2', width: 25, type: 'string' },
|
|
546
562
|
{ header: i18next.t('field.ref_no_3'), key: 'refNo3', width: 25, type: 'string' },
|
|
563
|
+
{ header: i18next.t('field.ref_no_4'), key: 'refNo4', width: 25, type: 'string' },
|
|
547
564
|
{ header: i18next.t('field.eta_date'), key: 'etaDate', width: 30, type: 'string' },
|
|
548
565
|
{ header: i18next.t('field.container'), key: 'container', width: 30, type: 'string' },
|
|
549
566
|
{ header: i18next.t('field.import_cargo'), key: 'importCargo', width: 30, type: 'string' },
|
|
@@ -150,6 +150,12 @@ class ArrivalNoticeRequests extends localize(i18next)(PageView) {
|
|
|
150
150
|
type: 'text',
|
|
151
151
|
props: { searchOper: 'i_like' }
|
|
152
152
|
},
|
|
153
|
+
{
|
|
154
|
+
label: i18next.t('field.ref_no_4'),
|
|
155
|
+
name: 'refNo4',
|
|
156
|
+
type: 'text',
|
|
157
|
+
props: { searchOper: 'i_like' }
|
|
158
|
+
},
|
|
153
159
|
{
|
|
154
160
|
label: i18next.t('field.status'),
|
|
155
161
|
name: 'status',
|
|
@@ -222,6 +228,7 @@ class ArrivalNoticeRequests extends localize(i18next)(PageView) {
|
|
|
222
228
|
'refNo',
|
|
223
229
|
'refNo2',
|
|
224
230
|
'refNo3',
|
|
231
|
+
'refNo4',
|
|
225
232
|
'etaDate',
|
|
226
233
|
'container',
|
|
227
234
|
'importCargo',
|
|
@@ -296,6 +303,14 @@ class ArrivalNoticeRequests extends localize(i18next)(PageView) {
|
|
|
296
303
|
sortable: true,
|
|
297
304
|
width: 150
|
|
298
305
|
},
|
|
306
|
+
{
|
|
307
|
+
type: 'string',
|
|
308
|
+
name: 'refNo4',
|
|
309
|
+
header: i18next.t('field.ref_no_4'),
|
|
310
|
+
label: true,
|
|
311
|
+
sortable: true,
|
|
312
|
+
width: 150
|
|
313
|
+
},
|
|
299
314
|
{
|
|
300
315
|
type: 'date',
|
|
301
316
|
name: 'etaDate',
|
|
@@ -402,6 +417,7 @@ class ArrivalNoticeRequests extends localize(i18next)(PageView) {
|
|
|
402
417
|
refNo
|
|
403
418
|
refNo2
|
|
404
419
|
refNo3
|
|
420
|
+
refNo4
|
|
405
421
|
status
|
|
406
422
|
ownTransport
|
|
407
423
|
container
|
|
@@ -498,6 +514,7 @@ class ArrivalNoticeRequests extends localize(i18next)(PageView) {
|
|
|
498
514
|
{ header: i18next.t('field.ref_no'), key: 'refNo', width: 25, type: 'string' },
|
|
499
515
|
{ header: i18next.t('field.ref_no_2'), key: 'refNo2', width: 25, type: 'string' },
|
|
500
516
|
{ header: i18next.t('field.ref_no_3'), key: 'refNo3', width: 25, type: 'string' },
|
|
517
|
+
{ header: i18next.t('field.ref_no_4'), key: 'refNo4', width: 25, type: 'string' },
|
|
501
518
|
{ header: i18next.t('field.eta_date'), key: 'etaDate', width: 30, type: 'string' },
|
|
502
519
|
{ header: i18next.t('field.container'), key: 'container', width: 30, type: 'string' },
|
|
503
520
|
{ header: i18next.t('field.import_cargo'), key: 'importCargo', width: 30, type: 'string' },
|
|
@@ -203,6 +203,9 @@ class AssignBufferLocation extends localize(i18next)(PageView) {
|
|
|
203
203
|
<label>${i18next.t('label.ref_no')}${`3`}</label>
|
|
204
204
|
<input name="refNo3" readonly />
|
|
205
205
|
|
|
206
|
+
<label>${i18next.t('label.ref_no')}${`4`}</label>
|
|
207
|
+
<input name="refNo4" readonly />
|
|
208
|
+
|
|
206
209
|
<label ?hidden="${!this._ownTransport}">${i18next.t('label.do_no')}</label>
|
|
207
210
|
<input name="deliveryOrderNo" ?hidden="${!this._ownTransport}" readonly />
|
|
208
211
|
|
|
@@ -435,6 +438,7 @@ class AssignBufferLocation extends localize(i18next)(PageView) {
|
|
|
435
438
|
refNo
|
|
436
439
|
refNo2
|
|
437
440
|
refNo3
|
|
441
|
+
refNo4
|
|
438
442
|
importCargo
|
|
439
443
|
purchaseOrder {
|
|
440
444
|
bufferLocation {
|
|
@@ -198,6 +198,9 @@ class CheckArrivedNotice extends localize(i18next)(PageView) {
|
|
|
198
198
|
<label>${i18next.t('label.ref_no')}${`3`}</label>
|
|
199
199
|
<input name="refNo3" readonly />
|
|
200
200
|
|
|
201
|
+
<label>${i18next.t('label.ref_no')}${`4`}</label>
|
|
202
|
+
<input name="refNo4" readonly />
|
|
203
|
+
|
|
201
204
|
<label>${i18next.t('label.eta_date')}</label>
|
|
202
205
|
<input name="etaDate" type="date" readonly />
|
|
203
206
|
|
|
@@ -541,6 +544,7 @@ class CheckArrivedNotice extends localize(i18next)(PageView) {
|
|
|
541
544
|
refNo
|
|
542
545
|
refNo2
|
|
543
546
|
refNo3
|
|
547
|
+
refNo4
|
|
544
548
|
importCargo
|
|
545
549
|
attachment {
|
|
546
550
|
id
|
|
@@ -310,6 +310,9 @@ class CreateArrivalNotice extends localize(i18next)(PageView) {
|
|
|
310
310
|
<label ?hidden="${!this._checkTransport}">${i18next.t('label.ref_no')}${`3`}</label>
|
|
311
311
|
<input name="refNo3" ?hidden="${!this._checkTransport}" />
|
|
312
312
|
|
|
313
|
+
<label ?hidden="${!this._checkTransport}">${i18next.t('label.ref_no')}${`4`}</label>
|
|
314
|
+
<input name="refNo4" ?hidden="${!this._checkTransport}" />
|
|
315
|
+
|
|
313
316
|
<label ?hidden="${!this._checkTransport}">${i18next.t('label.eta_date')}</label>
|
|
314
317
|
<input name="etaDate" type="date" ?hidden="${!this._checkTransport}" required />
|
|
315
318
|
|
|
@@ -40,6 +40,7 @@ class DuplicateArrivalNotice extends localize(i18next)(PageView) {
|
|
|
40
40
|
_refNo: String,
|
|
41
41
|
_refNo2: String,
|
|
42
42
|
_refNo3: String,
|
|
43
|
+
_refNo4: String,
|
|
43
44
|
_containerNo: String,
|
|
44
45
|
_containerSize: String,
|
|
45
46
|
_etaDate: String,
|
|
@@ -310,6 +311,9 @@ class DuplicateArrivalNotice extends localize(i18next)(PageView) {
|
|
|
310
311
|
<label ?hidden="${!this._checkTransport}">${i18next.t('label.ref_no')}${`3`}</label>
|
|
311
312
|
<input name="refNo3" ?hidden="${!this._checkTransport}" />
|
|
312
313
|
|
|
314
|
+
<label ?hidden="${!this._checkTransport}">${i18next.t('label.ref_no')}${`4`}</label>
|
|
315
|
+
<input name="refNo4" ?hidden="${!this._checkTransport}" />
|
|
316
|
+
|
|
313
317
|
<label ?hidden="${!this._checkTransport}">${i18next.t('label.eta_date')}</label>
|
|
314
318
|
<input name="etaDate" type="date" min="${this._getStdDate()}" ?hidden="${!this._checkTransport}" required />
|
|
315
319
|
|
|
@@ -1036,6 +1040,7 @@ class DuplicateArrivalNotice extends localize(i18next)(PageView) {
|
|
|
1036
1040
|
refNo
|
|
1037
1041
|
refNo2
|
|
1038
1042
|
refNo3
|
|
1043
|
+
refNo4
|
|
1039
1044
|
importCargo
|
|
1040
1045
|
attachment {
|
|
1041
1046
|
id
|
|
@@ -1121,6 +1126,7 @@ class DuplicateArrivalNotice extends localize(i18next)(PageView) {
|
|
|
1121
1126
|
this._refNo = arrivalNotice.refNo || ''
|
|
1122
1127
|
this._refNo2 = arrivalNotice.refNo2 || ''
|
|
1123
1128
|
this._refNo3 = arrivalNotice.refNo3 || ''
|
|
1129
|
+
this._refNo4 = arrivalNotice.refNo4 || ''
|
|
1124
1130
|
this._containerNo = arrivalNotice.containerNo || ''
|
|
1125
1131
|
this._containerSize = arrivalNotice.containerSize || ''
|
|
1126
1132
|
this._bizplaces = arrivalNotice.bizplace
|
|
@@ -211,6 +211,9 @@ class ReceiveArrivalNotice extends localize(i18next)(PageView) {
|
|
|
211
211
|
<label>${i18next.t('label.ref_no')}${`3`}</label>
|
|
212
212
|
<input name="refNo3" readonly />
|
|
213
213
|
|
|
214
|
+
<label>${i18next.t('label.ref_no')}${`4`}</label>
|
|
215
|
+
<input name="refNo4" readonly />
|
|
216
|
+
|
|
214
217
|
<label>${i18next.t('label.eta_date')}</label>
|
|
215
218
|
<input name="etaDate" type="date" readonly />
|
|
216
219
|
|
|
@@ -436,6 +439,7 @@ class ReceiveArrivalNotice extends localize(i18next)(PageView) {
|
|
|
436
439
|
refNo
|
|
437
440
|
refNo2
|
|
438
441
|
refNo3
|
|
442
|
+
refNo4
|
|
439
443
|
importCargo
|
|
440
444
|
attachment {
|
|
441
445
|
id
|
|
@@ -209,6 +209,9 @@ class RejectedArrivalNotice extends localize(i18next)(PageView) {
|
|
|
209
209
|
<label>${i18next.t('label.ref_no')}${`3`}</label>
|
|
210
210
|
<input name="refNo3" readonly />
|
|
211
211
|
|
|
212
|
+
<label>${i18next.t('label.ref_no')}${`4`}</label>
|
|
213
|
+
<input name="refNo4" readonly />
|
|
214
|
+
|
|
212
215
|
<label>${i18next.t('label.eta_date')}</label>
|
|
213
216
|
<input name="etaDate" type="date" readonly />
|
|
214
217
|
|
|
@@ -555,6 +558,7 @@ class RejectedArrivalNotice extends localize(i18next)(PageView) {
|
|
|
555
558
|
refNo
|
|
556
559
|
refNo2
|
|
557
560
|
refNo3
|
|
561
|
+
refNo4
|
|
558
562
|
importCargo
|
|
559
563
|
attachment {
|
|
560
564
|
id
|
|
@@ -122,6 +122,7 @@ class ReceivedNoteDetail extends localize(i18next)(PageView) {
|
|
|
122
122
|
refGANNo
|
|
123
123
|
refGANNo2
|
|
124
124
|
refGANNo3
|
|
125
|
+
refGANNo4
|
|
125
126
|
companyDomain
|
|
126
127
|
supplier
|
|
127
128
|
date
|
|
@@ -190,7 +191,7 @@ class ReceivedNoteDetail extends localize(i18next)(PageView) {
|
|
|
190
191
|
// }
|
|
191
192
|
|
|
192
193
|
async _exportableData() {
|
|
193
|
-
const { grnNo, ganNo, refGANNo, refGANNo2, refGANNo3, companyDomain, supplier, date, productLists } =
|
|
194
|
+
const { grnNo, ganNo, refGANNo, refGANNo2, refGANNo3, refGANNo4, companyDomain, supplier, date, productLists } =
|
|
194
195
|
await this._fetchGRN()
|
|
195
196
|
|
|
196
197
|
const exportData = productLists.map(res => {
|
|
@@ -200,6 +201,7 @@ class ReceivedNoteDetail extends localize(i18next)(PageView) {
|
|
|
200
201
|
refGANNo,
|
|
201
202
|
refGANNo2,
|
|
202
203
|
refGANNo3,
|
|
204
|
+
refGANNo4,
|
|
203
205
|
companyDomain,
|
|
204
206
|
supplier,
|
|
205
207
|
date,
|
|
@@ -244,6 +246,12 @@ class ReceivedNoteDetail extends localize(i18next)(PageView) {
|
|
|
244
246
|
width: 25,
|
|
245
247
|
type: 'string'
|
|
246
248
|
},
|
|
249
|
+
{
|
|
250
|
+
header: i18next.t('field.ref_no_4'),
|
|
251
|
+
key: 'refGANNo4',
|
|
252
|
+
width: 25,
|
|
253
|
+
type: 'string'
|
|
254
|
+
},
|
|
247
255
|
{
|
|
248
256
|
header: i18next.t('field.company'),
|
|
249
257
|
key: 'companyDomain',
|
|
@@ -267,6 +267,12 @@ class InboundOrderDetailsReport extends connect(store)(localize(i18next)(PageVie
|
|
|
267
267
|
header: i18next.t('field.ref_no_3'),
|
|
268
268
|
width: 150
|
|
269
269
|
},
|
|
270
|
+
{
|
|
271
|
+
type: 'string',
|
|
272
|
+
name: 'refNo4',
|
|
273
|
+
header: i18next.t('field.ref_no_4'),
|
|
274
|
+
width: 150
|
|
275
|
+
},
|
|
270
276
|
{
|
|
271
277
|
type: 'boolean',
|
|
272
278
|
name: 'looseItem',
|
|
@@ -528,6 +534,7 @@ class InboundOrderDetailsReport extends connect(store)(localize(i18next)(PageVie
|
|
|
528
534
|
'refNo1',
|
|
529
535
|
'refNo2',
|
|
530
536
|
'refNo3',
|
|
537
|
+
'refNo4',
|
|
531
538
|
'looseItem',
|
|
532
539
|
'containerNo',
|
|
533
540
|
'containerSize',
|
|
@@ -633,6 +640,7 @@ class InboundOrderDetailsReport extends connect(store)(localize(i18next)(PageVie
|
|
|
633
640
|
refNo1
|
|
634
641
|
refNo2
|
|
635
642
|
refNo3
|
|
643
|
+
refNo4
|
|
636
644
|
looseItem
|
|
637
645
|
importCargo
|
|
638
646
|
containerNo
|
|
@@ -794,6 +802,7 @@ class InboundOrderDetailsReport extends connect(store)(localize(i18next)(PageVie
|
|
|
794
802
|
{ header: i18next.t('field.ref_no'), key: 'refNo1', width: 60, type: 'string' },
|
|
795
803
|
{ header: i18next.t('field.ref_no_2'), key: 'refNo2', width: 60, type: 'string' },
|
|
796
804
|
{ header: i18next.t('field.ref_no_3'), key: 'refNo3', width: 60, type: 'string' },
|
|
805
|
+
{ header: i18next.t('field.ref_no_4'), key: 'refNo4', width: 60, type: 'string' },
|
|
797
806
|
{ header: i18next.t('field.loose_item'), key: 'looseItem', width: 20, type: 'string' },
|
|
798
807
|
{ header: i18next.t('field.container_no'), key: 'containerNo', width: 30, type: 'string' },
|
|
799
808
|
{ header: i18next.t('field.container_size'), key: 'containerSize', width: 30, type: 'string' },
|
|
@@ -66,7 +66,7 @@ exports.inboundOrderDetailsReport = {
|
|
|
66
66
|
u.name as "accepted_by", u2.name as "unloaded_by", u3.name as "putaway_by"
|
|
67
67
|
from (
|
|
68
68
|
select * from (
|
|
69
|
-
select an.id, an.accepted_by_id, an.name as "gan_no", an.ref_no as "ref_no_1", an.ref_no_2 as "ref_no_2", an.ref_no_3 as "ref_no_3",
|
|
69
|
+
select an.id, an.accepted_by_id, an.name as "gan_no", an.ref_no as "ref_no_1", an.ref_no_2 as "ref_no_2", an.ref_no_3 as "ref_no_3", an.ref_no_4 as "ref_no_4",
|
|
70
70
|
an.loose_item, an.import_cargo, an.container_no, an.container_size, an.own_transport,
|
|
71
71
|
an.accepted_at, u1.name as "order_created_by", an.created_at as "order_created_at", an.delivery_order_no,
|
|
72
72
|
b2.id as "bizplace_id", b2.name as "bizplace_name", b2.description as "bizplace_description",
|
|
@@ -150,6 +150,7 @@ exports.inboundOrderDetailsReport = {
|
|
|
150
150
|
refNo1: itm.ref_no_1,
|
|
151
151
|
refNo2: itm.ref_no_2,
|
|
152
152
|
refNo3: itm.ref_no_3,
|
|
153
|
+
refNo4: itm.ref_no_4,
|
|
153
154
|
looseItem: itm.loose_item,
|
|
154
155
|
importCargo: itm.import_cargo,
|
|
155
156
|
containerNo: itm.container_no,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"inbound-order-details-report.js","sourceRoot":"","sources":["../../../../server/graphql/resolvers/reports/inbound-order-details-report.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"inbound-order-details-report.js","sourceRoot":"","sources":["../../../../server/graphql/resolvers/reports/inbound-order-details-report.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"inbound-order-details-report.js","sourceRoot":"","sources":["../../../../server/graphql/types/reports/inbound-order-details-report.ts"],"names":[],"mappings":";;;;;;AAAA,8DAA6B;AAEhB,QAAA,yBAAyB,GAAG,IAAA,qBAAG,EAAA
|
|
1
|
+
{"version":3,"file":"inbound-order-details-report.js","sourceRoot":"","sources":["../../../../server/graphql/types/reports/inbound-order-details-report.ts"],"names":[],"mappings":";;;;;;AAAA,8DAA6B;AAEhB,QAAA,yBAAyB,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqD3C,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/operato-wms",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.806",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
"@things-factory/print-ui": "^4.3.767",
|
|
92
92
|
"@things-factory/product-base": "^4.3.804",
|
|
93
93
|
"@things-factory/resource-ui": "^4.3.790",
|
|
94
|
-
"@things-factory/sales-ui": "^4.3.
|
|
94
|
+
"@things-factory/sales-ui": "^4.3.806",
|
|
95
95
|
"@things-factory/scene-data-transform": "^4.3.767",
|
|
96
96
|
"@things-factory/scene-excel": "^4.3.767",
|
|
97
97
|
"@things-factory/scene-firebase": "^4.3.767",
|
|
@@ -107,8 +107,8 @@
|
|
|
107
107
|
"@things-factory/system-ui": "^4.3.767",
|
|
108
108
|
"@things-factory/transport-base": "^4.3.798",
|
|
109
109
|
"@things-factory/tutorial-ui": "^4.3.767",
|
|
110
|
-
"@things-factory/warehouse-base": "^4.3.
|
|
111
|
-
"@things-factory/worksheet-base": "^4.3.
|
|
110
|
+
"@things-factory/warehouse-base": "^4.3.805",
|
|
111
|
+
"@things-factory/worksheet-base": "^4.3.806"
|
|
112
112
|
},
|
|
113
113
|
"devDependencies": {
|
|
114
114
|
"@things-factory/builder": "^4.3.767",
|
|
@@ -117,5 +117,5 @@
|
|
|
117
117
|
"cypress-localstorage-commands": "^1.6.1",
|
|
118
118
|
"eslint-plugin-cypress": "^2.12.1"
|
|
119
119
|
},
|
|
120
|
-
"gitHead": "
|
|
120
|
+
"gitHead": "0f7f8a86daf5ad9fec8e51f9b993dffc1747f759"
|
|
121
121
|
}
|
|
@@ -73,7 +73,7 @@ export const inboundOrderDetailsReport = {
|
|
|
73
73
|
u.name as "accepted_by", u2.name as "unloaded_by", u3.name as "putaway_by"
|
|
74
74
|
from (
|
|
75
75
|
select * from (
|
|
76
|
-
select an.id, an.accepted_by_id, an.name as "gan_no", an.ref_no as "ref_no_1", an.ref_no_2 as "ref_no_2", an.ref_no_3 as "ref_no_3",
|
|
76
|
+
select an.id, an.accepted_by_id, an.name as "gan_no", an.ref_no as "ref_no_1", an.ref_no_2 as "ref_no_2", an.ref_no_3 as "ref_no_3", an.ref_no_4 as "ref_no_4",
|
|
77
77
|
an.loose_item, an.import_cargo, an.container_no, an.container_size, an.own_transport,
|
|
78
78
|
an.accepted_at, u1.name as "order_created_by", an.created_at as "order_created_at", an.delivery_order_no,
|
|
79
79
|
b2.id as "bizplace_id", b2.name as "bizplace_name", b2.description as "bizplace_description",
|
|
@@ -167,6 +167,7 @@ export const inboundOrderDetailsReport = {
|
|
|
167
167
|
refNo1: itm.ref_no_1,
|
|
168
168
|
refNo2: itm.ref_no_2,
|
|
169
169
|
refNo3: itm.ref_no_3,
|
|
170
|
+
refNo4: itm.ref_no_4,
|
|
170
171
|
looseItem: itm.loose_item,
|
|
171
172
|
importCargo: itm.import_cargo,
|
|
172
173
|
containerNo: itm.container_no,
|
package/translations/en.json
CHANGED
|
@@ -605,6 +605,7 @@
|
|
|
605
605
|
"field.ref_code": "ref code",
|
|
606
606
|
"field.ref_no_2": "ref no. 2",
|
|
607
607
|
"field.ref_no_3": "ref no. 3",
|
|
608
|
+
"field.ref_no_4": "ref no. 4",
|
|
608
609
|
"field.ref_no": "ref no.",
|
|
609
610
|
"field.registration_number": "registration number",
|
|
610
611
|
"field.reject_date": "reject date",
|
|
@@ -1164,6 +1165,7 @@
|
|
|
1164
1165
|
"label.recommend_location": "recommend location",
|
|
1165
1166
|
"label.ref_no_2": "ref no. 2",
|
|
1166
1167
|
"label.ref_no_3": "ref no. 3",
|
|
1168
|
+
"label.ref_no_4": "ref no. 4",
|
|
1167
1169
|
"label.ref_no": "ref no.",
|
|
1168
1170
|
"label.rejection_remark": "rejection remark",
|
|
1169
1171
|
"label.release_date": "release date",
|
package/translations/ko.json
CHANGED
|
@@ -1148,6 +1148,7 @@
|
|
|
1148
1148
|
"label.recommend_location": "추천 위치",
|
|
1149
1149
|
"label.ref_no_2": "[ko] ref no. 2",
|
|
1150
1150
|
"label.ref_no_3": "[ko] ref no. 3",
|
|
1151
|
+
"label.ref_no_4": "[ko] ref no. 4",
|
|
1151
1152
|
"label.ref_no": "참조 번호",
|
|
1152
1153
|
"label.rejection_remark": "반려 사유",
|
|
1153
1154
|
"label.release_date": "출고일",
|
package/translations/ms.json
CHANGED
|
@@ -632,6 +632,7 @@
|
|
|
632
632
|
"field.ref_no": "no. rujukan",
|
|
633
633
|
"field.ref_no_2": "ref no. 2",
|
|
634
634
|
"field.ref_no_3": "ref no. 3",
|
|
635
|
+
"field.ref_no_4": "ref no. 4",
|
|
635
636
|
"field.registration_number": "nombor pendaftaran",
|
|
636
637
|
"field.reject_date": "tarikh penolakkan",
|
|
637
638
|
"field.release_date": "tarikh dilepaskan",
|
|
@@ -1171,6 +1172,7 @@
|
|
|
1171
1172
|
"label.ref_no": "ref no.",
|
|
1172
1173
|
"label.ref_no_2": "ref no. 2",
|
|
1173
1174
|
"label.ref_no_3": "ref no. 3",
|
|
1175
|
+
"label.ref_no_4": "ref no. 4",
|
|
1174
1176
|
"label.rejection_remark": "komen penolakan",
|
|
1175
1177
|
"label.release_date": "tarikh pembebasan",
|
|
1176
1178
|
"label.release_from": "pengeluaran dari",
|
package/translations/zh.json
CHANGED
|
@@ -632,6 +632,7 @@
|
|
|
632
632
|
"field.ref_no": "参考号",
|
|
633
633
|
"field.ref_no_2": "参考编号2",
|
|
634
634
|
"field.ref_no_3": "参考编号3",
|
|
635
|
+
"field.ref_no_4": "参考编号4",
|
|
635
636
|
"field.registration_number": "注册号",
|
|
636
637
|
"field.reject_date": "拒绝日期",
|
|
637
638
|
"field.release_date": "放行日期",
|
|
@@ -1190,6 +1191,7 @@
|
|
|
1190
1191
|
"label.ref_no": "参考编号",
|
|
1191
1192
|
"label.ref_no_2": "参考编号2",
|
|
1192
1193
|
"label.ref_no_3": "参考编号3",
|
|
1194
|
+
"label.ref_no_4": "参考编号4",
|
|
1193
1195
|
"label.rejection_remark": "拒绝备注",
|
|
1194
1196
|
"label.release_date": "释放日期",
|
|
1195
1197
|
"label.release_from": "释放从",
|