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
| /*
| * @Description: 工单批次相关
| * @Author: Ben Lin
| * @version:
| * @Date: 2024-06-19 20:34:27
| * @LastEditors: Ben Lin
| * @LastEditTime: 2024-09-29 21:28:37
| */
|
| import { Tag, Tooltip } from 'ant-design-vue';
| import { ActionItem, BasicColumn, FormSchema } from '/@/components/Table';
| import { useI18n } from '/@/hooks/web/useI18n';
| import { h } from 'vue';
| import { getEntity, SaveEntity } from '/@/api/tigerapi/system';
| import { useLocale } from '/@/locales/useLocale';
| import { useModal } from '/@/components/Modal';
| import { CustModalParams, FunctionType } from '/@/api/tigerapi/model/systemModel';
| import { useForm } from '/@/components/Form';
| import { useMessage } from '/@/hooks/web/useMessage';
| import { UpdateWoBatchStatus } from '/@/api/tigerapi/mes/wo';
| import { useUserStore } from '/@/store/modules/user';
| import { formatToDateTime } from '/@/utils/dateUtil';
|
| const { getLocale } = useLocale();
| const { createMessage, createErrorModal } = useMessage();
| const { t } = useI18n();
|
| function _default() {
| const ActionColumn: BasicColumn = {
| width: 180,
| title: '操作',
| dataIndex: 'action',
| slots: { customRender: 'action' },
| fixed: 'right',
| };
|
| /**
| * @description: 一些自定义方法
| * @return {*}
| */
| const methods = {
| /**
| * @description: 获取新增按钮的行为,必需要有的方法
| * @return {*}
| */
| CreateAction: (type: string) => {
| return {
| action: 'drawer', //drawer(打开左侧抽屉框) | go(跳转到新的页面)
| };
| },
| /**
| * @description: 产品绑定工艺路线操作字段自定义按钮,必需要有的方法
| * @return {*}
| */
| ActionItem: (params: Recordable<any>, data, ...args): ActionItem[] => {
| data.map((x) => {
| if (x.name == 'handlePause') {
| x.onClick = handlePause.bind(null, args, params);
| x.color = 'error';
| x.tooltip = '暂停';
| }
| if (x.name == 'handleStart') {
| x.onClick = handleStart.bind(null, args, params);
| x.tooltip = '取消暂停';
| }
| if (x.name == 'handleRelease') {
| x.onClick = handleRelease.bind(null, args, params);
| x.tooltip = '下发';
| }
| if (x.name == 'handleUnRelease') {
| x.onClick = handleUnRelease.bind(null, args, params);
| x.tooltip = '取消下发';
| }
| });
| return data;
| },
| /**
| * @description: 高级表单和详情页面返回主页面的url
| * @return {*}
| */
| GetHomeUrl: (params: {}) => {
| return `/BIZ_MES_WO/LC/${encodeURI(JSON.stringify({ ID: 'BIZ_MES_WO',"EntityName":"BIZ_MES_WO", colSlots: params['colSlots'], crudColSlots: [] }))}`;
| },
| GetBaseColumns: () => {
| return [
| {
| dataIndex: 'ORDER_NO',
| title: '工单号',
| // ifShow: false,
| sorter: true,
| resizable: true,
| },
| {
| dataIndex: 'BATCH_NO',
| title: '工单批次号',
| ifShow: true,
| sorter: true,
| resizable: true,
| customRender: () => {},
| },
| {
| dataIndex: 'STATUS',
| title: '状态',
| ifShow: true,
| sorter: true,
| resizable: true,
| customRender: ({ record }) => {
| let color = '';
| let text = '';
| switch (
| record.STATUS //状态(0Init初始化|1Imported已导入|2Release已下发|3Working生产中|4Paused已暂停|5Closed已关闭)
| ) {
| case 0:
| text = '初始化';
| color = '#bfbfbf';
| break;
| case 1:
| text = '已导入';
| color = 'orange';
| break;
| case 2:
| text = '已下发';
| color = '#4f68b0';
| break;
| case 3:
| text = '生产中';
| color = 'green';
| break;
| case 4:
| text = '已暂停';
| color = 'red';
| break;
| case 5:
| text = '已关闭';
| color = 'blue';
| break;
| }
| return h(Tooltip, { title: text }, () => h(Tag, { color: color }, () => text));
| },
| },
| {
| dataIndex: 'PLAN_QTY',
| title: '计划数量',
| ifShow: true,
| sorter: true,
| resizable: true,
| },
| {
| dataIndex: 'ITEM_CODE',
| title: '物料编码',
| ifShow: true,
| sorter: true,
| resizable: true,
| },
| {
| dataIndex: 'CUST_CODE',
| title: '客户编码',
| ifShow: true,
| sorter: true,
| resizable: true,
| },
| {
| dataIndex: 'ACT_LINE',
| title: '实际线体',
| ifShow: true,
| sorter: true,
| resizable: true,
| },
| {
| dataIndex: 'PLAN_DATE',
| title: '计划日期',
| ifShow: true,
| sorter: true,
| resizable: true,
| },
| {
| dataIndex: 'ACT_START_TIME',
| title: '实际开始时间',
| ifShow: true,
| sorter: true,
| resizable: true,
| },
| {
| dataIndex: 'REMARK',
| title: '备注',
| ifShow: true,
| sorter: true,
| resizable: true,
| },
| ];
| },
| GetSearchForm: () => {
| return [
| {
| field: 'BATCH_NO',
| label: t('工单批次号'),
| colProps: { span: 8 },
| component: 'Input',
| },
| ];
| },
| GetCrudForm: () => {
| return [];
| },
| KeyFieldValues: (val: string, id: string) => {
| return { ORDER_NO: val };
| },
| GetUseForm: () => {
| return {
| forminfo: useForm({
| labelWidth: 120,
| schemas: woformSchema,
| actionColOptions: {
| span: 24,
| },
| showActionButtonGroup: false,
| }),
| };
| },
| /**
| * @description: 自定义方法
| * @param {string} type
| * @param {array} args
| * @return {*}
| */
| CustFunc: (param: CustModalParams) => {
| switch (param.cType) {
| case 'BIZ_MES_WO_BATCH':
| 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_BATCH':
| 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: 弹出选择框选择成功返回方法
| * @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];
| 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;
| }
| },
| };
|
| /* 以下是内部方法,不export,供上面的方法调用 */
|
| /**
| * @description: 自定义方法
| * @return {*}
| */
| const getWoFns: Record<string, FunctionType> = {
| /**
| * @description: 工单下发保存方法
| * @param {CustModalParams} param
| * @return {*}
| */
| SaveWoBatch: (param: CustModalParams) => {
| return new Promise((resolve, reject) => {
| try {
| const wo = param.values['mValues'];
| /* 更新工单批次状态 */
| return UpdateWoBatchStatus({
| UserId: useUserStore().getUserInfo.userId as string,
| WorkOrder: wo.ORDER_NO,
| WoBatch: wo.BATCH_NO,
| ActLine: param.values['forminfo'].ACT_LINE,
| Status: 2,
| RouteStatus: 0,
| }).then((action) => {
| resolve(action);
| });
| } catch {
| reject(false);
| }
| });
| },
| };
|
| /**
| * @description: 工单暂停方法
| * @param {*} args
| * @param {Recordable} params
| * @return {*}
| */
| function handlePause(args, params: Recordable) {
| const reload = args[1];
| if (params['record'].STATUS != 3) {
| createErrorModal({
| title: t('警告'),
| content: t('工单不是生产中状态,不能暂停!'),
| getContainer: () => document.body,
| });
| return;
| }
| /* 更新工单批次状态 */
| UpdateWoBatchStatus({
| UserId: useUserStore().getUserInfo.userId as string,
| WorkOrder: params['record'].ORDER_NO,
| WoBatch: params['record'].BATCH_NO,
| Status: 4,
| RouteStatus: 0,
| ActLine: ''
| }).then((action) => {
| if (action.IsSuccessed) {
| createMessage.success(t('已暂停'));
| reload();
| } else {
| createMessage.success(t(action.Message));
| }
| });
| }
|
| /**
| * @description: 工单取消暂停方法
| * @param {*} args
| * @param {Recordable} params
| * @return {*}
| */
| function handleStart(args, params: Recordable) {
| const reload = args[1];
| if (params['record'].STATUS != 4) {
| createErrorModal({
| title: t('警告'),
| content: t('工单不是暂停状态,不能取消暂停!'),
| getContainer: () => document.body,
| });
| return;
| }
| /* 更新工单批次状态 */
| UpdateWoBatchStatus({
| UserId: useUserStore().getUserInfo.userId as string,
| WorkOrder: params['record'].ORDER_NO,
| WoBatch: params['record'].BATCH_NO,
| Status: 3,
| RouteStatus: 0,
| ActLine: ''
| }).then((action) => {
| if (action.IsSuccessed) {
| createMessage.success(t('暂停已取消'));
| reload();
| } else {
| createMessage.success(t('取消暂停操作失败'));
| }
| });
| }
|
| /**
| * @description: 工单下发方法
| * @param {*} args
| * @param {Recordable} params
| * @return {*}
| */
| function handleRelease(args, params: Recordable) {
| const openCustModal = args[7];
| if (params['record'].STATUS != 0) {
| createErrorModal({
| title: t('警告'),
| content: t('工单不是初始状态,不能下发!'),
| getContainer: () => document.body,
| });
| return;
| }
| openCustModal(true, {
| isUpdate: true, //是否更新操作
| ctype: 'BIZ_MES_WO_BATCH', //是哪个页面
| title: '工单下发', //标题
| width: '900px', //弹出框宽度
| formEl: params['useFormData'].value,
| formElName: ['forminfo'], //表单插槽名称
| RowKeys: { add: 'ROUTE_CODE', set: 'ROUTE_CODE' }, //插槽的弹出框选择的code
| fnName: 'SaveWoBatch', //保存方法名
| initFnName: {}, //初始化方法名,没有就留空{}
| values: params['record'], //表单记录
| });
| }
|
| /**
| * @description: 工单取消下发方法
| * @param {*} args
| * @param {Recordable} params
| * @return {*}
| */
| function handleUnRelease(args, params: Recordable) {
| const reload = args[1];
| if (params['record'].STATUS != 2) {
| createErrorModal({
| title: t('警告'),
| content: t('工单不是下发状态,不能取消下发!'),
| getContainer: () => document.body,
| });
| return;
| }
| /* 更新工单批次状态 */
| UpdateWoBatchStatus({
| UserId: useUserStore().getUserInfo.userId as string,
| WorkOrder: params['record'].ORDER_NO,
| WoBatch: params['record'].BATCH_NO,
| Status: 0, //取消下发状态
| RouteStatus: 0,
| ActLine: ''
| }).then((action) => {
| if (action.IsSuccessed) {
| createMessage.success(t('下发已取消'));
| reload();
| } else {
| createErrorModal({
| title: t('警告'),
| content: t(action.Message),
| getContainer: () => document.body,
| });
| }
| });
| }
|
| 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',
| },
| },
| // {
| // 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,
| // },
| // },
| ];
|
| return [methods, ActionColumn];
| }
|
| export default _default;
|
|