ny
昨天 282fbc6488f4e8ceb5fda759f963ee88fbf7b999
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
<script lang="ts" setup>
import { computed, inject, reactive, toRefs, unref } from 'vue';
 
import { useMessage } from '@jnpf/hooks';
import { BasicModal, useModal, useModalInner } from '@jnpf/ui/modal';
import { formatToDateTime, isEmpty } from '@jnpf/utils';
 
import { cloneDeep } from 'lodash-es';
 
import { systemFieldOptions } from '#/utils/define';
 
import { conditionTypeOptions, conditionTypeOptions1, logicOptions, symbolOptions } from '../../helper/define';
import FormulaModal from './FormulaModal.vue';
 
defineOptions({ inheritAttrs: false });
 
const emit = defineEmits(['register', 'confirm']);
 
interface State {
  conditions: any[];
  formFieldsOptions: any[];
  usedFormItems: any[];
  matchLogic: string;
  activeIndex: number;
  activeChildIndex: number;
}
 
const state = reactive<State>({
  conditions: [],
  formFieldsOptions: [],
  usedFormItems: [],
  matchLogic: 'and',
  activeIndex: 0,
  activeChildIndex: 0,
});
const { conditions, usedFormItems, matchLogic } = toRefs(state);
const emptyChildItem = {
  fieldName: '',
  symbolName: '',
  fieldValue: undefined,
  fieldType: 1,
  fieldValueType: 2,
  fieldLabel: '',
  fieldValueJnpfKey: '',
  logicName: '并且',
  field: '',
  symbol: '',
  logic: '&&',
  jnpfKey: '',
  cellKey: Date.now(),
};
const emptyItem = { logic: 'and', groups: [emptyChildItem] };
const { createMessage } = useMessage();
const bpmn: (() => string | undefined) | undefined = inject('bpmn');
const [registerModal, { closeModal }] = useModalInner(init);
const [registerFormulaModal, { openModal: openFormulaModal }] = useModal();
 
const getBpmn = computed(() => (bpmn as () => any)());
const getJnpfGlobalData = computed(() => {
  const jnpfData: any = unref(getBpmn).get('jnpfData');
  return jnpfData?.getValue('global') || {};
});
const getSystemFieldOptions = computed(() => systemFieldOptions.map((o) => ({ ...o, label: o.fullName ? `${o.id}(${o.fullName})` : o.id })));
const getParameterList = computed(() => unref(getJnpfGlobalData).globalParameterList || []);
 
