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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rez_core",
3
- "version": "2.2.88",
3
+ "version": "2.2.90",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -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 = true;
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 = 'todo' and organization_id = ? and listtype = 'TKST' LIMIT 1;`,
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
 
@@ -1,5 +0,0 @@
1
- {
2
- "recommendations": [
3
- "dbaeumer.vscode-eslint"
4
- ]
5
- }