222
schangxiang@126.com
2025-04-30 9bec4dcae002f36aa23231da11cb03a156b40110
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
import { ref, SetupContext, Ref, nextTick, computed, onMounted } from 'vue'
import { useVModel, useVModels } from '@vueuse/core'
import { ElMessage } from 'element-plus'
import { cloneDeep } from 'lodash'
import { _t } from '@/libs/Language/Language'
 
/**
 * 关联条码
 */
export const relationCodeColumns = computed(() => [
  {
    title: _t('序号'),
    field: 'seq',
    type: 'seq',
  },
  {
    title: _t('规则类型'),
    field: 'type',
  },
  {
    title: _t('条码名称'),
    field: 'name',
  },
  {
    title: _t('条码段组成'),
    field: 'barcodeGenerationDetail',
  },
  {
    title: _t('条码示例'),
    field: 'codeDemo',
  },
  {
    title: _t('更新时间'),
    field: 'lastModificationTime',
  },
  {
    title: _t('备注'),
    field: 'remark',
  },
])
 
export const checkCodeColumns = computed(() => [
  {
    title: _t('条码名称'),
    field: 'name',
  },
  {
    title: _t('校验类型'),
    field: 'verificationType',
  },
  {
    title: _t('校验条码'),
    field: 'verificationRule',
  },
  {
    title: _t('更新时间'),
    field: 'lastModificationTime',
  },
  {
    title: _t('备注'),
    field: 'remark',
  },
])
// 弹窗基本数据
export const useDialog = (props: any, ctx: SetupContext) => {
  /**
   * 显示隐藏
   */
  const visible =
    props.visible !== null ? useVModel(props, 'visible', ctx.emit) : ref(false)
  /**
   * 基础数据
   */
  const data = ref([])
  /**
   * 搜索值
   */
  const search = ref('')
  /**
   * 选择的值
   */
  const selections = ref<any[]>([])
  // 传递进来的数据
  const { modelValue } = useVModels(props, ctx.emit)
  /**
   * 关闭
   */
  const onClose = () => {
    visible.value = false // 更新visible的值
    selections.value = []
    ctx.emit('close')
  }
  /**
   * 确认
   */
  const onConfirm = () => {
    visible.value = false // 更新visible的值
    selections.value = []
    ctx.emit('confirm')
  }
  /**
   * 选择
   * @param records
   */
  const onCheck = (records: Array<Record<string, any>>) => {
    selections.value = records
  }
 
  const onChange = (val: any) => {}
  /**
   * 选择
   */
  const onSelect = () => {
    visible.value = true
  }
 
  return {
    visible,
    data,
    modelValue,
    selections,
    search,
    onConfirm,
    onClose,
    onCheck,
    onChange,
    onSelect,
  }
}
 
/**
 * 关联物料弹窗
 *  */
export const useRelationMaterial = (props: any, ctx: SetupContext) => {
  const dialogHook = useDialog(props, ctx)
  const tableRef = ref()
  const { visible, selections } = dialogHook
  const dataSource = ref(props.dataSource)
 
  /**
   * 点击确定的时候,需要将选择的数据塞到dataSource中
   */
  const updateDataSource = () => {
    return new Promise<void>((r, j) => {
      try {
        if (Array.isArray(selections.value) && selections.value.length > 0) {
          const index = props.index
          const data = cloneDeep(dataSource.value)
          dataSource.value = []
          nextTick(() => {
            dataSource.value = data
            selections.value.forEach((row, i: number) => {
              const record = {
                name: row.name,
                materialTypeDisplay: row.materialTypeDisplay,
                type: {
                  value: row.materialType,
                  description: row.materialTypeDisplay,
                  name: row.materialName || row.name,
                },
              }
              if (row.type) {
                record.type = row.type
              }
              const currentIndex = index + i
              if (dataSource.value[currentIndex]) {
                const row = dataSource.value[currentIndex]
                dataSource.value.splice(currentIndex, 1, {
                  ...row,
                  ...record,
                })
              } else {
                dataSource.value.push(record)
              }
            })
            r()
          })
        }
      } catch (error) {
        j(error)
      }
    })
  }
  // 确认时,更新数据
  const onConfirm = async () => {
    // 更新选中的数据
    await updateDataSource()
    visible.value = false
    ctx.emit('update:dataSource', dataSource.value)
    ctx.emit('confirm', dataSource.value)
  }
 
  return {
    ...dialogHook,
    tableRef,
    onConfirm,
  }
}
/**
 * 关联生成码
 * @param props
 * @param ctx
 * @returns
 */