function init(data) {
  state.usedFormItems = data.usedFormItems || [];
  state.formFieldsOptions = data.formFieldsOptions || [];
  state.matchLogic = cloneDeep(data.matchLogic) || 'and';
  state.conditions = cloneDeep(data.conditions) || [];
  if (!state.conditions.length) addGroup();
}
function addItem(index) {
  state.conditions[index].groups.push(cloneDeep(emptyChildItem));
}
function delItem(index, childIndex) {
  state.conditions[index].groups.splice(childIndex, 1);
  if (!state.conditions[index].groups.length) delGroup(index);
}
function addGroup() {
  state.conditions.push(cloneDeep(emptyItem));
}
function delGroup(index) {
  state.conditions.splice(index, 1);
}
function editFormula(item, index, childIndex) {
  state.activeIndex = index;
  state.activeChildIndex = childIndex;
  openFormulaModal(true, { value: item.field, fieldsOptions: state.formFieldsOptions });
}
function updateFormula(formula) {
  state.conditions[state.activeIndex].groups[state.activeChildIndex].field = formula;
  state.conditions[state.activeIndex].groups[state.activeChildIndex].fieldName = formula;
}
function onFieldTypeChange(item) {
  item.field = '';
  handleNull(item);
}
function onFieldChange(item, val, data, index, childIndex) {
  if (!val) return handleNull(item);
  item.fieldName = data.__config__.label;
  item.jnpfKey = data.__config__.jnpfKey;
  const newItem = cloneDeep(emptyChildItem);
  for (const key of Object.keys(newItem)) {
    newItem[key] = item[key];
  }
  item = { ...newItem, ...data };
  if (item.fieldValueType == 2) {
    item.fieldValue = undefined;
    item.fieldLabel = '';
    item.fieldValueJnpfKey = '';
  }
  state.conditions[index].groups[childIndex] = item;
}
function handleNull(item) {
  item.fieldName = '';
  item.jnpfKey = '';
  if (item.fieldValueType == 2) {
    item.fieldValue = undefined;
    item.fieldLabel = '';
    item.fieldValueJnpfKey = '';
  }
}
function onSymbolChange(item, val, data) {
  item.symbolName = val ? data.fullName : '';
}
function onFieldValueChange(item, val, data) {
  item.fieldLabel = val ? data.fullName : '';
  item.fieldValueJnpfKey = val ? data.__config__.jnpfKey : '';
}
function onFieldValueTypeChange(item) {
  item.fieldValue = '';
  item.fieldLabel = '';
  item.fieldValueJnpfKey = '';
}
function onConditionDateChange(val, item) {
  if (!val) return (item.fieldLabel = '');
  const format = item.format || 'YYYY-MM-DD HH:mm:ss';
  item.fieldLabel = formatToDateTime(val, format);
}
function onConditionListChange(item, val, data) {
  if (!val) return (item.fieldLabel = '');
  const labelList = data.map((o) => o.fullName);
  item.fieldLabel = labelList.join('/');
}
function onConditionOrganizeChange(item, val, data) {
  if (!val) return (item.fieldLabel = '');
  item.fieldLabel = data.orgNameTree || '';
}
function onConditionObjChange(item, val, data) {
  if (!val) return (item.fieldLabel = '');
  item.fieldLabel = data.fullName || '';
}
function onConfigurationChange(item, val, data) {
  if (!val) return (item.fieldLabel = '');
  item.fieldLabel = data.fieldName || '';
}
function exist() {
  let isOk = true;
  for (let i = 0; i < state.conditions.length; i++) {
    const e = state.conditions[i];
    for (let j = 0; j < e.groups.length; j++) {
      const child = e.groups[j];
      if (!child.field) {
        createMessage.warning(child.fieldType == 1 ? '条件字段不能为空' : '条件公式不能为空');
        isOk = false;
        return;
      }
      if (!child.symbol) {
        createMessage.warning('条件符号不能为空');
        isOk = false;
        return;
      }
      if (!['notNull', 'null'].includes(child.symbol) && ((!child.fieldValue && child.fieldValue !== 0) || isEmpty(child.fieldValue))) {
        createMessage.warning('数据值不能为空');
        isOk = false;
        return;
      }
    }
  }
  return isOk;
}
function handleSubmit() {
  if (!state.conditions.length) return createMessage.warning('请设置条件组');
  if (!exist()) return false;
  const values = {
    matchLogic: state.matchLogic,
    conditions: cloneDeep(state.conditions),
  };
  emit('confirm', values);
  closeModal();
}
</script>
<template>
  <BasicModal v-bind="$attrs" @register="registerModal" title="设置条件" :width="800" @ok="handleSubmit" destroy-on-close class="jnpf-condition-modal">
    <div class="condition-main">
      <div class="mb-[10px]" v-if="conditions?.length">
        <jnpf-radio v-model:value="matchLogic" :options="logicOptions" option-type="button" button-style="solid" />
      </div>
      <div class="condition-item" v-for="(item, index) in conditions" :key="index">
        <div class="condition-item-title">
          <div>条件组</div>
          <i class="icon-ym icon-ym-nav-close" @click="delGroup(index)"></i>
        </div>
        <div class="condition-item-content">
          <div class="condition-item-cap">
            以下条件全部执行:
            <jnpf-radio v-model:value="item.logic" :options="logicOptions" option-type="button" button-style="solid" size="small" />
          </div>
          <a-row :gutter="8" v-for="(child, childIndex) in item.groups" :key="index + childIndex" class="mb-[10px]">
            <a-col :span="3">
              <jnpf-select v-model:value="child.fieldType" :options="conditionTypeOptions" @change="onFieldTypeChange(child)" />
            </a-col>
            <a-col :span="5">
              <jnpf-select
                v-model:value="child.field"
                :options="usedFormItems"
                allow-clear
                show-search
                :field-names="{ options: 'options1' }"
                class="!flex-1"
                @change="(val, data) => onFieldChange(child, val, data, index, childIndex)"
                v-if="child.fieldType === 1" />
              <a-button @click="editFormula(child, index, childIndex)" class="!flex-1" v-if="child.fieldType === 3">公式编辑</a-button>
            </a-col>
            <a-col :span="4">
              <jnpf-select
                class="w-full"
                v-model:value="child.symbol"
                :options="child.fieldValueType != 2 ? symbolOptions.filter((o) => !['in', 'notIn'].includes(o.id)) : symbolOptions"
                @change="(val, data) => onSymbolChange(child, val, data)" />
            </a-col>
            <a-col :span="4">
              <jnpf-select
                v-model:value="child.fieldValueType"
                :disabled="['in', 'notIn'].includes(child.symbol) ? true : child.disabled"
                :options="conditionTypeOptions1"
                @change="onFieldValueTypeChange(child)" />
            </a-col>
            <a-col :span="7" class="!flex">
              <jnpf-select
                v-model:value="child.fieldValue"
                :options="usedFormItems"
                allow-clear
                show-search
                :field-names="{ options: 'options1' }"
                @change="(val, data) => onFieldValueChange(child, val, data)"
                v-if="child.fieldValueType === 1" />
              <div class="w-[150px] flex-1" v-if="child.fieldValueType === 2">
                <template v-if="child.jnpfKey === 'inputNumber'">
                  <a-input-number v-model:value="child.fieldValue" placeholder="请输入" :precision="child.precision" />
                </template>
                <template v-else-if="child.jnpfKey === 'calculate'">
                  <a-input-number v-model:value="child.fieldValue" placeholder="请输入" :precision="2" />
                </template>
                <template v-else-if="['rate', 'slider'].includes(child.jnpfKey)">
                  <a-input-number v-model:value="child.fieldValue" placeholder="请输入" />
                </template>
                <template v-else-if="child.jnpfKey === 'switch'">
                  <jnpf-switch v-model:value="child.fieldValue" />
                </template>
                <template v-else-if="child.jnpfKey === 'timePicker'">
                  <jnpf-time-picker v-model:value="child.fieldValue" :format="child.format || 'HH:mm:ss'" allow-clear />
                </template>
                <template v-else-if="['datePicker', 'createTime', 'modifyTime', 'dateCalculate'].includes(child.jnpfKey)">
                  <jnpf-date-picker
                    v-model:value="child.fieldValue"
                    :format="child.format || 'YYYY-MM-DD HH:mm:ss'"
                    allow-clear
                    @change="onConditionDateChange($event, child)" />
                </template>
                <template v-else-if="['organizeSelect', 'currOrganize'].includes(child.jnpfKey)">
                  <jnpf-organize-select v-model:value="child.fieldValue" allow-clear @change="(val, data) => onConditionOrganizeChange(child, val, data)" />
                </template>
                <template v-else-if="child.jnpfKey === 'roleSelect'">
                  <jnpf-role-select v-model:value="child.fieldValue" allow-clear @change="(val, data) => onConditionObjChange(child, val, data)" />
                </template>
                <template v-else-if="child.jnpfKey === 'groupSelect'">
                  <jnpf-group-select v-model:value="child.fieldValue" allow-clear @change="(val, data) => onConditionObjChange(child, val, data)" />
                </template>
                <template v-else-if="['posSelect', 'currPosition'].includes(child.jnpfKey)">
                  <jnpf-pos-select v-model:value="child.fieldValue" allow-clear @change="(val, data) => onConditionOrganizeChange(child, val, data)" />
                </template>
                <template v-else-if="['userSelect', 'createUser', 'modifyUser'].includes(child.jnpfKey)">
                  <jnpf-user-select v-model:value="child.fieldValue" has-sys allow-clear @change="(val, data) => onConditionObjChange(child, val, data)" />
                </template>
                <template v-else-if="child.jnpfKey === 'usersSelect'">
                  <jnpf-users-select v-model:value="child.fieldValue" allow-clear @change="(val, data) => onConditionOrganizeChange(child, val, data)" />
                </template>
                <template v-else-if="child.jnpfKey === 'areaSelect'">
                  <jnpf-area-select
                    v-model:value="child.fieldValue"
                    :level="child.level"
                    allow-clear
                    @change="(val, data) => onConditionListChange(child, val, data)" />
                </template>
                <template v-else>
                  <a-select
                    v-if="['in', 'notIn'].includes(child.symbol)"
                    placeholder="请输入"
                    v-model:value="child.fieldValue"
                    allow-clear
                    mode="tags"
                    :open="false"
                    :disabled="child.disabled" />
                  <a-input v-else v-model:value="child.fieldValue" placeholder="请输入" allow-clear :disabled="child.disabled" />
                </template>
              </div>
              <jnpf-select
                v-model:value="child.fieldValue"
                :options="getSystemFieldOptions"
                :field-names="{ label: 'label', options: 'options1' }"
                allow-clear
                class="!w-[204px]"
                v-else-if="child.fieldValueType === 3" />
              <jnpf-select
                v-model:value="child.fieldValue"
                :options="getParameterList"
                :field-names="{ label: 'fieldName', value: 'fieldName', options: 'options1' }"
                allow-clear
                @change="(val, data) => onConfigurationChange(child, val, data)"
                v-else-if="child.fieldValueType === 4" />
            </a-col>
            <a-col :span="1" class="text-center">
              <i class="icon-ym icon-ym-btn-clearn" @click="delItem(index, childIndex)"></i>
            </a-col>
          </a-row>
          <span class="link-text inline-block" @click="addItem(index)"><i class="icon-ym icon-ym-btn-add mr-[4px] text-[14px]"></i>添加条件</span>
        </div>
      </div>
      <span class="link-text inline-block" @click="addGroup()"><i class="icon-ym icon-ym-btn-add mr-[4px] text-[14px]"></i>添加条件组</span>
    </div>
  </BasicModal>
  <FormulaModal @register="registerFormulaModal" @confirm="updateFormula" />
</template>