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
| import type { VbenFormApi, VbenFormSchema } from '#/adapter/form';
| import type { VxeTableGridOptions } from '#/adapter/vxe-table';
| import type { MesWmSnApi } from '#/api/mes/wm/sn';
| import type { DescriptionItemSchema } from '#/components/description';
|
| import { markRaw } from 'vue';
|
| import { MesWmSnStatusEnum } from '@vben/constants';
| import { formatDateTime } from '@vben/utils';
|
| import { getRangePickerDefaultProps } from '#/utils';
| import { MdItemSelect } from '#/views/mes/md/item/components';
| import {
| WmWarehouseAreaSelect,
| WmWarehouseLocationSelect,
| WmWarehouseSelect,
| } from '#/views/wls/warehouse/components';
|
| /** SN 状态选项(无独立字典,使用常量映射) */
| export const SN_STATUS_OPTIONS = [
| { label: '在库', value: MesWmSnStatusEnum.IN_STOCK },
| { label: '已出库', value: MesWmSnStatusEnum.OUT_STOCK },
| ];
|
| /** 生成 SN 码的表单 */
| export function useFormSchema(): VbenFormSchema[] {
| return [
| {
| fieldName: 'itemId',
| label: '物料',
| component: markRaw(MdItemSelect),
| componentProps: {
| placeholder: '请选择物料',
| },
| rules: 'required',
| },
| {
| fieldName: 'batchCode',
| label: '批次号',
| component: 'Input',
| componentProps: {
| allowClear: true,
| maxlength: 100,
| placeholder: '请输入批次号',
| },
| },
| {
| fieldName: 'count',
| label: '生成数量',
| component: 'InputNumber',
| componentProps: {
| class: '!w-full',
| max: 1000,
| min: 1,
| placeholder: '请输入生成数量',
| },
| rules: 'required',
| },
| ];
| }
|
| /** 列表的搜索表单 */
| export function useGridFormSchema(): VbenFormSchema[] {
| return [
| {
| fieldName: 'code',
| label: 'SN 码',
| component: 'Input',
| componentProps: {
| allowClear: true,
| placeholder: '请输入 SN 码',
| },
| },
| {
| fieldName: 'itemId',
| label: '物料',
| component: markRaw(MdItemSelect),
| componentProps: {
| placeholder: '请选择物料',
| },
| },
| {
| fieldName: 'batchCode',
| label: '批次号',
| component: 'Input',
| componentProps: {
| allowClear: true,
| placeholder: '请输入批次号',
| },
| },
| {
| fieldName: 'createTime',
| label: '创建时间',
| component: 'RangePicker',
| componentProps: {
| ...getRangePickerDefaultProps(),
| allowClear: true,
| },
| },
| ];
| }
|
| /** 列表的字段 */
| export function useGridColumns(): VxeTableGridOptions<MesWmSnApi.SnGroup>['columns'] {
| return [
| {
| field: 'itemCode',
| title: '物料编码',
| minWidth: 120,
| },
| {
| field: 'itemName',
| title: '物料名称',
| minWidth: 150,
| },
| {
| field: 'specification',
| title: '规格型号',
| minWidth: 120,
| },
| {
| field: 'unitName',
| title: '单位',
| width: 80,
| },
| {
| field: 'batchCode',
| title: '批次号',
| minWidth: 120,
| },
| {
| field: 'count',
| title: 'SN 码数量',
| width: 100,
| slots: { default: 'count' },
| },
| {
| field: 'createTime',
| title: '生成时间',
| width: 180,
| formatter: 'formatDateTime',
| },
| {
| title: '操作',
| width: 240,
| fixed: 'right',
| slots: { default: 'actions' },
| },
| ];
| }
|
| /** SN 码明细弹窗的字段 */
| export function useDetailGridColumns(): VxeTableGridOptions<MesWmSnApi.Sn>['columns'] {
| return [
| {
| field: 'code',
| title: 'SN 码',
| minWidth: 180,
| },
| {
| field: 'itemCode',
| title: '物料编码',
| minWidth: 120,
| },
| {
| field: 'itemName',
| title: '物料名称',
| minWidth: 150,
| },
| {
| field: 'specification',
| title: '规格型号',
| minWidth: 120,
| },
| {
| field: 'unitName',
| title: '单位',
| width: 80,
| },
| {
| field: 'batchCode',
| title: '批次号',
| minWidth: 120,
| },
| {
| field: 'createTime',
| title: '生成时间',
| width: 180,
| formatter: 'formatDateTime',
| },
| {
| title: '操作',
| width: 100,
| fixed: 'right',
| slots: { default: 'actions' },
| },
| ];
| }
|
| /** 在库单件列表的搜索表单 */
| export function useInStockGridFormSchema(): VbenFormSchema[] {
| return [
| {
| fieldName: 'code',
| label: 'SN 码',
| component: 'Input',
| componentProps: {
| allowClear: true,
| placeholder: '请输入 SN 码',
| },
| },
| {
| fieldName: 'itemId',
| label: '物料',
| component: markRaw(MdItemSelect),
| componentProps: {
| placeholder: '请选择物料',
| },
| },
| {
| fieldName: 'batchCode',
| label: '批次号',
| component: 'Input',
| componentProps: {
| allowClear: true,
| placeholder: '请输入批次号',
| },
| },
| {
| fieldName: 'status',
| label: '状态',
| component: 'Select',
| componentProps: {
| allowClear: true,
| options: SN_STATUS_OPTIONS,
| placeholder: '请选择状态',
| },
| },
| ];
| }
|
| /** 在库单件列表的字段 */
| export function useInStockGridColumns(): VxeTableGridOptions<MesWmSnApi.Sn>['columns'] {
| return [
| {
| field: 'code',
| title: 'SN 码',
| minWidth: 180,
| },
| {
| field: 'itemCode',
| title: '物料编码',
| minWidth: 120,
| },
| {
| field: 'itemName',
| title: '物料名称',
| minWidth: 150,
| },
| {
| field: 'specification',
| title: '规格型号',
| minWidth: 120,
| },
| {
| field: 'unitName',
| title: '单位',
| width: 80,
| },
| {
| field: 'batchCode',
| title: '批次号',
| minWidth: 120,
| },
| {
| field: 'status',
| title: '状态',
| width: 90,
| slots: { default: 'status' },
| },
| {
| field: 'warehouseId',
| title: '仓库',
| minWidth: 140,
| slots: { default: 'locations' },
| },
| {
| field: 'createTime',
| title: '生成时间',
| width: 180,
| formatter: 'formatDateTime',
| },
| {
| title: '操作',
| width: 140,
| fixed: 'right',
| slots: { default: 'actions' },
| },
| ];
| }
|
| /** SN 码入库登记的表单 */
| export function useInStockFormSchema(
| formApi?: VbenFormApi,
| ): VbenFormSchema[] {
| return [
| {
| fieldName: 'code',
| label: 'SN 码',
| component: 'Input',
| componentProps: {
| placeholder: '扫码枪扫入或输入 SN 码',
| },
| rules: 'required',
| },
| {
| fieldName: 'itemId',
| label: '物料',
| component: markRaw(MdItemSelect),
| componentProps: {
| placeholder: '请选择物料(须启用序列号管理)',
| },
| rules: 'selectRequired',
| },
| {
| fieldName: 'warehouseId',
| label: '仓库',
| component: markRaw(WmWarehouseSelect),
| componentProps: {
| onChange: () =>
| formApi?.setValues({ areaId: undefined, locationId: undefined }),
| placeholder: '请选择仓库',
| },
| rules: 'selectRequired',
| },
| {
| fieldName: 'locationId',
| label: '库区',
| component: markRaw(WmWarehouseLocationSelect),
| dependencies: {
| triggerFields: ['warehouseId'],
| show: (values) => !!values.warehouseId,
| componentProps: (values) => ({
| onChange: () => formApi?.setFieldValue('areaId', undefined),
| placeholder: '请选择库区',
| warehouseId: values.warehouseId,
| }),
| },
| rules: 'selectRequired',
| },
| {
| fieldName: 'areaId',
| label: '库位',
| component: markRaw(WmWarehouseAreaSelect),
| dependencies: {
| triggerFields: ['locationId'],
| show: (values) => !!values.locationId,
| componentProps: (values) => ({
| locationId: values.locationId,
| placeholder: '请选择库位',
| }),
| },
| rules: 'selectRequired',
| },
| {
| fieldName: 'batchCode',
| label: '批次号',
| component: 'Input',
| componentProps: {
| allowClear: true,
| placeholder: '请输入批次号',
| },
| },
| {
| fieldName: 'remark',
| label: '备注',
| component: 'Textarea',
| formItemClass: 'col-span-2',
| componentProps: {
| placeholder: '请输入备注',
| rows: 2,
| },
| },
| ];
| }
|
| /** SN 码出库核销的表单 */
| export function useOutStockFormSchema(): VbenFormSchema[] {
| return [
| {
| fieldName: 'code',
| label: 'SN 码',
| component: 'Input',
| componentProps: {
| placeholder: '扫码枪扫入或输入 SN 码',
| },
| rules: 'required',
| },
| {
| fieldName: 'itemId',
| label: '物料',
| component: markRaw(MdItemSelect),
| componentProps: {
| placeholder: '请选择物料',
| },
| rules: 'selectRequired',
| },
| {
| fieldName: 'remark',
| label: '备注',
| component: 'Textarea',
| formItemClass: 'col-span-2',
| componentProps: {
| placeholder: '请输入备注',
| rows: 2,
| },
| },
| ];
| }
|
| /** SN 码单件详情的描述字段 */
| export function useSnDetailSchema(): DescriptionItemSchema[] {
| return [
| {
| field: 'code',
| label: 'SN 码',
| render: (value) => value || '-',
| },
| {
| field: 'itemCode',
| label: '物料编码',
| render: (value) => value || '-',
| },
| {
| field: 'itemName',
| label: '物料名称',
| render: (value) => value || '-',
| },
| {
| field: 'batchCode',
| label: '批次号',
| render: (value) => value || '-',
| },
| {
| field: 'status',
| label: '状态',
| render: (value) =>
| value === MesWmSnStatusEnum.OUT_STOCK
| ? '已出库'
| : value === MesWmSnStatusEnum.IN_STOCK
| ? '在库'
| : '-',
| },
| {
| field: 'warehouseId',
| label: '在库位置',
| slot: 'location',
| },
| {
| field: 'lastTransactionTypeName',
| label: '最近流水',
| slot: 'lastTransaction',
| },
| {
| field: 'lastTransactionTime',
| label: '最近流水时间',
| render: (value) => formatDateTime(value) || '-',
| },
| ];
| }
|
|