diff --git a/packages/plugins/@nocobase/plugin-workflow/src/server/instructions/CreateInstruction.ts b/packages/plugins/@nocobase/plugin-workflow/src/server/instructions/CreateInstruction.ts index fd5efeb73..6173bb393 100644 --- a/packages/plugins/@nocobase/plugin-workflow/src/server/instructions/CreateInstruction.ts +++ b/packages/plugins/@nocobase/plugin-workflow/src/server/instructions/CreateInstruction.ts @@ -11,7 +11,7 @@ export class CreateInstruction extends Instruction { const { collection, params: { appends = [], ...params } = {} } = node.config; const [dataSourceName, collectionName] = parseCollectionName(collection); - const { repository, model } = this.workflow.app.dataSourceManager.dataSources + const { repository, filterTargetKey } = this.workflow.app.dataSourceManager.dataSources .get(dataSourceName) .collectionManager.getCollection(collectionName); const options = processor.getParsedValue(params, node.id); @@ -33,7 +33,7 @@ export class CreateInstruction extends Instruction { return set; }, new Set()); result = await repository.findOne({ - filterByTk: created[model.primaryKeyAttribute], + filterByTk: created[filterTargetKey], appends: Array.from(includeFields), transaction, }); diff --git a/packages/plugins/@nocobase/plugin-workflow/src/server/triggers/CollectionTrigger.ts b/packages/plugins/@nocobase/plugin-workflow/src/server/triggers/CollectionTrigger.ts index 7650112ca..1bec73ee8 100644 --- a/packages/plugins/@nocobase/plugin-workflow/src/server/triggers/CollectionTrigger.ts +++ b/packages/plugins/@nocobase/plugin-workflow/src/server/triggers/CollectionTrigger.ts @@ -42,7 +42,7 @@ async function handler(this: CollectionTrigger, workflow: WorkflowModel, data: M .get(dataSourceName) .collectionManager.getCollection(collectionName); const { transaction, context } = options; - const { repository, model } = collection; + const { repository, filterTargetKey } = collection; // NOTE: if no configured fields changed, do not trigger if ( @@ -62,7 +62,7 @@ async function handler(this: CollectionTrigger, workflow: WorkflowModel, data: M // const calculation = toCalculation(condition); const count = await repository.count({ filter: { - $and: [condition, { [model.primaryKeyAttribute]: data[model.primaryKeyAttribute] }], + $and: [condition, { [filterTargetKey]: data[filterTargetKey] }], }, context, transaction, @@ -82,7 +82,7 @@ async function handler(this: CollectionTrigger, workflow: WorkflowModel, data: M return set; }, new Set()); result = await repository.findOne({ - filterByTk: data[model.primaryKeyAttribute], + filterByTk: data[filterTargetKey], appends: Array.from(includeFields), transaction, }); diff --git a/packages/plugins/@nocobase/plugin-workflow/src/server/triggers/ScheduleTrigger/DateFieldScheduleTrigger.ts b/packages/plugins/@nocobase/plugin-workflow/src/server/triggers/ScheduleTrigger/DateFieldScheduleTrigger.ts index b31231ae3..1340ce269 100644 --- a/packages/plugins/@nocobase/plugin-workflow/src/server/triggers/ScheduleTrigger/DateFieldScheduleTrigger.ts +++ b/packages/plugins/@nocobase/plugin-workflow/src/server/triggers/ScheduleTrigger/DateFieldScheduleTrigger.ts @@ -283,8 +283,11 @@ export default class ScheduleTrigger { } schedule(workflow: WorkflowModel, record, nextTime, toggle = true, options = {}) { - const { model } = this.workflow.app.db.getCollection(workflow.config.collection); - const recordPk = record.get(model.primaryKeyAttribute); + const [dataSourceName, collectionName] = parseCollectionName(workflow.config.collection); + const { filterTargetKey } = this.workflow.app.dataSourceManager.dataSources + .get(dataSourceName) + .collectionManager.getCollection(collectionName); + const recordPk = record.get(filterTargetKey); if (toggle) { const nextInterval = Math.max(0, nextTime - Date.now()); const key = `${workflow.id}:${recordPk}@${nextTime}`; @@ -307,8 +310,11 @@ export default class ScheduleTrigger { } async trigger(workflow: WorkflowModel, record, nextTime, { transaction }: Transactionable = {}) { - const { repository, model } = this.workflow.app.db.getCollection(workflow.config.collection); - const recordPk = record.get(model.primaryKeyAttribute); + const [dataSourceName, collectionName] = parseCollectionName(workflow.config.collection); + const { repository, filterTargetKey } = this.workflow.app.dataSourceManager.dataSources + .get(dataSourceName) + .collectionManager.getCollection(collectionName); + const recordPk = record.get(filterTargetKey); const data = await repository.findOne({ filterByTk: recordPk, appends: workflow.config.appends,