tango-app-api-trax 3.6.0-task-1 → 3.6.0-task-3
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
|
@@ -2024,30 +2024,33 @@ export async function submitTask( req, res ) {
|
|
|
2024
2024
|
|
|
2025
2025
|
if ( updateResult.modifiedCount > 0 ) {
|
|
2026
2026
|
if ( submittype === 'submit' ) {
|
|
2027
|
-
const
|
|
2028
|
-
|
|
2029
|
-
|
|
2030
|
-
|
|
2031
|
-
|
|
2032
|
-
|
|
2027
|
+
const excludedChecklists = [ 'Store Hygiene Check' ];
|
|
2028
|
+
if ( !excludedChecklists.includes( checklist.checkListName ) ) {
|
|
2029
|
+
const query1 = [
|
|
2030
|
+
{
|
|
2031
|
+
$match: {
|
|
2032
|
+
userId: user._id,
|
|
2033
|
+
sourceCheckList_id: checklist.sourceCheckList_id,
|
|
2034
|
+
checklistStatus: { $in: [ 'open', 'inprogress' ] },
|
|
2035
|
+
},
|
|
2033
2036
|
},
|
|
2034
|
-
|
|
2035
|
-
|
|
2036
|
-
|
|
2037
|
-
|
|
2038
|
-
|
|
2039
|
-
|
|
2037
|
+
{
|
|
2038
|
+
$project: {
|
|
2039
|
+
_id: 1,
|
|
2040
|
+
date_iso: 1,
|
|
2041
|
+
date_string: 1,
|
|
2042
|
+
},
|
|
2040
2043
|
},
|
|
2041
|
-
|
|
2042
|
-
];
|
|
2044
|
+
];
|
|
2043
2045
|
|
|
2044
|
-
|
|
2046
|
+
const processedTasksToDelete = await processedTask.aggregate( query1 );
|
|
2045
2047
|
|
|
2046
|
-
|
|
2047
|
-
|
|
2048
|
+
if ( processedTasksToDelete?.length ) {
|
|
2049
|
+
const deleteIds = processedTasksToDelete?.filter( ( val ) => val?.date_string !== date )?.map( ( val ) => val?._id );
|
|
2048
2050
|
|
|
2049
|
-
|
|
2050
|
-
|
|
2051
|
+
if ( deleteIds?.length ) {
|
|
2052
|
+
await processedTask.deleteMany( { _id: { $in: deleteIds } } );
|
|
2053
|
+
}
|
|
2051
2054
|
}
|
|
2052
2055
|
}
|
|
2053
2056
|
} else if ( submittype === 'draft' ) {
|
|
@@ -2233,6 +2236,8 @@ export async function submiteyeTestTask( req, res ) {
|
|
|
2233
2236
|
|
|
2234
2237
|
if ( updateResult.modifiedCount > 0 ) {
|
|
2235
2238
|
if ( submittype === 'submit' ) {
|
|
2239
|
+
// const excludedChecklists = [ 'Store Hygiene Check' ];
|
|
2240
|
+
// if ( !excludedChecklists.includes( checklist.checkListName ) ) {
|
|
2236
2241
|
const query1 = [
|
|
2237
2242
|
{
|
|
2238
2243
|
$match: {
|
|
@@ -2259,6 +2264,7 @@ export async function submiteyeTestTask( req, res ) {
|
|
|
2259
2264
|
await processedTask.deleteMany( { _id: { $in: deleteIds } } );
|
|
2260
2265
|
}
|
|
2261
2266
|
}
|
|
2267
|
+
// }
|
|
2262
2268
|
} else if ( submittype === 'draft' ) {
|
|
2263
2269
|
const query2 = [
|
|
2264
2270
|
{
|