tango-app-api-audit 3.3.0-alpha.20 → 3.3.0-alpha.21
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
|
@@ -2627,7 +2627,7 @@ export async function overAllAuditSummary( req, res ) {
|
|
|
2627
2627
|
let temp = {
|
|
2628
2628
|
installedStores: 0,
|
|
2629
2629
|
auditStores: 0,
|
|
2630
|
-
|
|
2630
|
+
inprogressStores: 0,
|
|
2631
2631
|
completedStores: 0,
|
|
2632
2632
|
auditInprogress: 0,
|
|
2633
2633
|
reAuditInprogress: 0,
|
|
@@ -2724,7 +2724,7 @@ export async function overAllAuditSummary( req, res ) {
|
|
|
2724
2724
|
];
|
|
2725
2725
|
const storeAudit = await aggregateStoreAudit( storeAuditQuery );
|
|
2726
2726
|
if ( storeAudit.length > 0 ) {
|
|
2727
|
-
temp.
|
|
2727
|
+
temp.inprogressStores= storeAudit[0].inprogressStores;
|
|
2728
2728
|
temp.completedStores = storeAudit[0].completedStores;
|
|
2729
2729
|
temp.auditInprogress = storeAudit[0].auditInprogress;
|
|
2730
2730
|
temp.reAuditInprogress = storeAudit[0].reAuditInprogress;
|