dengzedong
2024-11-06 0c184a7a974f83fae30d925a3b3ed30dcdb7f8d2
提交 | 用户 | 时间
820397 1 <template>
H 2   <div class="panel-tab__content">
3     <el-form label-width="90px">
4       <el-form-item label="快捷配置">
5         <el-button size="small" @click="changeConfig('依次审批')">依次审批</el-button>
6         <el-button size="small" @click="changeConfig('会签')">会签</el-button>
7         <el-button size="small" @click="changeConfig('或签')">或签</el-button>
8       </el-form-item>
9       <el-form-item label="会签类型">
10         <el-select v-model="loopCharacteristics" @change="changeLoopCharacteristicsType">
11           <el-option label="并行多重事件" value="ParallelMultiInstance" />
12           <el-option label="时序多重事件" value="SequentialMultiInstance" />
13           <el-option label="无" value="Null" />
14         </el-select>
15       </el-form-item>
16       <template
17         v-if="
18           loopCharacteristics === 'ParallelMultiInstance' ||
19           loopCharacteristics === 'SequentialMultiInstance'
20         "
21       >
22         <el-form-item label="循环数量" key="loopCardinality">
23           <el-input
24             v-model="loopInstanceForm.loopCardinality"
25             clearable
26             @change="updateLoopCardinality"
27           />
28         </el-form-item>
29         <el-form-item label="集合" key="collection" v-show="false">
30           <el-input v-model="loopInstanceForm.collection" clearable @change="updateLoopBase" />
31         </el-form-item>
32         <!-- add by 芋艿:由于「元素变量」暂时用不到,所以这里 display 为 none -->
33         <el-form-item label="元素变量" key="elementVariable" style="display: none">
34           <el-input v-model="loopInstanceForm.elementVariable" clearable @change="updateLoopBase" />
35         </el-form-item>
36         <el-form-item label="完成条件" key="completionCondition">
37           <el-input
38             v-model="loopInstanceForm.completionCondition"
39             clearable
40             @change="updateLoopCondition"
41           />
42         </el-form-item>
43         <!-- add by 芋艿:由于「异步状态」暂时用不到,所以这里 display 为 none -->
44         <el-form-item label="异步状态" key="async" style="display: none">
45           <el-checkbox
46             v-model="loopInstanceForm.asyncBefore"
47             label="异步前"
48             @change="updateLoopAsync('asyncBefore')"
49           />
50           <el-checkbox
51             v-model="loopInstanceForm.asyncAfter"
52             label="异步后"
53             @change="updateLoopAsync('asyncAfter')"
54           />
55           <el-checkbox
56             v-model="loopInstanceForm.exclusive"
57             v-if="loopInstanceForm.asyncAfter || loopInstanceForm.asyncBefore"
58             label="排除"
59             @change="updateLoopAsync('exclusive')"
60           />
61         </el-form-item>
62         <el-form-item
63           label="重试周期"
64           prop="timeCycle"
65           v-if="loopInstanceForm.asyncAfter || loopInstanceForm.asyncBefore"
66           key="timeCycle"
67         >
68           <el-input v-model="loopInstanceForm.timeCycle" clearable @change="updateLoopTimeCycle" />
69         </el-form-item>
70       </template>
71     </el-form>
72   </div>
73 </template>
74
75 <script lang="ts" setup>
76 defineOptions({ name: 'ElementMultiInstance' })
77
78 const props = defineProps({
79   businessObject: Object,
80   type: String
81 })
82 const prefix = inject('prefix')
83 const loopCharacteristics = ref('')
84 //默认配置,用来覆盖原始不存在的选项,避免报错
85 const defaultLoopInstanceForm = ref({
86   completionCondition: '',
87   loopCardinality: '',
88   extensionElements: [],
89   asyncAfter: false,
90   asyncBefore: false,
91   exclusive: false
92 })
93 const loopInstanceForm = ref<any>({})
94 const bpmnElement = ref(null)
95 const multiLoopInstance = ref(null)
96 const bpmnInstances = () => (window as any)?.bpmnInstances
97
98 const getElementLoop = (businessObject) => {
99   if (!businessObject.loopCharacteristics) {
100     loopCharacteristics.value = 'Null'
101     loopInstanceForm.value = {}
102     return
103   }
104   if (businessObject.loopCharacteristics.$type === 'bpmn:StandardLoopCharacteristics') {
105     loopCharacteristics.value = 'StandardLoop'
106     loopInstanceForm.value = {}
107     return
108   }
109   if (businessObject.loopCharacteristics.isSequential) {
110     loopCharacteristics.value = 'SequentialMultiInstance'
111   } else {
112     loopCharacteristics.value = 'ParallelMultiInstance'
113   }
114   // 合并配置
115   loopInstanceForm.value = {
116     ...defaultLoopInstanceForm.value,
117     ...businessObject.loopCharacteristics,
118     completionCondition: businessObject.loopCharacteristics?.completionCondition?.body ?? '',
119     loopCardinality: businessObject.loopCharacteristics?.loopCardinality?.body ?? ''
120   }
121   // 保留当前元素 businessObject 上的 loopCharacteristics 实例
122   multiLoopInstance.value = bpmnInstances().bpmnElement.businessObject.loopCharacteristics
123   // 更新表单
124   if (
125     businessObject.loopCharacteristics.extensionElements &&
126     businessObject.loopCharacteristics.extensionElements.values &&
127     businessObject.loopCharacteristics.extensionElements.values.length
128   ) {
129     loopInstanceForm.value['timeCycle'] =
130       businessObject.loopCharacteristics.extensionElements.values[0].body
131   }
132 }
133
134 const changeLoopCharacteristicsType = (type) => {
135   // this.loopInstanceForm = { ...this.defaultLoopInstanceForm }; // 切换类型取消原表单配置
136   // 取消多实例配置
137   if (type === 'Null') {
138     bpmnInstances().modeling.updateProperties(toRaw(bpmnElement.value), {
139       loopCharacteristics: null
140     })
141     return
142   }
143   // 配置循环
144   if (type === 'StandardLoop') {
145     const loopCharacteristicsObject = bpmnInstances().moddle.create(
146       'bpmn:StandardLoopCharacteristics'
147     )
148     bpmnInstances().modeling.updateProperties(toRaw(bpmnElement.value), {
149       loopCharacteristics: loopCharacteristicsObject
150     })
151     multiLoopInstance.value = null
152     return
153   }
154   // 时序
155   if (type === 'SequentialMultiInstance') {
156     multiLoopInstance.value = bpmnInstances().moddle.create(
157       'bpmn:MultiInstanceLoopCharacteristics',
158       { isSequential: true }
159     )
160   } else {
161     multiLoopInstance.value = bpmnInstances().moddle.create(
162       'bpmn:MultiInstanceLoopCharacteristics',
163       { collection: '${coll_userList}' }
164     )
165   }
166   bpmnInstances().modeling.updateProperties(toRaw(bpmnElement.value), {
167     loopCharacteristics: toRaw(multiLoopInstance.value)
168   })
169 }
170
171 // 循环基数
172 const updateLoopCardinality = (cardinality) => {
173   let loopCardinality = null
174   if (cardinality && cardinality.length) {
175     loopCardinality = bpmnInstances().moddle.create('bpmn:FormalExpression', {
176       body: cardinality
177     })
178   }
179   bpmnInstances().modeling.updateModdleProperties(
180     toRaw(bpmnElement.value),
181     multiLoopInstance.value,
182     {
183       loopCardinality
184     }
185   )
186 }
187
188 // 完成条件
189 const updateLoopCondition = (condition) => {
190   let completionCondition = null
191   if (condition && condition.length) {
192     completionCondition = bpmnInstances().moddle.create('bpmn:FormalExpression', {
193       body: condition
194     })
195   }
196   bpmnInstances().modeling.updateModdleProperties(
197     toRaw(bpmnElement.value),
198     multiLoopInstance.value,
199     {
200       completionCondition
201     }
202   )
203 }
204
205 // 重试周期
206 const updateLoopTimeCycle = (timeCycle) => {
207   const extensionElements = bpmnInstances().moddle.create('bpmn:ExtensionElements', {
208     values: [
209       bpmnInstances().moddle.create(`${prefix}:FailedJobRetryTimeCycle`, {
210         body: timeCycle
211       })
212     ]
213   })
214   bpmnInstances().modeling.updateModdleProperties(
215     toRaw(bpmnElement.value),
216     multiLoopInstance.value,
217     {
218       extensionElements
219     }
220   )
221 }
222
223 // 直接更新的基础信息
224 const updateLoopBase = () => {
225   bpmnInstances().modeling.updateModdleProperties(
226     toRaw(bpmnElement.value),
227     multiLoopInstance.value,
228     {
229       collection: loopInstanceForm.value.collection || null,
230       elementVariable: loopInstanceForm.value.elementVariable || null
231     }
232   )
233 }
234
235 // 各异步状态
236 const updateLoopAsync = (key) => {
237   const { asyncBefore, asyncAfter } = loopInstanceForm.value
238   let asyncAttr = Object.create(null)
239   if (!asyncBefore && !asyncAfter) {
240     // this.$set(this.loopInstanceForm, "exclusive", false);
241     loopInstanceForm.value['exclusive'] = false
242     asyncAttr = { asyncBefore: false, asyncAfter: false, exclusive: false, extensionElements: null }
243   } else {
244     asyncAttr[key] = loopInstanceForm.value[key]
245   }
246   bpmnInstances().modeling.updateModdleProperties(
247     toRaw(bpmnElement.value),
248     multiLoopInstance.value,
249     asyncAttr
250   )
251 }
252
253 const changeConfig = (config) => {
254   if (config === '依次审批') {
255     changeLoopCharacteristicsType('SequentialMultiInstance')
256     updateLoopCardinality('1')
257     updateLoopCondition('${ nrOfCompletedInstances >= nrOfInstances }')
258   } else if (config === '会签') {
259     changeLoopCharacteristicsType('ParallelMultiInstance')
260     updateLoopCondition('${ nrOfCompletedInstances >= nrOfInstances }')
261   } else if (config === '或签') {
262     changeLoopCharacteristicsType('ParallelMultiInstance')
263     updateLoopCondition('${ nrOfCompletedInstances > 0 }')
264   }
265 }
266
267 onBeforeUnmount(() => {
268   multiLoopInstance.value = null
269   bpmnElement.value = null
270 })
271
272 watch(
273   () => props.businessObject,
274   (val) => {
275     bpmnElement.value = bpmnInstances().bpmnElement
276     getElementLoop(val)
277   },
278   { immediate: true }
279 )
280 </script>