tango-app-api-task 3.6.2-bulktask-6 → 3.6.2-bulktask-7
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
|
@@ -2533,7 +2533,7 @@ export async function redoTask( req, res ) {
|
|
|
2533
2533
|
initiatedTime: dayjs.utc( currentDateTime.format( 'hh:mm:ss A, DD MMM YYYY' ), 'hh:mm:ss A, DD MMM YYYY' ).format(),
|
|
2534
2534
|
answerType: question[sectionIndex].questions[req.body.payload.qno - 1].answerType,
|
|
2535
2535
|
submitedBy: taskDetails.userName,
|
|
2536
|
-
submitTime: taskDetails.submitTime,
|
|
2536
|
+
submitTime: dayjs.utc( taskDetails.submitTime ).format(),
|
|
2537
2537
|
};
|
|
2538
2538
|
|
|
2539
2539
|
await checklistLogs.create( data );
|
|
@@ -2648,7 +2648,7 @@ export async function redomultiTask( req, res ) {
|
|
|
2648
2648
|
initiatedTime: dayjs.utc( currentDateTime.format( 'hh:mm:ss A, DD MMM YYYY' ), 'hh:mm:ss A, DD MMM YYYY' ).format(),
|
|
2649
2649
|
answerType: question[sectionIndex].questions[req.body.payload.qno - 1].answerType,
|
|
2650
2650
|
submitedBy: taskDetails.userName,
|
|
2651
|
-
submitTime: taskDetails.submitTime,
|
|
2651
|
+
submitTime: dayjs.utc( taskDetails.submitTime ).format(),
|
|
2652
2652
|
};
|
|
2653
2653
|
req.body.payload._id = originalData.checklistId;
|
|
2654
2654
|
req.body.payload.section_id = originalData.section_id;
|