mirror of
https://github.com/nocobase/nocobase
synced 2024-11-16 10:56:17 +00:00
f7b62ed42b
* fix(plugin-workflow): fix sql transaction and locale * fix(plugin-workflow): fix locale
25 lines
704 B
TypeScript
25 lines
704 B
TypeScript
import { Processor, Instruction, JOB_STATUS, FlowNodeModel } from '@nocobase/plugin-workflow';
|
|
|
|
export default class extends Instruction {
|
|
async run(node: FlowNodeModel, input, processor: Processor) {
|
|
const { sequelize } = (<typeof FlowNodeModel>node.constructor).database;
|
|
const sql = processor.getParsedValue(node.config.sql ?? '', node.id).trim();
|
|
if (!sql) {
|
|
return {
|
|
status: JOB_STATUS.RESOLVED,
|
|
};
|
|
}
|
|
|
|
const result = await sequelize.query(sql, {
|
|
transaction: processor.transaction,
|
|
// plain: true,
|
|
// model: db.getCollection(node.config.collection).model
|
|
});
|
|
|
|
return {
|
|
result,
|
|
status: JOB_STATUS.RESOLVED,
|
|
};
|
|
}
|
|
}
|