Formatting of invoices / Door lock time to incident reports

This commit is contained in:
Senad Uka
2019-11-20 13:56:02 +01:00
parent 81538600a6
commit fe1f691b2f
13 changed files with 136 additions and 92 deletions

View File

@@ -202,7 +202,6 @@ const bulkWriteReservationsWithChangesTracking = (reservations, resourcesMap) =>
}else{
hourlyRate = resourceId ? resourcesMap[resourceId].price.price : 0;
}
console.log(hourlyRate);
instance.setDataValue('hourlyRate', hourlyRate);
}
}

View File

@@ -15,6 +15,7 @@ const fetchOffices = () => {
cleanedOffices.push({
officeId: office['_id'],
officeName: office.name,
officeSlug: office.description,
});
});
resolve(cleanedOffices);