export const useRelationGenerate = (props: any, ctx: SetupContext) => {
  const dialogHook = useDialog(props, ctx)
 
  const { visible, modelValue, search } = dialogHook
  const current = ref<Record<string, any>>({})
  const tableRef = ref()
  const formRef = ref()
  const formData = ref({
    barcode: '',
    dataVariable: '',
    input: '',
  })
  const barcodeVisible = ref(false)
  const objectName = ref(modelValue.value.objectName)
  const onRowClick = ({ row }: any) => {
    // 取code
    current.value = {
      name: objectName.value || row.name,
      value: row.id,
      description: row.name,
      objectName,
      row,
    }
  }
 
  onMounted(() => {
    const { name, dataVariable } = modelValue.value
    current.value = cloneDeep(modelValue.value)
    formData.value.barcode = name || ''
    formData.value.dataVariable = dataVariable || ''
    if (name && dataVariable) {
      formData.value.input = `${name}/${dataVariable}`
    } else {
      formData.value.input = name || ''
    }
  })
 
  // 确认时,更新数据
  const onConfirm = async () => {
    await formRef.value.validate()
    visible.value = false
    modelValue.value = {
      ...current.value,
      dataVariable: formData.value.dataVariable,
    }
    if (formData.value.dataVariable) {
      formData.value.input = `${current.value.name}/${formData.value.dataVariable}`
    } else {
      formData.value.input = current.value.name
    }
 
    ctx.emit('confirm', {
      ...current.value,
      dataVariable: formData.value.dataVariable,
    })
  }
 
  const onBarcodeConfirm = () => {
    formData.value.barcode = current.value.description
    barcodeVisible.value = false
  }
 
  const onSearch = () => {
    tableRef.value?.getList({
      filter: search.value,
    })
  }
 
  const url = computed(() => {
    return props.ruleType === 'barcodegeneration'
      ? '/api/v1/messuite/query/barcodegeneration'
      : '/api/v1/messuite/query/barcodeverification'
  })
 
  const columns = computed(() => {
    return props.ruleType === 'barcodegeneration'
      ? relationCodeColumns.value
      : checkCodeColumns.value
  })
 
  return {
    columns,
    url,
    ...dialogHook,
    formData,
    tableRef,
    barcodeVisible,
    formRef,
    onBarcodeConfirm,
    onSearch,
    onRowClick,
    onConfirm,
  }
}
 
/**
 * 关联流程
 * @param props
 * @param ctx
 * @returns
 */
export const useRelationFlow = (props: any, ctx: SetupContext) => {
  const dialogHook = useDialog(props, ctx)
  const tableRef = ref()
  const { visible, modelValue, selections } = dialogHook
  const isDisabled = ref(false)
  const checkFlow = (records: Record<string, any>[]) => {
    const flows: number[] = []
    records.forEach((item) => {
      flows.push(item.businessType.value)
    })
    // 进出站交互限制
    // flows中不能重复,有1的情况下,不能有2和3,有2和3的情况下,不能有1,2和3不能重复
    const temp = flows.filter((v) => v == 0)
    const other = flows.filter((v) => v != 0)
    const l = new Set(other).size + temp.length
    if (flows.length !== l) {
      return false
    }
    if (flows.includes(1)) {
      if (flows.includes(2) || flows.includes(3)) {
        return false
      }
      return true
    }
    if (flows.includes(2) || flows.includes(3)) {
      if (flows.includes(1)) {
        return false
      }
      return true
    }
    return true
  }
  /**
   * 选择
   * @param records
   */
  const onCheck = (records: Array<Record<string, any>>) => {
    selections.value = records
    if (!checkFlow(records)) {
      isDisabled.value = true
      ElMessage.error(_t('进站、出站的交互类型只能选择一个,请检查!'))
    } else {
      isDisabled.value = false
    }
  }
  // 确认时,更新数据
  const onConfirm = () => {
    modelValue.value = selections.value.map((item) => {
      return {
        ...item,
        description: item.name,
      }
    })
    visible.value = false
  }
 
  const onShowDialog = () => {
    visible.value = true
    nextTick(() => {
      if (tableRef.value && modelValue.value?.length) {
        tableRef.value?.setSelectRow(
          modelValue.value.map((item: any) => item.type)
        )
      }
    })
  }
 
  return {
    ...dialogHook,
    tableRef,
    isDisabled,
    onCheck,
    onConfirm,
    onShowDialog,
  }
}
 
/**
 * 工序
 * @param props
 * @param ctx
 * @returns
 */
export const useWorkSection = (props: any, ctx: SetupContext) => {
  const dialogHook = useDialog(props, ctx)
  const tableRef = ref()
  const current = ref({})
  const { visible, modelValue, selections, search } = dialogHook
 
  // 确认时,更新数据
  const onConfirm = () => {
    if (!props.isChecked) {
      modelValue.value = {
        ...current.value,
      }
      ctx.emit('confirm', current.value)
    } else {
      ctx.emit('confirm', selections.value)
    }
    visible.value = false
  }
 
  const onShowDialog = () => {
    visible.value = true
    nextTick(() => {
      if (tableRef.value && modelValue.value?.length) {
        tableRef.value?.setSelectRow(
          modelValue.value.map((item: any) => item.id)
        )
      } else {
        tableRef.value?.setCurrentRow(modelValue.value.id)
      }
    })
  }
 
  const onSearch = () => {
    tableRef.value?.getList({
      filter: search.value,
    })
  }
 
  const onRowClick = ({ row }: any) => {
    // 取code
    current.value = {
      name: row.name,
      id: row.id,
      code: row.code,
      flowDefinitions: row.flowDefinitions,
      sectionType: row.sectionType,
    }
  }
 
  return {
    ...dialogHook,
    tableRef,
    current,
    onSearch,
    onRowClick,
    onConfirm,
    onShowDialog,
  }
}