@optimiser/common 1.0.387 → 1.0.388
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/lib/utility.js +4 -0
- package/package.json +1 -1
package/dist/lib/utility.js
CHANGED
|
@@ -3905,6 +3905,10 @@ function SyncUserLicenceConsumedCount(msp_d, db, dbMaster) {
|
|
|
3905
3905
|
if (i != "Domain") {
|
|
3906
3906
|
companyLicenceType = companyLicencesData[i];
|
|
3907
3907
|
for (j in companyLicenceType) {
|
|
3908
|
+
/*Added by Ashish to stop resetting App.Reception.NoOfLicenceConsumed to "0" QPC-7011 */
|
|
3909
|
+
if (i == "App" && j == 'Reception') {
|
|
3910
|
+
continue;
|
|
3911
|
+
}
|
|
3908
3912
|
companyLicenceType[j].NoOfLicenceConsumed = 0;
|
|
3909
3913
|
}
|
|
3910
3914
|
}
|