rez_core 2.2.88 → 2.2.90
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/dist/module/workflow/repository/action-data.repository.js +1 -1
- package/dist/module/workflow/repository/action-data.repository.js.map +1 -1
- package/dist/module/workflow/repository/task.repository.js +1 -1
- package/dist/module/workflow/repository/task.repository.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/module/workflow/repository/action-data.repository.ts +1 -1
- package/src/module/workflow/repository/task.repository.ts +1 -1
- package/.vscode/extensions.json +0 -5
package/package.json
CHANGED
|
@@ -179,7 +179,7 @@ export class ActionDataRepository extends EntityServiceImpl {
|
|
|
179
179
|
previousAction.modified_date = new Date();
|
|
180
180
|
previousAction.modified_by = organization_id;
|
|
181
181
|
previousAction.end_time = null as any; // Reset end time
|
|
182
|
-
previousAction.is_done =
|
|
182
|
+
previousAction.is_done = false;
|
|
183
183
|
await this.actionDataRepo.update(previousAction.id, previousAction);
|
|
184
184
|
|
|
185
185
|
// reverse the status of tasks for the previous action
|
|
@@ -30,7 +30,7 @@ export class TaskRepository {
|
|
|
30
30
|
if (!action?.length) return;
|
|
31
31
|
|
|
32
32
|
const todoListMasterItemId = await this.dataSource.query(
|
|
33
|
-
`SELECT id FROM cr_list_master_items WHERE code = '
|
|
33
|
+
`SELECT id FROM cr_list_master_items WHERE code = 'in_progress' and organization_id = ? and listtype = 'TKST' LIMIT 1;`,
|
|
34
34
|
[loggedInUser.organization_id],
|
|
35
35
|
);
|
|
36
36
|
|