Admin
15 小时以前 1cd9280bbecf557f8978ad3839f14827ff9f4d34
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
 
<template>
  <view-grid ref="grid" :columns="columns" :detail="detail" :editFormFields="editFormFields"
    :editFormOptions="editFormOptions" :searchFormFields="searchFormFields"
    :searchFormOptions="searchFormOptions" :table="table" :extend="extend">
  </view-grid>
</template>
<script>
import extend from '@/extension/services/container/VV_ContainerInfo.js';
import { ref, defineComponent } from 'vue';
export default defineComponent({
  setup() {
    const table = ref({
      key: 'containerdtl_id',
      footer: 'Foots',
      cnName: '库存查询',
      name: 'container/VV_ContainerInfo',
      url: '/VV_ContainerInfo/',
      sortName: 'containerdtl_createtime',
    });
    const editFormFields = ref({
      containerdtl_goodsWeight:"",
      containerdtl_standardResult:"",
      containerdtl_text3:''
    });
    const editFormOptions = ref(
      [
        [{ title: '测量重量', field: 'containerdtl_goodsWeight', type: 'string' },],
        [{ title: '称重结果', field: 'containerdtl_standardResult', type: 'select',
          dataKey: "OutcomeTyep",
          data: []
         },],
        [{ title: '测量结果', field: 'containerdtl_text3', type: 'string' },]
      ]
    );
    const searchFormFields = ref({
      containerhead_barcode: '',
      materiel_name: '',
      materiel_id: '',
      location_id: '',
      location_state: '',
      location_islocked: '',
      location_line: '',
      location_column: '',
      location_layer: '',
      containerdtl_type: '',
      containerdtl_standard: '',
      containerdtl_goodsCode:'',
    });
    const searchFormOptions = ref([
      [
        { title: '托盘号', field: 'containerhead_barcode', type: 'text' },
        {
        field: 'containerdtl_goodsCode',
        title: '轴承编号',
        type: 'text',
        width: 130,
        align: 'left',
      },
        {
          dataKey: 'CarTypeInfo',
          field: 'materiel_id',
          data: [],
          title: '车型',
          type: 'select',
        },
        {
          title: '轴承型号',
          field: 'containerdtl_type',
          dataKey: '', //CarModel
          data: [],
          type: 'select',
        },
      ],
      [
        {
          field: 'containerdtl_standard',
          title: '轴承类别',
          type: 'select',
          dataKey: 'WeighingType',
          data: [],
        },
        {
          dataKey: 'LocationState',
          data: [],
          title: '货位状态',
          field: 'location_state',
          type: 'select',
        },
        {
          dataKey: 'LocationLocked',
          data: [],
          title: '货位是否锁定',
          field: 'location_islocked',
          type: 'select',
        },
      ],
      [
        
        { title: '行', field: 'location_line', type: 'number' },
        { title: '列', field: 'location_column', type: 'number' },
        { title: '层', field: 'location_layer', type: 'number' },
        {
          title: '入库时间',
          field: 'containerhead_createtime',
          type: 'datetime',
        },
      ],
      [
        { title: '收货确认人', field: 'containerdtl_takeGoogsCheckUser', type: 'text' },
            {
          title: '收货确认时间',
          field: 'containerdtl_takeGoogsCheckTime',
          type: 'datetime',
        },
 
        { title: '确认人', field: 'containerdtl_qualityCheckUser', type: 'text' },
            {
          title: '确认时间',
          field: 'containerdtl_qualityCheckTime',
          type: 'datetime',
        },
      ],
      [
        {
          title: '测量结果', field: 'containerdtl_text3', type: 'select',
          dataKey: "",
          data: [
            { key: "合格", value: "合格" },
            { key: "不合格", value: "不合格" }
          ]
        },
        { title: '称重结果', field: 'containerdtl_standardResult', type: 'select',
          dataKey: "OutcomeTyep",
          data: []
         },
        {
          title: '超期', field: 'DateDiffResult2', type: 'select',
          dataKey: "",
          data: [
            { key: "超期", value: "超期" },
            { key: "未超期", value: "未超期" }
          ]
        },
        {
          title: '未登记时间', field: 'DateDiffResult3', type: 'select',
          dataKey: "",
          data: [
            { key: "未登记收货确认时间", value: "未登记收货确认时间" },
            { key: "未登记确认时间", value: "未登记确认时间" }
          ]
        },
 
      ]
    ]);
    const columns = ref([
      {
        field: 'containerdtl_id',
        title: '主键ID',
        type: 'guid',
        width: 110,
        hidden: true,
        require: true,
        align: 'left',
      },
      {
        field: 'containerhead_id',
        title: '容器头id',
        type: 'guid',
        width: 110,
        hidden: true,
        require: true,
        align: 'left',
      },
      {
        field: 'containerhead_areaid',
        title: '库区/区域ID',
        type: 'string',
        width: 120,
        align: 'left',
        sort: true,
        hidden: true,
      },
      {
        field: 'containerhead_barcode',
        title: '托盘号',
        type: 'string',
        require: true,
        sort: true,
        align: 'left',
      },
      {
        field: 'containerdtl_goodsCode',
        title: '轴承编号',
        type: 'string',
        width: 150,
 
        align: 'left',
        sort: true,
      },
      {
        field: 'materiel_name',
        title: '车型',
        type: 'string',
        require: true,
        align: 'left',
        hidden: true,
      },
      {
        field: 'materiel_id',
        title: '车型',
        type: 'string',
        require: true,
        align: 'left',
        sort: true,
      },
      {
        field: 'containerdtl_type',
        title: '轴承型号',
        type: 'datetime',
        width: 150,
        align: 'left',
        sort: true,
      },
      {
        field: 'materiel_type',
        title: '物料类型',
        type: 'string',
        hidden: true,
        align: 'left',
        sort: true,
      },
      {
        field: 'materiel_unit',
        title: '计量单位',
        type: 'string',
        width: 110,
        hidden: true,
        align: 'left',
        sort: true,
      },
      {
        field: 'containerdtl_madeUnit',
        title: '厂家',
        type: 'string',
        width: 110,
        align: 'left',
        sort: true,
      },
      {
        field: 'location_id',
        title: '货位编号',
        type: 'string',
        align: 'left',
        sort: true,
      },
      {
        field: 'containerdtl_standard',
        title: '轴承类别',
        type: 'string',
        align: 'left',
        bind: { key: 'WeighingType', data: [] },
        sort: true,
      },
      {
        field: 'containerdtl_text1',
        title: '测量状态',
        type: 'string',
        align: 'left',
        sort: true,
      },
      {
        field: 'containerdtl_goodsWeight',
        title: '测量重量',
        type: 'string',
        align: 'left',
        sort: true,
      },
      {
        field: 'containerdtl_standardResult',
        title: '称重结果',
        type: 'string',
        align: 'left',
        bind: { key: 'OutcomeTyep', data: [] },
        sort: true,
      },
      {
        field: 'containerdtl_text3',
        title: '测量结果',
        type: 'string',
        width: 120,
        align: 'left',
        sort: true,
      },
      {
        field: 'location_state',
        title: '货位状态',
        type: 'string',
        bind: { key: 'LocationState', data: [] },
        align: 'left',
        sort: true,
      },
      {
        field: 'location_islocked',
        title: '是否锁定',
        type: 'bool',
        bind: { key: 'LocationLocked', data: [] },
        require: true,
        align: 'left',
        sort: true,
      },
      {
        field: 'location_line',
        title: '行',
        type: 'int',
        width: 110,
        require: true,
        align: 'left',
        hidden: true,
      },
      {
        field: 'location_column',
        title: '列',
        type: 'int',
        width: 110,
        require: true,
        align: 'left',
        hidden: true,
      },
      {
        field: 'location_layer',
        title: '层',
        type: 'int',
        width: 110,
        require: true,
        align: 'left',
        hidden: true,
      },
 
      {
        field: 'containerdtl_text2',
        title: '预留2',
        type: 'string',
        width: 120,
        hidden: true,
        align: 'left',
      },
      {
        field: 'containerdtl_lotNumber',
        title: '轴承单号',
        type: 'string',
        width: 90,
        align: 'left',
      },
      {
        field: 'containerdtl_ProductDate',
        title: '有效期',
        type: 'string',
        width: 100,
        align: 'left',
      },
 
      {
        field: 'csize_four_result',
        title: '挡油环内径',
        type: 'string',
        width: 110,
        align: 'left',
        hidden: true,
      },
      {
        field: 'csize_three_result',
        title: '后挡内径',
        type: 'string',
        width: 110,
        align: 'left',
        hidden: true,
      },
      {
        field: 'csize_out_value',
        title: '轴承外径结果',
        type: 'string',
        width: 110,
        align: 'left',
        hidden: true,
      },
      {
        field: 'containerhead_requstkey',
        title: 'containerhead_requstkey',
        type: 'string',
        width: 110,
        align: 'left',
        hidden: true,
      },
      {
        field: 'location_deep',
        title: '深度',
        type: 'int',
        width: 80,
        align: 'left',
        hidden: true,
      },
 
      {
        field: 'containerdtl_identifierNo',
        title: '轴承识别号',
        type: 'string',
        width: 120,
        align: 'left',
        hidden: true,
        hidden: true,
      },
      {
        field: 'containerdtl_inboundUnit',
        title: '收入单位',
        type: 'string',
        width: 120,
        align: 'left',
        hidden: true,
      },
 
      {
        field: 'containerdtl_carType',
        title: '车型',
        type: 'datetime',
        width: 110,
        align: 'left',
        sort: true,
        hidden: true,
      },
 
      {
        field: 'containerdtl_barcode',
        title: '托盘条码',
        type: 'string',
        width: 120,
        align: 'left',
        hidden: true,
      },
 
      {
        field: 'containerdtl_madeDate',
        title: '制造日期',
        type: 'datetime',
        width: 150,
        align: 'left',
        sort: true,
        hidden: true,
      },
      {
        field: 'containerdtl_number',
        title: '轴承编号',
        type: 'string',
        width: 120,
        align: 'left',
        hidden: true,
      },
 
      {
        field: 'csize_container_detail_id',
        title: 'csize_container_detail_id',
        type: 'string',
        width: 110,
        require: true,
        align: 'left',
        hidden: true,
      },
      {
        field: 'csize_barcode',
        title: 'csize_barcode',
        type: 'string',
        width: 120,
        align: 'left',
        hidden: true,
      },
      {
        field: 'csize_in_value',
        title: '轴承内径值',
        type: 'string',
        width: 110,
        align: 'left',
        hidden: true,
      },
      {
        field: 'csize_in_result',
        title: '轴承内径结果',
        type: 'string',
        width: 110,
        align: 'left',
        hidden: true,
      },
      {
        field: 'csize_out_result',
        title: '轴承外径结果',
        type: 'string',
        width: 110,
        align: 'left',
        hidden: true,
      },
      {
        field: 'containerdtl_operator',
        title: '操作者',
        type: 'string',
        width: 110,
        align: 'left',
        hidden: true,
      },
      {
        field: 'containerdtl_creator',
        title: '创建者',
        type: 'string',
        align: 'left',
        sort: true,
      },
      {
        field: 'containerhead_createtime',
        title: '入库时间',
        type: 'datetime',
        width: 150,
        require: true,
        align: 'left',
        sort: true,
      },
      {
        field: 'DateDiffResult',
        title: '入库时长',
        type: 'string',
        sort: true,
        width: 110,
        align: 'left',
      },
      {
        field: 'containerdtl_createtime',
        title: '创建时间',
        type: 'datetime',
        width: 110,
        align: 'left',
        sort: true,
        hidden: true,
      },
 
      // {
      //   field: 'containerdtl_qualityCheck',
      //   title: '质检确认',
      //   type: 'string',
      //   require: true,
      //   align: 'left',
      //   sort: true,
      //   bind: { key: 'isphone', data: [] },
      // },
      {
        field: 'containerdtl_qualityCheckTime',
        title: '确认时间',
        type: 'datetime',
        sort: true,
        width: 110,
        align: 'left',
      },
      {
        field: 'containerdtl_qualityCheckUser',
        title: '确认人',
        type: 'string',
        width: 110,
        align: 'left',
        sort: true,
      },
 
      // {
      //   field: 'containerdtl_takeGoogsCheck',
      //   title: '收货确认',
      //   type: 'string',
      //   require: true,
      //   align: 'left',
      //   sort: true,
      //   bind: { key: 'isphone', data: [] },
      // },
      {
        field: 'containerdtl_takeGoogsCheckTime',
        title: '收货确认时间',
        type: 'datetime',
        sort: true,
        width: 110,
        align: 'left',
      },
      {
        field: 'containerdtl_takeGoogsCheckUser',
        title: '收货确认人',
        type: 'string',
        width: 110,
        align: 'left',
        sort: true,
      },
    ]);
    const detail = ref({
      cnName: '#detailCnName',
      columns: [],
      sortName: '',
      key: '',
    });
    return {
      table,
      extend,
      editFormFields,
      editFormOptions,
      searchFormFields,
      searchFormOptions,
      columns,
      detail,
    };
  },
});
</script>