@steedos-labs/plugin-workflow 3.0.21 → 3.0.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/main/default/manager/handlers_manager.js +11 -12
- package/main/default/manager/workflow_manager.js +12 -0
- package/main/default/pages/page_instance_print.page.amis.json +1 -1
- package/main/default/routes/api_workflow_chart.router.js +41 -9
- package/main/default/routes/api_workflow_next_step.router.js +1 -1
- package/main/default/routes/api_workflow_next_step_users.router.js +7 -2
- package/main/default/routes/flow_form_design.ejs +3 -1
- package/main/default/triggers/amis_form_design.trigger.js +2 -3
- package/package.json +1 -1
- package/public/workflow/index.css +3 -0
- package/src/util/templateConverter.js +8 -2
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
|
|
2
1
|
const _ = require('underscore');
|
|
3
2
|
|
|
4
3
|
const { getCollection } = require('../utils/collection');
|
|
5
4
|
const { excuteTriggers } = require('../utils/trigger')
|
|
6
5
|
const WorkflowManager = require('./workflow_manager');
|
|
6
|
+
// const UUFlowManager = require('./uuflow_manager'); // Moved inside function to avoid circular dependency
|
|
7
7
|
|
|
8
8
|
const getHandlersManager = {};
|
|
9
9
|
|
|
@@ -20,7 +20,7 @@ getHandlersManager.getHandlersByUsersAndRoles = async function (user_ids, role_i
|
|
|
20
20
|
approve_users = approve_users.concat(users);
|
|
21
21
|
}
|
|
22
22
|
} else {
|
|
23
|
-
throw new Error('error! user_id
|
|
23
|
+
throw new Error('error! user_id不合法');
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
26
|
|
|
@@ -147,6 +147,7 @@ getHandlersManager.getHandlersByOrgAndRole = async function (org_id, role_id, sp
|
|
|
147
147
|
};
|
|
148
148
|
|
|
149
149
|
getHandlersManager.getHandlers = async function (instance_id, step_id, login_user_id) {
|
|
150
|
+
const UUFlowManager = require('./uuflow_manager');
|
|
150
151
|
const instancesCollection = await getCollection('instances');
|
|
151
152
|
const flowsCollection = await getCollection('flows');
|
|
152
153
|
const formsCollection = await getCollection('forms');
|
|
@@ -287,7 +288,7 @@ getHandlersManager.getHandlers = async function (instance_id, step_id, login_use
|
|
|
287
288
|
}
|
|
288
289
|
}
|
|
289
290
|
|
|
290
|
-
const newest_values = await
|
|
291
|
+
const newest_values = await UUFlowManager.getUpdatedValues(instance);
|
|
291
292
|
let org_ids = [];
|
|
292
293
|
let org_ids_names = [];
|
|
293
294
|
|
|
@@ -363,7 +364,7 @@ getHandlersManager.getHandlers = async function (instance_id, step_id, login_use
|
|
|
363
364
|
}
|
|
364
365
|
}
|
|
365
366
|
|
|
366
|
-
const newest_values = await
|
|
367
|
+
const newest_values = await UUFlowManager.getUpdatedValues(instance);
|
|
367
368
|
let org_ids = [];
|
|
368
369
|
let org_ids_names = [];
|
|
369
370
|
|
|
@@ -468,7 +469,7 @@ getHandlersManager.getHandlers = async function (instance_id, step_id, login_use
|
|
|
468
469
|
}
|
|
469
470
|
}
|
|
470
471
|
|
|
471
|
-
const newest_values = await
|
|
472
|
+
const newest_values = await UUFlowManager.getUpdatedValues(instance);
|
|
472
473
|
let user_ids_names = [];
|
|
473
474
|
|
|
474
475
|
if (newest_values[field_code]) {
|
|
@@ -484,14 +485,14 @@ getHandlersManager.getHandlers = async function (instance_id, step_id, login_use
|
|
|
484
485
|
for (const user of user_ids_names) {
|
|
485
486
|
const check_user_count = await spaceUsersCollection.find({
|
|
486
487
|
space: space_id,
|
|
487
|
-
user: user["id"]
|
|
488
|
+
user: _.isString(user) ? user : user["id"]
|
|
488
489
|
}).count();
|
|
489
490
|
|
|
490
491
|
if (check_user_count === 0) {
|
|
491
492
|
throw new Error('error! 人员ID不合法');
|
|
492
493
|
}
|
|
493
494
|
|
|
494
|
-
user_ids.push(user["id"]);
|
|
495
|
+
user_ids.push(_.isString(user) ? user : user["id"]);
|
|
495
496
|
}
|
|
496
497
|
|
|
497
498
|
user_ids = _.uniq(user_ids);
|
|
@@ -548,7 +549,7 @@ getHandlersManager.getHandlers = async function (instance_id, step_id, login_use
|
|
|
548
549
|
}
|
|
549
550
|
}
|
|
550
551
|
|
|
551
|
-
const newest_values = await
|
|
552
|
+
const newest_values = await UUFlowManager.getUpdatedValues(instance);
|
|
552
553
|
let user_ids_names = [];
|
|
553
554
|
|
|
554
555
|
if (newest_values[field_code]) {
|
|
@@ -560,18 +561,16 @@ getHandlersManager.getHandlers = async function (instance_id, step_id, login_use
|
|
|
560
561
|
}
|
|
561
562
|
|
|
562
563
|
let user_ids = [];
|
|
563
|
-
|
|
564
564
|
for (const user of user_ids_names) {
|
|
565
565
|
const check_user_count = await spaceUsersCollection.find({
|
|
566
566
|
space: space_id,
|
|
567
|
-
user: user["id"]
|
|
567
|
+
user: _.isString(user) ? user : user["id"]
|
|
568
568
|
}).count();
|
|
569
|
-
|
|
570
569
|
if (check_user_count === 0) {
|
|
571
570
|
throw new Error('error! 人员ID不合法');
|
|
572
571
|
}
|
|
573
572
|
|
|
574
|
-
user_ids.push(user["id"]);
|
|
573
|
+
user_ids.push(_.isString(user) ? user : user["id"]);
|
|
575
574
|
}
|
|
576
575
|
|
|
577
576
|
users = _.uniq(user_ids);
|
|
@@ -116,6 +116,18 @@ WorkflowManager.getRole = async function (spaceId, roleId) {
|
|
|
116
116
|
});
|
|
117
117
|
};
|
|
118
118
|
|
|
119
|
+
WorkflowManager.getRoles = async function (spaceId, roleIds) {
|
|
120
|
+
if (!roleIds || !spaceId) {
|
|
121
|
+
return;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
const flowRolesCollection = await getCollection('flow_roles');
|
|
125
|
+
return await flowRolesCollection.find({
|
|
126
|
+
_id: { $in: roleIds },
|
|
127
|
+
space: spaceId
|
|
128
|
+
}).toArray();
|
|
129
|
+
};
|
|
130
|
+
|
|
119
131
|
WorkflowManager.getSpacePositions = async function (spaceId) {
|
|
120
132
|
const flowPositionsCollection = await getCollection('flow_positions');
|
|
121
133
|
return await flowPositionsCollection.find({
|
|
@@ -182,7 +182,7 @@
|
|
|
182
182
|
"body": [
|
|
183
183
|
{
|
|
184
184
|
"type": "wrapper",
|
|
185
|
-
"className": "steedos-instance-detail-wrapper m-0 p-0 flex-1 focus:outline-none lg:order-last sm:m-4 shadow sm:rounded",
|
|
185
|
+
"className": "steedos-instance-print-wrapper steedos-instance-detail-wrapper m-0 p-0 flex-1 focus:outline-none lg:order-last sm:m-4 shadow sm:rounded",
|
|
186
186
|
"body": [
|
|
187
187
|
{
|
|
188
188
|
"type": "service",
|
|
@@ -39,7 +39,7 @@ const FlowversionAPI = {
|
|
|
39
39
|
return str.replace(/\"/g, """).replace(/\n/g, "<br/>");
|
|
40
40
|
},
|
|
41
41
|
|
|
42
|
-
getStepHandlerName: async function (step, insId) {
|
|
42
|
+
getStepHandlerName: async function (step, insId, instance) {
|
|
43
43
|
const db = {
|
|
44
44
|
users: await getCollection('users'),
|
|
45
45
|
// flow_roles: await getCollection('flow_roles')
|
|
@@ -53,9 +53,22 @@ const FlowversionAPI = {
|
|
|
53
53
|
return stepHandlerName;
|
|
54
54
|
}
|
|
55
55
|
let userIds = await getHandlersManager.getHandlers(insId, stepId, loginUserId);
|
|
56
|
+
|
|
57
|
+
// 如果没有找到处理人,从instance的step_approve中查找
|
|
58
|
+
if ((!userIds || userIds.length === 0) && instance?.step_approve && stepId) {
|
|
59
|
+
let stepApproveUserId = instance.step_approve[stepId];
|
|
60
|
+
if (stepApproveUserId) {
|
|
61
|
+
if (typeof stepApproveUserId === 'string') {
|
|
62
|
+
userIds = [stepApproveUserId];
|
|
63
|
+
} else if (Array.isArray(stepApproveUserId)) {
|
|
64
|
+
userIds = stepApproveUserId;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
|
|
56
69
|
let usersCol = db.users;
|
|
57
70
|
let approverNames = [];
|
|
58
|
-
for (let userId of userIds) {
|
|
71
|
+
for (let userId of userIds || []) {
|
|
59
72
|
let user = await usersCol.findOne({ _id: userId }, { projection: { name: 1 } });
|
|
60
73
|
if (user) {
|
|
61
74
|
approverNames.push(user.name);
|
|
@@ -111,21 +124,22 @@ const FlowversionAPI = {
|
|
|
111
124
|
return nodeStr;
|
|
112
125
|
},
|
|
113
126
|
|
|
114
|
-
getStepName: async function (step, cachedStepNames, instance_id) {
|
|
127
|
+
getStepName: async function (step, cachedStepNames, instance_id, instance) {
|
|
115
128
|
// 返回step节点名称,优先从缓存cachedStepNames中取,否则调用getStepLabel生成
|
|
116
129
|
let cachedStepName = cachedStepNames[step._id];
|
|
117
130
|
if (cachedStepName) {
|
|
118
131
|
return cachedStepName;
|
|
119
132
|
}
|
|
120
|
-
let stepHandlerName = await FlowversionAPI.getStepHandlerName(step, instance_id);
|
|
133
|
+
let stepHandlerName = await FlowversionAPI.getStepHandlerName(step, instance_id, instance);
|
|
121
134
|
let stepName = FlowversionAPI.getStepLabel(step.name, stepHandlerName);
|
|
122
135
|
cachedStepNames[step._id] = stepName;
|
|
123
136
|
return stepName;
|
|
124
137
|
},
|
|
125
138
|
|
|
126
|
-
generateStepsGraphSyntax: async function (steps, currentStepId, isConvertToString, direction, instance_id) {
|
|
139
|
+
generateStepsGraphSyntax: async function (steps, currentStepId, isConvertToString, direction, instance_id, instance) {
|
|
127
140
|
let nodes = [`graph ${direction}`];
|
|
128
141
|
let cachedStepNames = {};
|
|
142
|
+
let skipSteps = new Set(instance?.skip_steps || []);
|
|
129
143
|
for (let step of steps) {
|
|
130
144
|
let lines = step.lines;
|
|
131
145
|
if (lines?.length) {
|
|
@@ -136,13 +150,17 @@ const FlowversionAPI = {
|
|
|
136
150
|
if (step.step_type === "condition") {
|
|
137
151
|
nodes.push(` class ${step._id} condition;`);
|
|
138
152
|
}
|
|
139
|
-
stepName = await FlowversionAPI.getStepName(step, cachedStepNames, instance_id);
|
|
153
|
+
stepName = await FlowversionAPI.getStepName(step, cachedStepNames, instance_id, instance);
|
|
140
154
|
} else {
|
|
141
155
|
stepName = "";
|
|
142
156
|
}
|
|
157
|
+
// Mark skipped steps
|
|
158
|
+
if (skipSteps.has(step._id)) {
|
|
159
|
+
nodes.push(` class ${step._id} skip-step;`);
|
|
160
|
+
}
|
|
143
161
|
// 原findPropertyByPK("_id",line.to_step),转为find
|
|
144
162
|
let toStep = steps.find(s => s._id === line.to_step);
|
|
145
|
-
let toStepName = await FlowversionAPI.getStepName(toStep, cachedStepNames, instance_id);
|
|
163
|
+
let toStepName = await FlowversionAPI.getStepName(toStep, cachedStepNames, instance_id, instance);
|
|
146
164
|
nodes.push(` ${step._id}("${stepName}")-->${line.to_step}("${toStepName}")`);
|
|
147
165
|
}
|
|
148
166
|
}
|
|
@@ -487,13 +505,13 @@ const FlowversionAPI = {
|
|
|
487
505
|
break;
|
|
488
506
|
}
|
|
489
507
|
default: {
|
|
490
|
-
let instance = await db.instances.findOne({ _id: instance_id }, { projection: { flow_version: 1, flow: 1, traces: { $slice: -1 } } });
|
|
508
|
+
let instance = await db.instances.findOne({ _id: instance_id }, { projection: { flow_version: 1, flow: 1, step_approve: 1, skip_steps: 1, traces: { $slice: -1 } } });
|
|
491
509
|
if (instance) {
|
|
492
510
|
let currentStepId = instance.traces?.[0]?.step;
|
|
493
511
|
let flowversion = await WorkflowManager.getInstanceFlowVersion(instance);
|
|
494
512
|
let steps = flowversion?.steps;
|
|
495
513
|
if (steps?.length) {
|
|
496
|
-
graphSyntax = await FlowversionAPI.generateStepsGraphSyntax(steps, currentStepId, false, direction, instance_id);
|
|
514
|
+
graphSyntax = await FlowversionAPI.generateStepsGraphSyntax(steps, currentStepId, false, direction, instance_id, instance);
|
|
497
515
|
} else {
|
|
498
516
|
error_msg = "没有找到当前申请单的流程步骤数据";
|
|
499
517
|
}
|
|
@@ -557,6 +575,20 @@ const FlowversionAPI = {
|
|
|
557
575
|
stroke: rgb(204, 204, 255);
|
|
558
576
|
stroke-width: 1px;
|
|
559
577
|
}
|
|
578
|
+
#flow-steps-svg .node.skip-step rect{
|
|
579
|
+
fill: #e8e8e8;
|
|
580
|
+
stroke: #999999;
|
|
581
|
+
stroke-width: 2px;
|
|
582
|
+
stroke-dasharray: 5, 5;
|
|
583
|
+
opacity: 0.7;
|
|
584
|
+
}
|
|
585
|
+
#flow-steps-svg .node.skip-step .step-name{
|
|
586
|
+
color: #666666;
|
|
587
|
+
text-decoration: line-through;
|
|
588
|
+
}
|
|
589
|
+
#flow-steps-svg .node.skip-step .step-handler-name{
|
|
590
|
+
color: #999999;
|
|
591
|
+
}
|
|
560
592
|
#flow-steps-svg .node .trace-handler-name{
|
|
561
593
|
color: #777;
|
|
562
594
|
}
|
|
@@ -401,7 +401,7 @@ router.post('/api/workflow/v2/set_instance_steps', requireAuthentication, async
|
|
|
401
401
|
skip_steps: stepId
|
|
402
402
|
}
|
|
403
403
|
}
|
|
404
|
-
await objectql.getObject('instances').
|
|
404
|
+
await objectql.getObject('instances').directUpdate(instanceId, doc);
|
|
405
405
|
|
|
406
406
|
return res.status(200).send({ status: 0 });
|
|
407
407
|
} catch (error) {
|
|
@@ -14,6 +14,7 @@ const { excuteTriggers } = require('../utils/trigger');
|
|
|
14
14
|
const objectql = require('@steedos/objectql');
|
|
15
15
|
const WorkflowManager = require('../manager/workflow_manager');
|
|
16
16
|
const UUFlowManager = require('../manager/uuflow_manager');
|
|
17
|
+
const { t } = require('@steedos/i18n');
|
|
17
18
|
|
|
18
19
|
const getFieldName = (fields, fieldId)=>{
|
|
19
20
|
const field = _.find(fields, (item)=>{
|
|
@@ -167,7 +168,8 @@ router.post('/api/workflow/v2/nextStepUsers', requireAuthentication, async funct
|
|
|
167
168
|
}
|
|
168
169
|
|
|
169
170
|
if (!nextStepUsers || nextStepUsers.length < 1) {
|
|
170
|
-
|
|
171
|
+
const roles = await WorkflowManager.getRoles(instance.space, approverRoleIds);
|
|
172
|
+
error = t('next_step_users_not_found.applicant_role', {role_name: _.join(_.map(roles, 'name'), ', ')}, userSession.language)
|
|
171
173
|
}
|
|
172
174
|
} else {
|
|
173
175
|
error = "请先填写表单值";
|
|
@@ -189,7 +191,10 @@ router.post('/api/workflow/v2/nextStepUsers', requireAuthentication, async funct
|
|
|
189
191
|
}
|
|
190
192
|
|
|
191
193
|
if (!nextStepUsers || nextStepUsers.length < 1) {
|
|
192
|
-
|
|
194
|
+
|
|
195
|
+
const roles = await WorkflowManager.getRoles(instance.space, approverRoleIds);
|
|
196
|
+
console.log(`approverRoleIds`, approverRoleIds, roles)
|
|
197
|
+
error = t('next_step_users_not_found.applicant_role', {role_name: _.join(_.map(roles, 'name'), ', ')}, userSession.language)
|
|
193
198
|
}
|
|
194
199
|
} else {
|
|
195
200
|
error = "请先填写表单值";
|
|
@@ -276,11 +276,13 @@
|
|
|
276
276
|
if(field.steedos_field){
|
|
277
277
|
return {
|
|
278
278
|
type: `sfield-${_.toLower(_.camelCase(field.steedos_field.type))}`,
|
|
279
|
-
config: field.steedos_field
|
|
279
|
+
config: field.steedos_field,
|
|
280
|
+
_id: field._id
|
|
280
281
|
}
|
|
281
282
|
}
|
|
282
283
|
|
|
283
284
|
const tpl = {
|
|
285
|
+
_id: field._id,
|
|
284
286
|
label: field.name || field.code,
|
|
285
287
|
name: field.code,
|
|
286
288
|
required: field.is_required,
|
|
@@ -139,7 +139,6 @@ function getFinalFormFields(inputFields) {
|
|
|
139
139
|
const temp = transformFormFields(amisField);
|
|
140
140
|
finalFormFields.push(temp)
|
|
141
141
|
})
|
|
142
|
-
|
|
143
142
|
return finalFormFields
|
|
144
143
|
}
|
|
145
144
|
|
|
@@ -160,7 +159,7 @@ function transformFormFields(amisField) {
|
|
|
160
159
|
|
|
161
160
|
if(amisField.type === 'steedos-field'){
|
|
162
161
|
const sfield = {
|
|
163
|
-
_id: amisField.config.name,
|
|
162
|
+
_id: amisField._id || amisField.config.name,
|
|
164
163
|
code: amisField.config.name,
|
|
165
164
|
name: amisField.config.label,
|
|
166
165
|
is_wide: amisField.config.is_wide,
|
|
@@ -188,7 +187,7 @@ function transformFormFields(amisField) {
|
|
|
188
187
|
};
|
|
189
188
|
|
|
190
189
|
let formFieldsItem = {
|
|
191
|
-
_id: new ObjectId().toHexString(),
|
|
190
|
+
_id: amisField._id || new ObjectId().toHexString(),
|
|
192
191
|
code: amisField.name || amisField.title,
|
|
193
192
|
name: amisField.label || amisField.title,
|
|
194
193
|
is_wide: _.includes(amisField.className, "is_wide"),
|
package/package.json
CHANGED
|
@@ -290,15 +290,21 @@ function convertTemplate(content, fields, isPrint) {
|
|
|
290
290
|
newContent = newContent.replace(/\{\{afFieldLabelText\s+name=["'](.+?)["']\}\}/g, '$1');
|
|
291
291
|
|
|
292
292
|
// --- Sub-phase 2d: Convert instanceSignText ---
|
|
293
|
-
newContent = newContent.replace(/\{\{>\s*instanceSignText\s+([
|
|
293
|
+
newContent = newContent.replace(/\{\{>\s*instanceSignText\s+([\s\S]+?)\}\}/g, (match, args) => {
|
|
294
294
|
const argMap = parseArgs(args);
|
|
295
295
|
const fieldName = argMap.name;
|
|
296
296
|
if (!fieldName) return match;
|
|
297
297
|
|
|
298
298
|
const fieldDef = findFieldDef(fields, fieldName);
|
|
299
299
|
let stepName = "";
|
|
300
|
+
|
|
301
|
+
let formula = argMap.field_formula;
|
|
300
302
|
if (fieldDef && fieldDef.formula) {
|
|
301
|
-
|
|
303
|
+
formula = fieldDef.formula;
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
if (formula) {
|
|
307
|
+
const formulaMatch = formula.match(/signature\.traces\.([^}]+)/);
|
|
302
308
|
if (formulaMatch) {
|
|
303
309
|
stepName = formulaMatch[1].replace('}', '');
|
|
304
310
|
}
|