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
| /*
| * @Description: 收货单(U9)
| * @Author: 杨云刚
| * @version:
| * @Date: 2024-06-19 20:34:27
| * @LastEditors: 杨云刚
| * @LastEditTime: 2024-10-23 20:48:14
| */
|
| import { Ref, h, ref, render, unref } from 'vue';
| import { GetEnum, SaveEntity, convertToTree, getEntity } from '/@/api/tigerapi/system';
| import { useLocale } from '/@/locales/useLocale';
| import { useI18n } from '/@/hooks/web/useI18n';
| import { useMessage } from '/@/hooks/web/useMessage';
| import { useModal } from '/@/components/Modal';
| import { ActionItem, BasicColumn, FormSchema } from '/@/components/Table';
| import { useUserStore } from '/@/store/modules/user';
| import { buildUUID } from '/@/utils/uuid';
| import { SaveWoBatchInput } from '/@/api/tigerapi/model/mesModel';
| import { CustModalParams, FunctionType } from '/@/api/tigerapi/model/systemModel';
| import { SaveMesBatchWo } from '/@/api/tigerapi/mes/wo';
| import { useForm } from '/@/components/Form/index';
| import { cloneDeep } from 'lodash-es';
| import { useProdRouteStore } from '/@/store/modules/prodRoute';
| import { Tag, Tooltip } from 'ant-design-vue';
|
| const { t } = useI18n();
| const { createErrorModal } = useMessage();
| const { getLocale } = useLocale();
| function _default() {
| const ActionColumn: BasicColumn = {
| width: 180,
| title: '操作',
| dataIndex: 'action',
| slots: { customRender: 'action' },
| fixed: 'right',
| };
| /**
| * @description: 工单管理的一些自定义方法
| * @return {*}
| */
| const methods = {
| /**
| * @description: 获取新增按钮的行为
| * @return {*}
| */
| CreateAction: (type: string, fnName: string) => {
| return {
| action: 'drawer', //drawer(打开左侧抽屉框) | go(跳转到新的页面)
| };
| },
| /**
| * @description: 操作字段自定义按钮
| * @return {*}
| */
| ActionItem: (params: Recordable<any>, data, ...args): ActionItem[] => {
| data.map((x) => {
| if (x.name == 'goDetail') {
| x.onClick = goDetail.bind(null, args[5], params);
| x.tooltip = '详情';
| }
| });
| return data;
| },
| /**
| * @desc 初始化表单
| */
| GetUseForm: () => {
| return {
| forminfo: useForm({
| labelWidth: 120,
| schemas: woformSchema,
| actionColOptions: {
| span: 24,
| },
| showActionButtonGroup: false,
| }),
| woinfo: useForm({
| labelWidth: 120,
| schemas: woCfgformSchema,
| actionColOptions: {
| span: 24,
| },
| showActionButtonGroup: false,
| }),
| prodinfo: useForm({
| labelWidth: 120,
| schemas: prodCfgformSchema,
| actionColOptions: {
| span: 24,
| },
| showActionButtonGroup: false,
| }),
| tmpinfo: useForm({
| labelWidth: 120,
| schemas: prodCfgformSchema,
| actionColOptions: {
| span: 24,
| },
| showActionButtonGroup: false,
| }),
| };
| },
| /**
| * @description: 自定义方法
| * @param {string} type
| * @param {array} args
| * @return {*}
| */
| CustFunc: (param: CustModalParams) => {
| switch (param.cType) {
| case 'BIZ_MES_WO':
| case 'BIZ_MES_WO_Config':
| return getWoFns[param.FnName](param) as Promise<any>;
| // break;
| default:
| return new Promise((resolve, reject) => {
| try {
| (e) => {};
| resolve(true);
| } catch {
| reject(false);
| } finally {
| // args[0][0]({ confirmLoading: false });
| }
| });
| // break;
| }
| },
| /**
| * @description: 获取多表单插槽列表
| * @return {*}
| */
| GetDtlSlots: (type: string) => {
| let result = [] as any[];
| switch (type) {
| case 'BIZ_MES_WO_Config':
| result = [
| { name: 'woinfo', slots: [], preIcons: {}, title: '工单信息' },
| {
| name: 'prodinfo',
| slots: ['addRot', 'setRot'],
| preIcons: { addRot: 'search|svg', setRot: 'config|svg' },
| title: '产品信息',
| },
| { name: 'rotinfo', slots: ['add'], preIcons: { add: 'search|svg' }, title: '工艺信息' },
| ];
| break;
| case 'BIZ_MES_WO':
| result = [
| {
| name: 'forminfo',
| slots: ['add', 'set'],
| preIcons: { add: 'search|svg', set: 'config|svg' }, //如果是多个表单,增加多个插槽。slots是弹出框按钮的插槽,preIcons是插槽对应的按钮图标
| title: '下发配置',
| },
| ];
| break;
| }
| return result;
| },
| /**
| * @description: 获取模态框应用列表
| * @return {*}
| */
| GetUseModals: () => {
| return {
| useModalData: {
| add: useModal(),
| set: useModal(),
| addRot: useModal(),
| setRot: useModal(),
| },
| };
| },
| /**
| * @description: 获取自定义数据
| * @return {*}
| */
| GetCustData: () => {
| return {
| isCustEl: {
| forminfo: false,
| woinfo: false,
| prodinfo: false,
| rotinfo: true,
| },
| };
| },
| /**
| * @description: 弹出选择框选择成功返回方法
| * @param {*} d
| * @param {*} u
| * @return {*}
| */
| GetSelectSuccess: (d, u) => {
| return {
| ROUTE_CODE: d.values['val'],
| // ID: d.values['id'],
| ROT_ID: d.values['id'],
| };
| },
| /**
| * @description: 打开弹出选择框
| * @param {Fn} openItemModal
| * @param {array} args
| * @return {*}
| */
| OpenSelectItem: (openItemModal: Fn, ...args) => {
| const slotName = args[0];
| const openRvModal = args[1];
| const selectVals = args[2];
| switch (slotName) {
| case 'addRot':
| case 'add':
| openItemModal(true, {
| title: '工艺路线列表',
| schemas: [
| {
| field: 'ROT_CODE',
| component: 'Input',
| label: '工艺路线编码',
| colProps: {
| span: 12,
| },
| },
| ],
| ItemColumns: [
| {
| title: t('工艺路线编码'),
| dataIndex: 'ROT_CODE',
| resizable: true,
| sorter: true,
| width: 200,
| },
| {
| title: t('工艺路线名称'),
| dataIndex: 'ROT_NAME',
| resizable: true,
| sorter: true,
| width: 180,
| },
| ],
| tableName: 'MES_ROUTE',
| rowKey: 'ROT_CODE',
| returnFieldName: ['ROUTE_CODE', 'ROT_ID'], //返回值要赋值的字段名称
| searchInfo: { TABLE_NAME: 'MES_ROUTE' },
| });
| break;
| case 'set':
| openRvModal(true, { rotId: selectVals.value['ROUTE_CODE'], slotName: slotName });
| break;
| case 'setRot':
| break;
| }
| },
| /**
| * @description: 获取标题信息
| * @param {string} type
| * @return {*}
| */
| GetTitle: () => {
| return {
| importTitle: '工单计划导入' /* 打开模态窗口显示的标题 */,
| };
| },
| };
|
| /* 以下是内部方法,不export,供上面的方法调用 */
|
| /**
| * @description: 跳转到详情页面方法
| * @param {Fn} go
| * @return {*}
| */
| function goDetail(go: Fn, params: Recordable) {
| const id = {
| ID: params['record'].ID,
| CODE: params['record']['ORDER_NO'],
| Name: 'BIZ_U9_RECEIPT_DTL',
| firstTabName: '收货单(U9)',
| secondTabName: '收货单SN', //'标签过程变量',
| firstTitle: '明细',
| secondTitle: '', //'过程变量',
| Tabs: [
| {
| name: '收货单明细',
| tableTitle: '明细',
| entityName: 'BIZ_U9_RECEIPT_DTL',
| NeedInclude: true,
| key: 'BIZ_U9_RECEIPT_DTL'
| },
| {
| name: '收货单SN',
| tableTitle: 'SN',
| entityName: 'BIZ_U9_RECEIPT_SN',
| NeedInclude: true,
| key: 'BIZ_U9_RECEIPT_SN'
| }
| ],
| pageTitle: '收货单(U9)详情', //详情页面标题
| contentStr: '这里是收货单(U9)明细管理页面,可以显示收货单(U9)的所有批次详情',
| detailName: `收货单[${params['record'].ORDER_NO}]批次详情`,
| keyFieldValues: { ORDER_NO: params['record']['ORDER_NO'] },
| colSlots: params['colSlots'].value,
| SessionName: 'BIZ_U9_RECEIPT_DTL_update',
| ifSave: false,
| };
| // 将对象转换为JSON字符串并保存到sessionStorage
| sessionStorage.removeItem(`${id.SessionName}_params`);
| sessionStorage.setItem(`${id.SessionName}_params`, encodeURI(JSON.stringify(id)));
| go(`/BIZ_U9_RECEIPT_DTL/${encodeURI(JSON.stringify({ sName: id.SessionName, Name: id.Name }))}`);
| }
|
|
|
|
| const woformSchema: FormSchema[] = [
| {
| field: 'PLAN_QTY',
| label: '工单数量',
| component: 'Input',
| required: true,
| colProps: {
| span: 24,
| },
| dynamicDisabled: ({ values }) => {
| return true;
| },
| },
| {
| field: 'RELEASE_QTY',
| label: '工单下发数量',
| component: 'Input',
| required: true,
| colProps: {
| span: 24,
| },
| },
| {
| label: '实际产线',
| field: 'ACT_LINE',
| component: 'ApiSelect',
| required: true,
| colProps: {
| span: 24,
| },
| componentProps: {
| api: getEntity,
| params: { entityName: 'MES_LINE', sqlcmd: ' 1=1 ', order: '' },
| resultField: 'Data.Items',
| labelField: 'LINE_NAME',
| valueField: 'LINE_CODE',
| },
| },
| {
| field: 'IfToCust',
| component: 'Switch',
| label: '是否保存工艺路线到客户',
| defaultValue: true,
| colProps: {
| span: 8,
| },
| labelWidth: 200,
| },
| // {
| // label: '工艺路线',
| // field: 'ROUTE_CODE',
| // component: 'Input',
| // required: true,
| // colProps: {
| // span: 22,
| // },
| // },
| // {
| // field: 'add',
| // component: 'Input',
| // label: '1',
| // colSlot: 'add',
| // defaultValue: 'MES_ROUTE',
| // colProps: {
| // span: 1,
| // },
| // },
| // {
| // field: 'set',
| // component: 'Input',
| // label: '1',
| // colSlot: 'set',
| // defaultValue: 'MES_ROUTE',
| // colProps: {
| // span: 1,
| // },
| // },
| ];
|
| const woCfgformSchema: FormSchema[] = [
| {
| field: 'ORDER_NO',
| component: 'Input',
| label: '工单号',
| colProps: {
| span: 8,
| },
| componentProps: {
| placeholder: '请输入工单号',
| onChange: (e: any) => {
| console.log(e);
| },
| },
| dynamicDisabled: true,
| },
| {
| field: 'ORDER_TYPE',
| component: 'ApiSelect',
| label: '工单类型',
| colProps: {
| span: 8,
| },
| defaultValue: 0,
| componentProps: {
| api: GetEnum,
| params: { name: 'BIZ_MES_WO+ORDER_TYPEs' },
| resultField: 'Data',
| labelField: unref(getLocale) == 'zh_CN' ? 'Desc' : 'Name',
| valueField: 'Value',
| placeholder: '请选择工单类型',
| },
| dynamicDisabled: true,
| },
| {
| field: 'PLAN_QTY',
| component: 'Input',
| label: '计划数量',
| colProps: {
| span: 8,
| },
| dynamicDisabled: true,
| },
| ];
|
| const prodCfgformSchema: FormSchema[] = [
| {
| field: 'ITEM_CODE',
| component: 'Input',
| label: '物料编码',
| required: true,
| colProps: {
| span: 12,
| },
| componentProps: {
| placeholder: '请输入物料编码',
| onChange: (e: any) => {
| console.log(e);
| },
| },
| dynamicDisabled: true,
| },
| {
| field: 'ITEM_TYPE',
| component: 'Input',
| label: '物料类型',
| colProps: {
| span: 12,
| },
| },
| {
| label: '工艺路线',
| field: 'ROUTE_CODE',
| component: 'Input',
| required: true,
| colProps: {
| span: 12,
| },
| },
| {
| field: 'addRot',
| component: 'Input',
| label: '1',
| colSlot: 'addRot',
| defaultValue: 'MES_ROUTE',
| colProps: {
| span: 1,
| },
| },
| {
| field: 'setRot',
| component: 'Input',
| label: '1',
| colSlot: 'setRot',
| defaultValue: 'MES_ROUTE',
| colProps: {
| span: 1,
| },
| },
| {
| label: '工艺路线',
| field: 'ROT_ID',
| component: 'Input',
| show: false,
| colProps: {
| span: 12,
| },
| },
| // {
| // field: 'fieldsc',
| // component: 'Upload',
| // label: '打印模板',
| // colProps: {
| // span: 10,
| // },
| // rules: [{ required: true, message: '请选择上传文件' }],
| // componentProps: {
| // api: uploadApi,
| // multiple: false,
| // },
| // },
| ];
|
| return [methods, ActionColumn];
| }
|
| export default _default;
|
|