Compare commits
2 Commits
moransBran
...
124eb64018
Author | SHA1 | Date | |
---|---|---|---|
124eb64018 | |||
4bc343c5b2 |
@@ -132,16 +132,6 @@ CalcState CALCULATE_LIBRARY_API compute_duration_for_parking_ticket(
|
|||||||
QDateTime const &start_parking_time,
|
QDateTime const &start_parking_time,
|
||||||
double cost,
|
double cost,
|
||||||
QDateTime &ticketEndTime);
|
QDateTime &ticketEndTime);
|
||||||
|
|
||||||
CalcState CALCULATE_LIBRARY_API compute_duration_for_daily_ticket(
|
|
||||||
parking_tariff_t *tariff,
|
|
||||||
QString const &start_parking_time,
|
|
||||||
uint8_t paymentMethod);
|
|
||||||
|
|
||||||
CalcState CALCULATE_LIBRARY_API compute_duration_for_24hour_daily_ticket(
|
|
||||||
parking_tariff_t *tariff,
|
|
||||||
QString const &start_parking_time,
|
|
||||||
uint8_t paymentMethod);
|
|
||||||
//#ifdef __cplusplus
|
//#ifdef __cplusplus
|
||||||
//} // extern "C"
|
//} // extern "C"
|
||||||
//#endif
|
//#endif
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include "configuration.h"
|
#include "configuration.h"
|
||||||
#include <QDateTime>
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
class Calculator
|
class Calculator
|
||||||
@@ -26,10 +26,4 @@ public:
|
|||||||
/// <param name="durationMin">Duration of parking in minutes</param>
|
/// <param name="durationMin">Duration of parking in minutes</param>
|
||||||
/// <returns>Returns cost (data type: double)</returns>
|
/// <returns>Returns cost (data type: double)</returns>
|
||||||
double GetCostFromDuration(Configuration* cfg, uint8_t vehicle_type, char const* start_datetime, double durationMin, bool nextDay = false, bool prepaid = false);
|
double GetCostFromDuration(Configuration* cfg, uint8_t vehicle_type, char const* start_datetime, double durationMin, bool nextDay = false, bool prepaid = false);
|
||||||
|
|
||||||
// Daily ticket
|
|
||||||
QString GetDailyTicketDuration(Configuration* cfg, QString start_datetime, uint8_t payment_option, bool carry_over);
|
|
||||||
|
|
||||||
// 24-hour daily ticket
|
|
||||||
QString Get24HourTicketDuration(Configuration* cfg, QString start_datetime, uint8_t payment_option);
|
|
||||||
};
|
};
|
@@ -14,6 +14,4 @@ public:
|
|||||||
double pop_max_time;
|
double pop_max_time;
|
||||||
double pop_min_price;
|
double pop_min_price;
|
||||||
int pop_carry_over;
|
int pop_carry_over;
|
||||||
int pop_daily_card_price;
|
|
||||||
int pop_multi_hour_price;
|
|
||||||
};
|
};
|
@@ -68,6 +68,5 @@ public:
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="pra_price"></param>
|
/// <param name="pra_price"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
static double CalculatePricePerUnit(double pra_price, double durationUnit = -1);
|
static double CalculatePricePerUnit(double pra_price);
|
||||||
|
|
||||||
};
|
};
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
TEMPLATE = lib
|
TEMPLATE = lib
|
||||||
TARGET = mobilisis_calc
|
TARGET = mobilisis_calc
|
||||||
#CONFIG += staticlib
|
# CONFIG += staticlib
|
||||||
|
|
||||||
QMAKE_CXXFLAGS += -std=c++17 -g -O0
|
QMAKE_CXXFLAGS += -std=c++17 -g -O0
|
||||||
|
|
||||||
|
@@ -14,7 +14,7 @@ int CALCULATE_LIBRARY_API get_zone_nr(int zone)
|
|||||||
{
|
{
|
||||||
if(zone > -1) return zone;
|
if(zone > -1) return zone;
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
QFile zone("/etc/zone_nr");
|
QFile zone("/etc/zone_nr");
|
||||||
if (zone.exists()) {
|
if (zone.exists()) {
|
||||||
QFileInfo finfo(zone);
|
QFileInfo finfo(zone);
|
||||||
@@ -26,7 +26,7 @@ int CALCULATE_LIBRARY_API get_zone_nr(int zone)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
CalcState CALCULATE_LIBRARY_API init_tariff(parking_tariff_t **tariff, char const *config_file) {
|
CalcState CALCULATE_LIBRARY_API init_tariff(parking_tariff_t **tariff, char const *config_file) {
|
||||||
@@ -65,7 +65,7 @@ CalcState CALCULATE_LIBRARY_API init_tariff(parking_tariff_t **tariff, char cons
|
|||||||
|
|
||||||
QFile fname(confFile);
|
QFile fname(confFile);
|
||||||
if (fname.exists() &&
|
if (fname.exists() &&
|
||||||
fname.open(QIODevice::ReadOnly | QIODevice::Text)) {
|
fname.open(QIODevice::ReadOnly | QIODevice::Text)) {
|
||||||
// DEBUG
|
// DEBUG
|
||||||
qCritical() << " ... confFile is open";
|
qCritical() << " ... confFile is open";
|
||||||
|
|
||||||
@@ -93,10 +93,10 @@ void CALCULATE_LIBRARY_API free_tariff(parking_tariff_t *tariff) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
CalcState CALCULATE_LIBRARY_API compute_price_for_parking_ticket(
|
CalcState CALCULATE_LIBRARY_API compute_price_for_parking_ticket(
|
||||||
parking_tariff_t *tariff,
|
parking_tariff_t *tariff,
|
||||||
time_t start_parking_time, // in minutes
|
time_t start_parking_time, // in minutes
|
||||||
time_t end_parking_time, // in minutes
|
time_t end_parking_time, // in minutes
|
||||||
struct price_t *price) {
|
struct price_t *price) {
|
||||||
CalcState calcState;
|
CalcState calcState;
|
||||||
double minMin = tariff->PaymentOption.find(PaymentOption::Option1)->second.pop_min_time;
|
double minMin = tariff->PaymentOption.find(PaymentOption::Option1)->second.pop_min_time;
|
||||||
double maxMin = tariff->PaymentOption.find(PaymentOption::Option1)->second.pop_max_time;
|
double maxMin = tariff->PaymentOption.find(PaymentOption::Option1)->second.pop_max_time;
|
||||||
@@ -109,7 +109,7 @@ CalcState CALCULATE_LIBRARY_API compute_price_for_parking_ticket(
|
|||||||
int const duration = end_parking_time - start_parking_time;
|
int const duration = end_parking_time - start_parking_time;
|
||||||
if (duration < 0) {
|
if (duration < 0) {
|
||||||
calcState.setDesc(QString("end=%1, start=%2")
|
calcState.setDesc(QString("end=%1, start=%2")
|
||||||
.arg(end_parking_time, start_parking_time));
|
.arg(end_parking_time, start_parking_time));
|
||||||
return calcState.set(CalcState::State::NEGATIVE_PARING_TIME);
|
return calcState.set(CalcState::State::NEGATIVE_PARING_TIME);
|
||||||
}
|
}
|
||||||
if (duration > maxMin) {
|
if (duration > maxMin) {
|
||||||
@@ -132,9 +132,9 @@ CalcState CALCULATE_LIBRARY_API compute_price_for_parking_ticket(
|
|||||||
if (start.isValid()) {
|
if (start.isValid()) {
|
||||||
QString cs = start.toString(Qt::ISODate);
|
QString cs = start.toString(Qt::ISODate);
|
||||||
double cost = calculator.GetCostFromDuration(
|
double cost = calculator.GetCostFromDuration(
|
||||||
tariff, PaymentOption::Option1,
|
tariff, PaymentOption::Option1,
|
||||||
cs.toLocal8Bit().constData(),
|
cs.toLocal8Bit().constData(),
|
||||||
duration, false, true);
|
duration, false, true);
|
||||||
double minCost = tariff->PaymentOption.find(PaymentOption::Option1)->second.pop_min_price;
|
double minCost = tariff->PaymentOption.find(PaymentOption::Option1)->second.pop_min_price;
|
||||||
if (cost < minCost) {
|
if (cost < minCost) {
|
||||||
calcState.setDesc(QString("minCost=%1, cost=%2").arg(minCost).arg(cost));
|
calcState.setDesc(QString("minCost=%1, cost=%2").arg(minCost).arg(cost));
|
||||||
@@ -150,10 +150,10 @@ CalcState CALCULATE_LIBRARY_API compute_price_for_parking_ticket(
|
|||||||
}
|
}
|
||||||
|
|
||||||
CalcState CALCULATE_LIBRARY_API compute_price_for_parking_ticket(
|
CalcState CALCULATE_LIBRARY_API compute_price_for_parking_ticket(
|
||||||
parking_tariff_t *tariff,
|
parking_tariff_t *tariff,
|
||||||
QDateTime const &start_parking_time,
|
QDateTime const &start_parking_time,
|
||||||
QDateTime const &end_parking_time,
|
QDateTime const &end_parking_time,
|
||||||
struct price_t *price) {
|
struct price_t *price) {
|
||||||
CalcState calcState;
|
CalcState calcState;
|
||||||
double minMin = tariff->PaymentOption.find(PaymentOption::Option1)->second.pop_min_time;
|
double minMin = tariff->PaymentOption.find(PaymentOption::Option1)->second.pop_min_time;
|
||||||
double maxMin = tariff->PaymentOption.find(PaymentOption::Option1)->second.pop_max_time;
|
double maxMin = tariff->PaymentOption.find(PaymentOption::Option1)->second.pop_max_time;
|
||||||
@@ -171,8 +171,8 @@ CalcState CALCULATE_LIBRARY_API compute_price_for_parking_ticket(
|
|||||||
|
|
||||||
if (duration < 0) {
|
if (duration < 0) {
|
||||||
calcState.setDesc(QString("end=%1, start=%2")
|
calcState.setDesc(QString("end=%1, start=%2")
|
||||||
.arg(end_parking_time.toString(Qt::ISODate),
|
.arg(end_parking_time.toString(Qt::ISODate),
|
||||||
start_parking_time.toString(Qt::ISODate)));
|
start_parking_time.toString(Qt::ISODate)));
|
||||||
return calcState.set(CalcState::State::NEGATIVE_PARING_TIME);
|
return calcState.set(CalcState::State::NEGATIVE_PARING_TIME);
|
||||||
}
|
}
|
||||||
if (duration > maxMin) {
|
if (duration > maxMin) {
|
||||||
@@ -191,9 +191,9 @@ CalcState CALCULATE_LIBRARY_API compute_price_for_parking_ticket(
|
|||||||
if (start_parking_time.isValid()) {
|
if (start_parking_time.isValid()) {
|
||||||
QString cs = start_parking_time.toString(Qt::ISODate);
|
QString cs = start_parking_time.toString(Qt::ISODate);
|
||||||
double cost = calculator.GetCostFromDuration(
|
double cost = calculator.GetCostFromDuration(
|
||||||
tariff, PaymentOption::Option1,
|
tariff, PaymentOption::Option1,
|
||||||
cs.toLocal8Bit().constData(),
|
cs.toLocal8Bit().constData(),
|
||||||
duration, false, true);
|
duration, false, true);
|
||||||
double minCost = tariff->PaymentOption.find(PaymentOption::Option1)->second.pop_min_price;
|
double minCost = tariff->PaymentOption.find(PaymentOption::Option1)->second.pop_min_price;
|
||||||
if (cost < minCost) {
|
if (cost < minCost) {
|
||||||
calcState.setDesc(QString("minCost=%1, cost=%2").arg(minCost, cost));
|
calcState.setDesc(QString("minCost=%1, cost=%2").arg(minCost, cost));
|
||||||
@@ -213,10 +213,10 @@ CalcState CALCULATE_LIBRARY_API compute_price_for_parking_ticket(
|
|||||||
}
|
}
|
||||||
|
|
||||||
CalcState CALCULATE_LIBRARY_API compute_duration_for_parking_ticket(
|
CalcState CALCULATE_LIBRARY_API compute_duration_for_parking_ticket(
|
||||||
parking_tariff_t *tariff,
|
parking_tariff_t *tariff,
|
||||||
time_t start_parking_time,
|
time_t start_parking_time,
|
||||||
double price,
|
double price,
|
||||||
QString &duration) {
|
QString &duration) {
|
||||||
CalcState calcState;
|
CalcState calcState;
|
||||||
QDate const d(1970, 1, 1);
|
QDate const d(1970, 1, 1);
|
||||||
QTime const t(0, 0, 0);
|
QTime const t(0, 0, 0);
|
||||||
@@ -246,17 +246,17 @@ CalcState CALCULATE_LIBRARY_API compute_duration_for_parking_ticket(
|
|||||||
}
|
}
|
||||||
|
|
||||||
CalcState CALCULATE_LIBRARY_API compute_duration_for_parking_ticket(
|
CalcState CALCULATE_LIBRARY_API compute_duration_for_parking_ticket(
|
||||||
parking_tariff_t *tariff,
|
parking_tariff_t *tariff,
|
||||||
QDateTime const &start_parking_time,
|
QDateTime const &start_parking_time,
|
||||||
double price,
|
double price,
|
||||||
QDateTime &ticketEndTime) {
|
QDateTime &ticketEndTime) {
|
||||||
CalcState calcState;
|
CalcState calcState;
|
||||||
if (start_parking_time.isValid()) {
|
if (start_parking_time.isValid()) {
|
||||||
QString cs = start_parking_time.toString(Qt::ISODate);
|
QString cs = start_parking_time.toString(Qt::ISODate);
|
||||||
QString endTime = calculator.GetDurationFromCost(
|
QString endTime = calculator.GetDurationFromCost(
|
||||||
tariff, PaymentOption::Option1,
|
tariff, PaymentOption::Option1,
|
||||||
cs.toLocal8Bit().constData(),
|
cs.toLocal8Bit().constData(),
|
||||||
price, false, true).c_str();
|
price, false, true).c_str();
|
||||||
ticketEndTime = QDateTime::fromString(endTime,Qt::ISODate);
|
ticketEndTime = QDateTime::fromString(endTime,Qt::ISODate);
|
||||||
|
|
||||||
// DEBUG
|
// DEBUG
|
||||||
@@ -274,22 +274,3 @@ CalcState CALCULATE_LIBRARY_API compute_duration_for_parking_ticket(
|
|||||||
|
|
||||||
return calcState.set(CalcState::State::SUCCESS);
|
return calcState.set(CalcState::State::SUCCESS);
|
||||||
}
|
}
|
||||||
|
|
||||||
CalcState CALCULATE_LIBRARY_API compute_duration_for_daily_ticket(parking_tariff_t *tariff, QString const &start_parking_time,uint8_t paymentMethod)
|
|
||||||
{
|
|
||||||
CalcState calcState;
|
|
||||||
QString result = calculator.GetDailyTicketDuration(tariff, start_parking_time, PaymentOption::Option1,false);
|
|
||||||
qDebug() << "DailyTicket() => " + result;
|
|
||||||
|
|
||||||
return calcState.set(CalcState::State::SUCCESS);
|
|
||||||
}
|
|
||||||
|
|
||||||
CalcState CALCULATE_LIBRARY_API compute_duration_for_24hour_daily_ticket(parking_tariff_t *tariff, QString const &start_parking_time,uint8_t paymentMethod)
|
|
||||||
{
|
|
||||||
CalcState calcState;
|
|
||||||
QString result = calculator.Get24HourTicketDuration(tariff, start_parking_time, PaymentOption::Option1,false);
|
|
||||||
qDebug() << "24HourDailyTicket() => " + result;
|
|
||||||
|
|
||||||
return calcState.set(CalcState::State::SUCCESS);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
@@ -10,137 +10,15 @@
|
|||||||
double total_duration_min = 0.0f;
|
double total_duration_min = 0.0f;
|
||||||
double total_cost = 0.0f;
|
double total_cost = 0.0f;
|
||||||
bool overtime = false;
|
bool overtime = false;
|
||||||
int protection_counter = 0;
|
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
inline struct tm* localtime_r(const time_t *clock, struct tm* result){
|
inline struct tm* localtime_r(const time_t *clock, struct tm* result){
|
||||||
if(!clock || !result) return NULL;
|
if(!clock || !result) return NULL;
|
||||||
memcpy(result,localtime(clock),sizeof(*result));
|
memcpy(result,localtime(clock),sizeof(*result));
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
QString Calculator::Get24HourTicketDuration(Configuration *cfg, QString start_datetime, uint8_t payment_option)
|
|
||||||
{
|
|
||||||
if(start_datetime.isNull() || start_datetime.isEmpty()) return "Invalid date-time";
|
|
||||||
protection_counter = 0;
|
|
||||||
|
|
||||||
double day_price = 0.0f;
|
|
||||||
int current_special_day_id = -1;
|
|
||||||
|
|
||||||
QDateTime inputDateTime = QDateTime::fromString(start_datetime, Qt::ISODate);
|
|
||||||
QTime worktime_from;
|
|
||||||
QTime worktime_to;
|
|
||||||
|
|
||||||
int daily_24hour_card_price = cfg->PaymentOption.find(payment_option)->second.pop_multi_hour_price;
|
|
||||||
if(daily_24hour_card_price <= 0) return "24-hour daily ticket: price zero or less";
|
|
||||||
|
|
||||||
bool is_special_day = Utilities::CheckSpecialDay(cfg, start_datetime.toStdString().c_str(), ¤t_special_day_id, &day_price);
|
|
||||||
|
|
||||||
if(is_special_day)
|
|
||||||
{
|
|
||||||
worktime_from = QTime::fromString(cfg->SpecialDaysWorktime.find(current_special_day_id)->second.pedwt_time_from.c_str(), Qt::ISODate);
|
|
||||||
worktime_to = QTime::fromString(cfg->SpecialDaysWorktime.find(current_special_day_id)->second.pedwt_time_to.c_str(),Qt::ISODate);
|
|
||||||
return "24-hour ticket cannot be bought on special day";
|
|
||||||
}
|
|
||||||
|
|
||||||
// Check next special day
|
|
||||||
inputDateTime = inputDateTime.addSecs(86400);
|
|
||||||
while(Utilities::CheckSpecialDay(cfg, inputDateTime.toString(Qt::ISODate).toLocal8Bit(), ¤t_special_day_id, &day_price))
|
|
||||||
{
|
|
||||||
protection_counter++;
|
|
||||||
if(protection_counter >=7) return NULL;
|
|
||||||
inputDateTime = inputDateTime.addSecs(86400);
|
|
||||||
}
|
|
||||||
return inputDateTime.toString(Qt::ISODate) + ", price = " + to_string(daily_24hour_card_price).c_str();
|
|
||||||
}
|
|
||||||
|
|
||||||
QString Calculator::GetDailyTicketDuration(Configuration* cfg, QString start_datetime, uint8_t payment_option, bool carry_over)
|
|
||||||
{
|
|
||||||
if(start_datetime.isNull() || start_datetime.isEmpty()) return NULL;
|
|
||||||
|
|
||||||
double day_price = 0.0f;
|
|
||||||
int current_special_day_id = -1;
|
|
||||||
bool is_special_day = Utilities::CheckSpecialDay(cfg, start_datetime.toStdString().c_str(), ¤t_special_day_id, &day_price);
|
|
||||||
|
|
||||||
QDateTime inputDateTime = QDateTime::fromString(start_datetime, Qt::ISODate);
|
|
||||||
QTime worktime_from;
|
|
||||||
QTime worktime_to;
|
|
||||||
|
|
||||||
int daily_card_price = cfg->PaymentOption.find(payment_option)->second.pop_daily_card_price;
|
|
||||||
if(daily_card_price <= 0) return "Daily ticket price zero or less";
|
|
||||||
|
|
||||||
if(is_special_day)
|
|
||||||
{
|
|
||||||
worktime_from = QTime::fromString(cfg->SpecialDaysWorktime.find(current_special_day_id)->second.pedwt_time_from.c_str(), Qt::ISODate);
|
|
||||||
worktime_to = QTime::fromString(cfg->SpecialDaysWorktime.find(current_special_day_id)->second.pedwt_time_to.c_str(),Qt::ISODate);
|
|
||||||
|
|
||||||
if(inputDateTime.time() < worktime_from) inputDateTime.setTime(worktime_from);
|
|
||||||
if(carry_over) inputDateTime.setTime(worktime_from);
|
|
||||||
|
|
||||||
if(inputDateTime.time() >= worktime_to)
|
|
||||||
{
|
|
||||||
// Go to next day if outside worktime
|
|
||||||
inputDateTime = inputDateTime.addSecs(86400);
|
|
||||||
return GetDailyTicketDuration(cfg,inputDateTime.toString(Qt::ISODate), payment_option,true);
|
|
||||||
}
|
|
||||||
|
|
||||||
if(day_price <=0)
|
|
||||||
{
|
|
||||||
// Go to next day if special day price is 0
|
|
||||||
inputDateTime = inputDateTime.addSecs(86400);
|
|
||||||
return GetDailyTicketDuration(cfg,inputDateTime.toString(Qt::ISODate), payment_option,true);
|
|
||||||
}
|
|
||||||
|
|
||||||
int diff = abs(inputDateTime.time().secsTo(worktime_to));
|
|
||||||
inputDateTime = inputDateTime.addSecs(diff);
|
|
||||||
|
|
||||||
//qDebug() << "Ticket is valid until: " << inputDateTime.toString(Qt::ISODate) << "price = " << daily_card_price << ", duration = " << diff / 60;
|
|
||||||
return inputDateTime.toString(Qt::ISODate) + ", price = " + to_string(daily_card_price).c_str() + ", duration = " + to_string((diff/60)).c_str();
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
// Get day of week
|
|
||||||
int weekdayId = 0;
|
|
||||||
weekdayId = Utilities::ZellersAlgorithm(inputDateTime.date().day(),inputDateTime.date().month(),inputDateTime.date().year());
|
|
||||||
|
|
||||||
// If no working day found, skip it (recursively call method again)
|
|
||||||
size_t found = 0;
|
|
||||||
found = cfg->WeekDaysWorktime.count(weekdayId);
|
|
||||||
|
|
||||||
// When no workday found, go to next available day
|
|
||||||
if(found <=0)
|
|
||||||
{
|
|
||||||
inputDateTime = inputDateTime.addSecs(86400);
|
|
||||||
return GetDailyTicketDuration(cfg,inputDateTime.toString(Qt::ISODate), payment_option,true);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
worktime_from = QTime::fromString(cfg->WeekDaysWorktime.find(weekdayId)->second.pwd_time_from.c_str(),Qt::ISODate);
|
|
||||||
worktime_to = QTime::fromString(cfg->WeekDaysWorktime.find(weekdayId)->second.pwd_time_to.c_str(),Qt::ISODate);
|
|
||||||
if(inputDateTime.time() < worktime_from)
|
|
||||||
inputDateTime.setTime(worktime_from);
|
|
||||||
|
|
||||||
if(carry_over)
|
|
||||||
inputDateTime.setTime(worktime_from);
|
|
||||||
|
|
||||||
if(inputDateTime.time() >= worktime_to)
|
|
||||||
{
|
|
||||||
// Go to next day if outside worktime
|
|
||||||
inputDateTime = inputDateTime.addSecs(86400);
|
|
||||||
return GetDailyTicketDuration(cfg,inputDateTime.toString(Qt::ISODate), payment_option,true);
|
|
||||||
}
|
|
||||||
|
|
||||||
int diff = abs(inputDateTime.time().secsTo(worktime_to));
|
|
||||||
inputDateTime = inputDateTime.addSecs(diff);
|
|
||||||
|
|
||||||
//qDebug() << "Ticket is valid until: " << inputDateTime.toString(Qt::ISODate) << "price = " << daily_card_price << ", duration = " << diff / 60;
|
|
||||||
return inputDateTime.toString(Qt::ISODate) + ", price = " + to_string(daily_card_price).c_str() + ", duration = " + to_string((diff/60)).c_str();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
/// <inheritdoc/>
|
/// <inheritdoc/>
|
||||||
std::string Calculator::GetDurationFromCost(Configuration* cfg,
|
std::string Calculator::GetDurationFromCost(Configuration* cfg,
|
||||||
uint8_t payment_option,
|
uint8_t payment_option,
|
||||||
@@ -149,233 +27,292 @@ std::string Calculator::GetDurationFromCost(Configuration* cfg,
|
|||||||
bool nextDay,
|
bool nextDay,
|
||||||
bool prepaid)
|
bool prepaid)
|
||||||
{
|
{
|
||||||
|
// Get current date time from input
|
||||||
|
struct tm current_datetime = Utilities::DateTimeToStructTm(start_datetime);
|
||||||
|
time_t current_datetime_t;
|
||||||
|
|
||||||
// Get input date
|
// Get day of week
|
||||||
QDateTime inputDate = QDateTime::fromString(start_datetime,Qt::ISODate);
|
DayOfWeek weekdayId = DayOfWeek::UndefinedDay;
|
||||||
|
weekdayId = Utilities::GetDayOfWeek(¤t_datetime);
|
||||||
|
|
||||||
// Get day of week
|
//std::stringstream ss;
|
||||||
int weekdayId = 0;
|
|
||||||
weekdayId = Utilities::ZellersAlgorithm(inputDate.date().day(),inputDate.date().month(),inputDate.date().year());
|
|
||||||
|
|
||||||
//Get min and max time defined in JSON
|
// ss << "*** Input date is: " << start_datetime << " [weekday id = " << weekdayId << "]" << endl;
|
||||||
double minMin = 0;
|
LOG_DEBUG("*** Input date is: ", start_datetime, " [weekday id = ", weekdayId, "]");
|
||||||
minMin = cfg->PaymentOption.find(payment_option)->second.pop_min_time;
|
|
||||||
|
|
||||||
double maxMin = 0;
|
double minMin = 0;
|
||||||
maxMin = cfg->PaymentOption.find(payment_option)->second.pop_max_time;
|
minMin = cfg->PaymentOption.find(payment_option)->second.pop_min_time;
|
||||||
|
if (minMin < 0) minMin = 0;
|
||||||
|
|
||||||
double min_price = 0;
|
double maxMin = 0;
|
||||||
min_price = cfg->PaymentOption.find(payment_option)->second.pop_min_price;
|
maxMin = cfg->PaymentOption.find(payment_option)->second.pop_max_time;
|
||||||
|
if (maxMin <= 0) maxMin = 60;
|
||||||
|
|
||||||
if(price < min_price)
|
if (minMin >= maxMin)
|
||||||
{
|
{
|
||||||
return "PARKING NOT ALLOWED";
|
LOG_ERROR("Error: min_min cannot be greater or equal to max_min");
|
||||||
}
|
return "PARKING NOT ALLOWED";
|
||||||
|
}
|
||||||
|
|
||||||
if (minMin < 0) minMin = 0;
|
if (maxMin <= minMin)
|
||||||
if (maxMin < 0) maxMin = 0;
|
{
|
||||||
if (minMin >= maxMin)
|
LOG_ERROR("Error: max_min cannot be lower or equal than min_min");
|
||||||
{
|
return "PARKING NOT ALLOWED";
|
||||||
LOG_ERROR("Error: min_min cannot be greater or equal to max_min");
|
}
|
||||||
return "PARKING NOT ALLOWED";
|
|
||||||
}
|
|
||||||
|
|
||||||
if (maxMin <= minMin)
|
uint8_t p_method = PaymentMethod::Undefined;
|
||||||
{
|
p_method = payment_option;
|
||||||
LOG_ERROR("Error: max_min cannot be lower or equal than min_min");
|
LOG_DEBUG("Payment method id: ", (unsigned)p_method);
|
||||||
return "PARKING NOT ALLOWED";
|
|
||||||
}
|
double day_price = 0.0f;
|
||||||
|
int current_special_day_id = -1;
|
||||||
|
bool is_special_day = Utilities::CheckSpecialDay(cfg, start_datetime, ¤t_special_day_id, &day_price);
|
||||||
|
LOG_DEBUG("Special day: ", is_special_day);
|
||||||
|
|
||||||
|
double money_left = price;
|
||||||
|
LOG_DEBUG("Total money:", money_left);
|
||||||
|
|
||||||
|
double price_per_unit = 0.0f;
|
||||||
|
|
||||||
|
string worktime_from = "";
|
||||||
|
string worktime_to = "";
|
||||||
|
|
||||||
|
if (is_special_day)
|
||||||
|
{
|
||||||
|
// Set special day price
|
||||||
|
price_per_unit = Utilities::CalculatePricePerUnit(day_price);
|
||||||
|
worktime_from = cfg->SpecialDaysWorktime.find(current_special_day_id)->second.pedwt_time_from;
|
||||||
|
worktime_to = cfg->SpecialDaysWorktime.find(current_special_day_id)->second.pedwt_time_to;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// Set new price for the normal day
|
||||||
|
day_price = cfg->PaymentRate.find(payment_option)->second.pra_price;
|
||||||
|
price_per_unit = Utilities::CalculatePricePerUnit(day_price);
|
||||||
|
|
||||||
|
// If no working day found, skip it (recursively call method again)
|
||||||
|
size_t found = 0;
|
||||||
|
found = cfg->WeekDaysWorktime.count(weekdayId);
|
||||||
|
|
||||||
|
if (found <= 0)
|
||||||
|
{
|
||||||
|
LOG_DEBUG("- No workday found, trying to find next available day");
|
||||||
|
current_datetime_t = mktime(¤t_datetime);
|
||||||
|
current_datetime_t += 86400;
|
||||||
|
current_datetime = *localtime(¤t_datetime_t);
|
||||||
|
|
||||||
|
char buffer_datetime[80];
|
||||||
|
strftime(buffer_datetime, 80, "%Y-%m-%dT%H:%M:%S", ¤t_datetime);
|
||||||
|
|
||||||
|
// Make new datetime string and call function again recursively
|
||||||
|
start_datetime = buffer_datetime;
|
||||||
|
return GetDurationFromCost(cfg, payment_option, start_datetime, price, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
worktime_from = cfg->WeekDaysWorktime.find(weekdayId)->second.pwd_time_from;
|
||||||
|
worktime_to = cfg->WeekDaysWorktime.find(weekdayId)->second.pwd_time_to;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (price_per_unit < 0) price_per_unit = 1.0f;
|
||||||
|
LOG_DEBUG("Calculated price per minute: ", price_per_unit);
|
||||||
|
|
||||||
|
LOG_DEBUG("Worktime from: ", worktime_from);
|
||||||
|
LOG_DEBUG("Worktime to: ", worktime_to);
|
||||||
|
|
||||||
|
struct tm from_tm;
|
||||||
|
struct tm to_tm;
|
||||||
|
|
||||||
|
from_tm = Utilities::TimeToStructTm(worktime_from.c_str(), current_datetime.tm_year, current_datetime.tm_mon, current_datetime.tm_mday, current_datetime.tm_wday);
|
||||||
|
from_tm.tm_year = current_datetime.tm_year;
|
||||||
|
from_tm.tm_mon = current_datetime.tm_mon;
|
||||||
|
from_tm.tm_wday = current_datetime.tm_wday;
|
||||||
|
from_tm.tm_mday = current_datetime.tm_mday;
|
||||||
|
|
||||||
|
to_tm = Utilities::TimeToStructTm(worktime_to.c_str(), current_datetime.tm_year, current_datetime.tm_mon, current_datetime.tm_mday, current_datetime.tm_wday);
|
||||||
|
to_tm.tm_year = current_datetime.tm_year;
|
||||||
|
to_tm.tm_mon = current_datetime.tm_mon;
|
||||||
|
to_tm.tm_wday = current_datetime.tm_wday;
|
||||||
|
to_tm.tm_mday = current_datetime.tm_mday;
|
||||||
|
|
||||||
|
// Convert tm structures to time_t
|
||||||
|
current_datetime_t = mktime(¤t_datetime);
|
||||||
|
time_t from_datetime_t = mktime(&from_tm);
|
||||||
|
time_t to_datetime_t = mktime(&to_tm);
|
||||||
|
|
||||||
|
/*Newly added */
|
||||||
|
//current_datetime.tm_hour = from_tm.tm_hour;
|
||||||
|
//current_datetime.tm_min = from_tm.tm_min;
|
||||||
|
//current_datetime.tm_sec = from_tm.tm_sec;
|
||||||
|
//current_datetime_t = mktime(¤t_datetime);
|
||||||
|
|
||||||
|
// If overtime flag is set
|
||||||
|
if (overtime || nextDay)
|
||||||
|
{
|
||||||
|
current_datetime.tm_hour = from_tm.tm_hour;
|
||||||
|
current_datetime.tm_min = from_tm.tm_min;
|
||||||
|
current_datetime.tm_sec = from_tm.tm_sec;
|
||||||
|
current_datetime_t = mktime(¤t_datetime);
|
||||||
|
LOG_DEBUG(" *** New input date set according to worktime: ", asctime(¤t_datetime));
|
||||||
|
overtime = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Validate ticket
|
||||||
|
if (!prepaid)
|
||||||
|
{
|
||||||
|
if ((current_datetime_t < from_datetime_t) || (current_datetime_t > to_datetime_t))
|
||||||
|
{
|
||||||
|
LOG_DEBUG("[STOP] * Ticket is not valid * ");
|
||||||
|
return "PARKING NOT ALLOWED";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
LOG_DEBUG("* PREPAID MODE ACTIVE *");
|
||||||
|
|
||||||
|
if (current_datetime_t < from_datetime_t)
|
||||||
|
{
|
||||||
|
current_datetime.tm_hour = from_tm.tm_hour;
|
||||||
|
current_datetime.tm_min = from_tm.tm_min;
|
||||||
|
current_datetime.tm_sec = from_tm.tm_sec;
|
||||||
|
current_datetime_t = mktime(¤t_datetime);
|
||||||
|
LOG_DEBUG(" *** PREPAID *** Current time is before the time range start, adjusting time to: ", asctime(¤t_datetime));
|
||||||
|
}
|
||||||
|
else if (current_datetime_t > to_datetime_t)
|
||||||
|
{
|
||||||
|
LOG_DEBUG(" *** PREPAID *** Current time is past the time range end, searching for next available day");
|
||||||
|
current_datetime_t = mktime(¤t_datetime);
|
||||||
|
current_datetime_t += 86400;
|
||||||
|
current_datetime = *localtime(¤t_datetime_t);
|
||||||
|
|
||||||
|
char buffer_datetime[80];
|
||||||
|
strftime(buffer_datetime, 80, "%Y-%m-%dT%H:%M:%S", ¤t_datetime);
|
||||||
|
|
||||||
|
//Make new datetime string and call function again recursively
|
||||||
|
start_datetime = buffer_datetime;
|
||||||
|
return GetDurationFromCost(cfg, payment_option, start_datetime, price, true, prepaid);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
while (true)
|
||||||
|
{
|
||||||
|
if (!Utilities::IsYearPeriodActive(cfg, ¤t_datetime))
|
||||||
|
{
|
||||||
|
LOG_DEBUG("Year period is not valid");
|
||||||
|
return "PARKING NOT ALLOWED";
|
||||||
|
}
|
||||||
|
|
||||||
|
// Increment by 1 minute
|
||||||
|
current_datetime_t = mktime(¤t_datetime);
|
||||||
|
current_datetime_t += 60;
|
||||||
|
current_datetime = *localtime(¤t_datetime_t);
|
||||||
|
total_duration_min += 1.0f;
|
||||||
|
money_left -= price_per_unit;
|
||||||
|
|
||||||
|
|
||||||
// Get payment method
|
// If no money left (e.g. spent all of the money before reaching end of worktime)
|
||||||
uint8_t p_method = PaymentMethod::Undefined;
|
if (money_left <= 0)
|
||||||
p_method = payment_option;
|
{
|
||||||
LOG_DEBUG("Payment method id: ", (unsigned)p_method);
|
LOG_DEBUG("No money left ");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (total_duration_min >= maxMin)
|
||||||
|
{
|
||||||
|
LOG_DEBUG("Total duration is greater or equal to max_min");
|
||||||
|
|
||||||
// Check special day
|
current_datetime_t = mktime(¤t_datetime);
|
||||||
double day_price = 0.0f;
|
current_datetime_t -= 60;
|
||||||
int current_special_day_id = -1;
|
current_datetime = *localtime(¤t_datetime_t);
|
||||||
bool is_special_day = Utilities::CheckSpecialDay(cfg, inputDate.toString(Qt::ISODate).toStdString().c_str(), ¤t_special_day_id, &day_price);
|
total_duration_min = maxMin;
|
||||||
LOG_DEBUG("Special day: ", is_special_day);
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
double money_left = price;
|
// If money has left but the end of worktime has been reached (go to next day)
|
||||||
double price_per_unit = 0.0f;
|
if (current_datetime_t >= to_datetime_t)
|
||||||
|
{
|
||||||
|
total_duration_min -= 1.0f;
|
||||||
|
|
||||||
QTime worktime_from;
|
int carry_over_status = 0;
|
||||||
QTime worktime_to;
|
carry_over_status = cfg->PaymentOption.find(payment_option)->second.pop_carry_over;
|
||||||
|
LOG_DEBUG("Carry over status: ", carry_over_status);
|
||||||
|
if (carry_over_status < 1) break;
|
||||||
|
|
||||||
if(is_special_day)
|
LOG_DEBUG("Reached end of worktime");
|
||||||
{
|
LOG_DEBUG("Trying to find next available day, money left = ", money_left);
|
||||||
// Set special day price
|
current_datetime_t = mktime(¤t_datetime);
|
||||||
price_per_unit = Utilities::CalculatePricePerUnit(day_price);
|
current_datetime_t += 86400;
|
||||||
worktime_from = QTime::fromString(cfg->SpecialDaysWorktime.find(current_special_day_id)->second.pedwt_time_from.c_str());
|
current_datetime = *localtime(¤t_datetime_t);
|
||||||
worktime_to = QTime::fromString(cfg->SpecialDaysWorktime.find(current_special_day_id)->second.pedwt_time_to.c_str());
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
// Set new price for the normal day
|
|
||||||
int pop_id = cfg->PaymentOption.find(payment_option)->second.pop_id;
|
|
||||||
day_price = cfg->PaymentRate.find(pop_id)->second.pra_price;
|
|
||||||
|
|
||||||
int durationId = cfg->PaymentRate.find(pop_id)->second.pra_payment_unit_id;
|
char buffer_datetime[80];
|
||||||
double durationUnit = cfg->Duration.find(durationId)->second.pun_duration;
|
strftime(buffer_datetime, 80, "%Y-%m-%dT%H:%M:%S", ¤t_datetime);
|
||||||
price_per_unit = Utilities::CalculatePricePerUnit(day_price,durationUnit);
|
|
||||||
|
|
||||||
// If no working day found, skip it (recursively call method again)
|
// Make new datetime string and call function again recursively
|
||||||
size_t found = 0;
|
start_datetime = buffer_datetime;
|
||||||
found = cfg->WeekDaysWorktime.count(weekdayId);
|
overtime = true;
|
||||||
|
return GetDurationFromCost(cfg, payment_option, start_datetime, price);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// When no workday found, go to next available day
|
time_t valid_until_datetime_t = current_datetime_t;
|
||||||
if(found <=0)
|
|
||||||
{
|
|
||||||
LOG_DEBUG("- No workday found, trying to find next available day");
|
|
||||||
inputDate = inputDate.addDays(1);
|
|
||||||
return GetDurationFromCost(cfg, payment_option, inputDate.toString(Qt::ISODate).toStdString().c_str(), money_left,true,prepaid);
|
|
||||||
}
|
|
||||||
worktime_from = QTime::fromString(cfg->WeekDaysWorktime.find(weekdayId)->second.pwd_time_from.c_str());
|
|
||||||
worktime_to = QTime::fromString(cfg->WeekDaysWorktime.find(weekdayId)->second.pwd_time_to.c_str());
|
|
||||||
}
|
|
||||||
|
|
||||||
if (price_per_unit < 0) price_per_unit = 1.0f;
|
if ((total_duration_min < minMin) || (price / price_per_unit) < minMin)
|
||||||
|
{
|
||||||
|
LOG_DEBUG("Total duration is lower than min_min");
|
||||||
|
//valid_until_datetime_t += (minMin - total_duration_min) * 60;
|
||||||
|
//total_duration_min = minMin;
|
||||||
|
//return "PARKING NOT ALLOWED";
|
||||||
|
|
||||||
// Commented on 07.06.2023
|
valid_until_datetime_t = from_datetime_t;
|
||||||
//if((price/price_per_unit) < minMin)
|
total_duration_min = 0;
|
||||||
// return "PARKING NOT ALLOWED";
|
}
|
||||||
|
|
||||||
LOG_DEBUG("Calculated price per minute: ", price_per_unit);
|
double ret_val = 0;
|
||||||
|
double calc_price = (int)total_duration_min - (int)price / price_per_unit;
|
||||||
|
|
||||||
if (price_per_unit < 0)
|
if (calc_price > 0 && total_duration_min > 0)
|
||||||
{
|
{
|
||||||
inputDate = inputDate.addDays(1);
|
valid_until_datetime_t -= (int)ceil(calc_price) * 60;
|
||||||
inputDate.setTime(worktime_from);
|
ret_val = total_duration_min - calc_price;
|
||||||
return GetDurationFromCost(cfg, payment_option, inputDate.toString(Qt::ISODate).toStdString().c_str(), money_left, true);
|
}
|
||||||
}
|
else ret_val = total_duration_min;
|
||||||
|
|
||||||
// If overtime flag is set
|
cout << "Total minutes: " << (int)ret_val << endl;
|
||||||
if (overtime || nextDay)
|
|
||||||
{
|
|
||||||
inputDate.setTime(worktime_from);
|
|
||||||
overtime = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Check prepaid
|
|
||||||
if (!prepaid)
|
|
||||||
{
|
|
||||||
if ((inputDate.time() < worktime_from) || (inputDate.time() > worktime_to))
|
|
||||||
{
|
|
||||||
LOG_DEBUG("[STOP] * Ticket is not valid * ");
|
|
||||||
return "PARKING NOT ALLOWED";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
LOG_DEBUG("* PREPAID MODE ACTIVE *");
|
|
||||||
if (inputDate.time() < worktime_from)
|
|
||||||
{
|
|
||||||
inputDate.setTime(worktime_from);
|
|
||||||
}
|
|
||||||
else if(inputDate.time() > worktime_to)
|
|
||||||
{
|
|
||||||
LOG_DEBUG(" *** PREPAID *** Current time is past the time range end, searching for next available day");
|
|
||||||
inputDate = inputDate.addDays(1);
|
|
||||||
return GetDurationFromCost(cfg, payment_option, inputDate.toString(Qt::ISODate).toStdString().c_str(), money_left, true);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
while(true)
|
|
||||||
{
|
|
||||||
if((int)money_left <= 0) break;
|
|
||||||
|
|
||||||
// Check year period
|
|
||||||
bool isYearPeriodActive = false;
|
|
||||||
|
|
||||||
//// Parse input date
|
|
||||||
int dayCurrent = inputDate.date().day();
|
|
||||||
int monthCurrent = inputDate.date().month();
|
|
||||||
|
|
||||||
// Current date time
|
|
||||||
int cdt = (monthCurrent * 100) + dayCurrent;
|
|
||||||
|
|
||||||
multimap<int, ATBPeriodYear>::iterator year_period_itr;
|
|
||||||
for (year_period_itr = cfg->YearPeriod.begin(); year_period_itr != cfg->YearPeriod.end(); ++year_period_itr)
|
|
||||||
{
|
|
||||||
int dStart = year_period_itr->second.pye_start_day;
|
|
||||||
int dEnd = year_period_itr->second.pye_end_day;
|
|
||||||
|
|
||||||
int mStart = year_period_itr->second.pye_start_month;
|
|
||||||
int mEnd = year_period_itr->second.pye_end_month;
|
|
||||||
|
|
||||||
int start = (mStart * 100) + dStart;
|
|
||||||
int end = (mEnd * 100) + dEnd;
|
|
||||||
|
|
||||||
if (cdt >= start && cdt <= end) {
|
|
||||||
isYearPeriodActive = true;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (!isYearPeriodActive)
|
|
||||||
{
|
|
||||||
LOG_DEBUG("Year period is not valid");
|
|
||||||
return "PARKING NOT ALLOWED";
|
|
||||||
}
|
|
||||||
|
|
||||||
if(total_duration_min > maxMin)
|
|
||||||
{
|
|
||||||
total_duration_min = maxMin;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
// If reached end of worktime go to next day
|
|
||||||
if(inputDate.time() >= worktime_to)
|
|
||||||
{
|
|
||||||
int carry_over_status = 0;
|
|
||||||
carry_over_status = cfg->PaymentOption.find(payment_option)->second.pop_carry_over;
|
|
||||||
if (carry_over_status < 1) break;
|
|
||||||
|
|
||||||
inputDate = inputDate.addDays(1);
|
|
||||||
overtime = true;
|
|
||||||
return GetDurationFromCost(cfg, payment_option, inputDate.toString(Qt::ISODate).toStdString().c_str(), money_left ,true, prepaid);
|
|
||||||
}
|
|
||||||
|
|
||||||
if(money_left > 1)
|
|
||||||
inputDate = inputDate.addSecs(60);
|
|
||||||
|
|
||||||
if(price_per_unit > 0) total_duration_min +=1;
|
|
||||||
money_left -= price_per_unit;
|
|
||||||
|
|
||||||
//qDebug() <<"Timestamp:" << inputDate << ", total duration min: " << total_duration_min << ", money left = " << money_left;
|
|
||||||
}
|
|
||||||
|
|
||||||
// if ((total_duration_min < minMin) || (price / price_per_unit) < minMin)
|
|
||||||
// {
|
|
||||||
// LOG_DEBUG("Total duration is lower than min_min");
|
|
||||||
// inputDate.time() = worktime_from;
|
|
||||||
// total_duration_min = 0;
|
|
||||||
// }
|
|
||||||
|
|
||||||
double ret_val = 0;
|
|
||||||
double calc_price = (int)total_duration_min - (int)price / price_per_unit;
|
|
||||||
|
|
||||||
if (calc_price > 0 && total_duration_min > 0)
|
|
||||||
{
|
|
||||||
inputDate.addSecs(-(int)ceil(calc_price) * 60);
|
|
||||||
}
|
|
||||||
|
|
||||||
if(price >= min_price && total_duration_min >= minMin)
|
|
||||||
qDebug() << "Valid until: " << inputDate.toString(Qt::ISODate);
|
|
||||||
else
|
|
||||||
{
|
|
||||||
qDebug() << "Parking not allowed";
|
|
||||||
total_duration_min = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
ret_val = total_duration_min;
|
|
||||||
if(ret_val < 0) ret_val = 0;
|
|
||||||
qDebug() << "Duration: " << ret_val;
|
|
||||||
if (ret_val <= 0) return "PARKING NOT ALLOWED";
|
if (ret_val <= 0) return "PARKING NOT ALLOWED";
|
||||||
|
|
||||||
total_duration_min = 0;
|
#ifdef __linux__
|
||||||
return inputDate.toString(Qt::ISODate).toStdString();
|
#if !defined(_SVID_SOURCE) && !defined(_XOPEN_SOURCE)
|
||||||
|
// needed for timezone-correction
|
||||||
|
#error "!defined(_SVID_SOURCE) && !defined(_XOPEN_SOURCE)"
|
||||||
|
#else
|
||||||
|
// timezone correction: localtime() needs argument in UTC-timezone
|
||||||
|
// The global variable 'timezone' is set by tzset(), see
|
||||||
|
// https://linux.die.net/man/3/tzset, so I change of the timezone will
|
||||||
|
// also change the value of the variable 'timezone'.
|
||||||
|
valid_until_datetime_t += timezone;
|
||||||
|
#endif
|
||||||
|
#else // windows, only for testing
|
||||||
|
static const long timezone = -3600;
|
||||||
|
valid_until_datetime_t += timezone;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
struct tm valid_until_datetime;
|
||||||
|
memset(&valid_until_datetime, 0x00, sizeof(valid_until_datetime));
|
||||||
|
|
||||||
|
if (!localtime_r(&valid_until_datetime_t, &valid_until_datetime)) {
|
||||||
|
return "LOCALTIME_R() ERROR";
|
||||||
|
}
|
||||||
|
|
||||||
|
// return in ISO-format: "%Y-%m-%dT%H:%M:%S"
|
||||||
|
char buf[128];
|
||||||
|
memset(buf, 0x00, sizeof(buf));
|
||||||
|
strftime(buf, sizeof(buf)-1, "%Y-%m-%dT%H:%M:%S", &valid_until_datetime);
|
||||||
|
|
||||||
|
LOG_DEBUG("Ticket is valid until ", buf);
|
||||||
|
|
||||||
|
total_duration_min = 0.0f;
|
||||||
|
return std::string(buf);
|
||||||
}
|
}
|
||||||
|
|
||||||
///////////////////////////////////////
|
///////////////////////////////////////
|
||||||
@@ -454,13 +391,8 @@ double Calculator::GetCostFromDuration(Configuration* cfg, uint8_t payment_optio
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
// Set new price for the normal day
|
// Set new price for the normal day
|
||||||
|
day_price = cfg->PaymentRate.find(payment_option)->second.pra_price;
|
||||||
int pop_id = cfg->PaymentOption.find(payment_option)->second.pop_id;
|
price_per_unit = Utilities::CalculatePricePerUnit(day_price);
|
||||||
day_price = cfg->PaymentRate.find(pop_id)->second.pra_price;
|
|
||||||
|
|
||||||
int durationId = cfg->PaymentRate.find(pop_id)->second.pra_payment_unit_id;
|
|
||||||
double durationUnit = cfg->Duration.find(durationId)->second.pun_duration;
|
|
||||||
price_per_unit = Utilities::CalculatePricePerUnit(day_price,durationUnit);
|
|
||||||
|
|
||||||
// If no working day found, skip it (recursively call method again)
|
// If no working day found, skip it (recursively call method again)
|
||||||
size_t found = 0;
|
size_t found = 0;
|
||||||
@@ -555,12 +487,11 @@ double Calculator::GetCostFromDuration(Configuration* cfg, uint8_t payment_optio
|
|||||||
return 0.0f;
|
return 0.0f;
|
||||||
}
|
}
|
||||||
|
|
||||||
int carry_over_status = 0;
|
|
||||||
carry_over_status = cfg->PaymentOption.find(payment_option)->second.pop_carry_over;
|
|
||||||
|
|
||||||
// Go to next day if minutes not spent
|
// Go to next day if minutes not spent
|
||||||
if(inputDate.time() >= worktime_to)
|
if(inputDate.time() >= worktime_to)
|
||||||
{
|
{
|
||||||
|
int carry_over_status = 0;
|
||||||
|
carry_over_status = cfg->PaymentOption.find(payment_option)->second.pop_carry_over;
|
||||||
if (carry_over_status < 1) break;
|
if (carry_over_status < 1) break;
|
||||||
|
|
||||||
LOG_DEBUG("Reached end of worktime, searching for the next working day");
|
LOG_DEBUG("Reached end of worktime, searching for the next working day");
|
||||||
|
@@ -23,12 +23,12 @@ bool Configuration::ParseJson(Configuration* cfg, const char* json)
|
|||||||
{
|
{
|
||||||
if (cfg == nullptr)
|
if (cfg == nullptr)
|
||||||
{
|
{
|
||||||
printf("TariffConfiguration pointer not set\n");
|
fprintf(stderr, "TariffConfiguration pointer not set\n");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (json == NULL)
|
if (json == NULL)
|
||||||
{
|
{
|
||||||
printf("%s", "Input JSON string is NULL\n");
|
fprintf(stderr, "%s", "Input JSON string is NULL\n");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -40,17 +40,17 @@ bool Configuration::ParseJson(Configuration* cfg, const char* json)
|
|||||||
ParseErrorCode err = document.GetParseError();
|
ParseErrorCode err = document.GetParseError();
|
||||||
if (err != 0)
|
if (err != 0)
|
||||||
{
|
{
|
||||||
printf("%s %d (%s)\n", "Unable to parse JSON, error code:", err, GetParseError_En(err));
|
fprintf(stderr, "%s %d (%s)\n", "Unable to parse JSON, error code:", err, GetParseError_En(err));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Validate JSON, check if it's a JSON object
|
// Validate JSON, check if it's a JSON object
|
||||||
printf("%s", "JSON parsing has been successful\n");
|
fprintf(stderr, "%s", "JSON parsing has been successful\n");
|
||||||
if (!document.IsObject()) {
|
if (!document.IsObject()) {
|
||||||
printf("%s", "Error: not a (valid) JSON object\n");
|
fprintf(stderr, "%s", "Error: not a (valid) JSON object\n");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
printf("%s", "Valid JSON object identified\n");
|
fprintf(stderr, "%s", "Valid JSON object identified\n");
|
||||||
|
|
||||||
// Validate JSON, check configuration members
|
// Validate JSON, check configuration members
|
||||||
if (!document.HasMember("Currency")
|
if (!document.HasMember("Currency")
|
||||||
@@ -65,7 +65,7 @@ bool Configuration::ParseJson(Configuration* cfg, const char* json)
|
|||||||
printf("%s", "Error: not a valid configuration JSON\n");
|
printf("%s", "Error: not a valid configuration JSON\n");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
printf("%s", "Valid JSON configuration identified\n");
|
fprintf(stderr, "%s", "Valid JSON configuration identified\n");
|
||||||
|
|
||||||
ATBCurrency Currency;
|
ATBCurrency Currency;
|
||||||
ATBDuration Duration;
|
ATBDuration Duration;
|
||||||
@@ -115,7 +115,7 @@ bool Configuration::ParseJson(Configuration* cfg, const char* json)
|
|||||||
const char* inner_obj_name = k->name.GetString();
|
const char* inner_obj_name = k->name.GetString();
|
||||||
if (inner_obj_name == NULL)
|
if (inner_obj_name == NULL)
|
||||||
{
|
{
|
||||||
printf("Inner object name is NULL\n");
|
fprintf(stderr, "Inner object name is NULL\n");
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -154,8 +154,6 @@ bool Configuration::ParseJson(Configuration* cfg, const char* json)
|
|||||||
else if (strcmp(inner_obj_name, "pop_max_time") == 0) PaymentOption.pop_max_time = k->value.GetDouble();
|
else if (strcmp(inner_obj_name, "pop_max_time") == 0) PaymentOption.pop_max_time = k->value.GetDouble();
|
||||||
else if (strcmp(inner_obj_name, "pop_min_price") == 0) PaymentOption.pop_min_price = k->value.GetDouble();
|
else if (strcmp(inner_obj_name, "pop_min_price") == 0) PaymentOption.pop_min_price = k->value.GetDouble();
|
||||||
else if (strcmp(inner_obj_name, "pop_carry_over") == 0) PaymentOption.pop_carry_over = k->value.GetInt();
|
else if (strcmp(inner_obj_name, "pop_carry_over") == 0) PaymentOption.pop_carry_over = k->value.GetInt();
|
||||||
else if (strcmp(inner_obj_name, "pop_daily_card_price") == 0) PaymentOption.pop_daily_card_price = k->value.GetInt();
|
|
||||||
else if (strcmp(inner_obj_name, "pop_multi_hour_price") == 0) PaymentOption.pop_multi_hour_price = k->value.GetInt();
|
|
||||||
break;
|
break;
|
||||||
case MemberType::DurationType:
|
case MemberType::DurationType:
|
||||||
if (strcmp(inner_obj_name, "pun_id") == 0) Duration.pun_id = k->value.GetInt();
|
if (strcmp(inner_obj_name, "pun_id") == 0) Duration.pun_id = k->value.GetInt();
|
||||||
@@ -211,7 +209,7 @@ bool Configuration::ParseJson(Configuration* cfg, const char* json)
|
|||||||
cfg->PaymentMethod.insert(pair<int, ATBPaymentMethod>(PaymentMethod.pme_id, PaymentMethod));
|
cfg->PaymentMethod.insert(pair<int, ATBPaymentMethod>(PaymentMethod.pme_id, PaymentMethod));
|
||||||
break;
|
break;
|
||||||
case MemberType::PaymentRateType:
|
case MemberType::PaymentRateType:
|
||||||
cfg->PaymentRate.insert(pair<int, ATBPaymentRate>(PaymentRate.pra_payment_option_id, PaymentRate));
|
cfg->PaymentRate.insert(pair<int, ATBPaymentRate>(PaymentRate.pra_payment_unit_id, PaymentRate));
|
||||||
break;
|
break;
|
||||||
case MemberType::PaymentOptionType:
|
case MemberType::PaymentOptionType:
|
||||||
cfg->PaymentOption.insert(pair<int, ATBPaymentOption>(PaymentOption.pop_payment_method_id, PaymentOption));
|
cfg->PaymentOption.insert(pair<int, ATBPaymentOption>(PaymentOption.pop_payment_method_id, PaymentOption));
|
||||||
@@ -242,7 +240,7 @@ bool Configuration::ParseJson(Configuration* cfg, const char* json)
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
catch (...) {
|
catch (...) {
|
||||||
printf("%s\n", "General exception has occurred while parsing JSON\n");
|
fprintf(stderr, "%s\n", "General exception has occurred while parsing JSON\n");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -8,15 +8,12 @@ static int protection_counter = 0;
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="pra_price"></param>
|
/// <param name="pra_price"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
double Utilities::CalculatePricePerUnit(double pra_price, double durationUnit)
|
double Utilities::CalculatePricePerUnit(double pra_price)
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
double price_per_unit = pra_price;
|
double price_per_unit = pra_price;
|
||||||
double unit = durationUnit;
|
price_per_unit /= 60.0f; // Divided by 60 because price per unit is set per hour and we are using minutes
|
||||||
|
|
||||||
if(unit < 0 || unit > 65535 ) unit = 60.0f;
|
|
||||||
price_per_unit /= unit; // Divided by 60 because price per unit is set per hour and we are using minutes
|
|
||||||
//printf("Price per unit (min) is: %lf\n", price_per_unit);
|
//printf("Price per unit (min) is: %lf\n", price_per_unit);
|
||||||
return price_per_unit;
|
return price_per_unit;
|
||||||
}
|
}
|
||||||
|
168
main/main.cpp
168
main/main.cpp
@@ -1,9 +1,10 @@
|
|||||||
|
#include <calculate_price.h>
|
||||||
|
|
||||||
|
|
||||||
#ifdef WIN32
|
#ifdef WIN32
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
#include <iomanip>
|
#include <iomanip>
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
#include <calculate_price.h>
|
|
||||||
|
|
||||||
|
|
||||||
extern "C" char* strptime(const char* s,
|
extern "C" char* strptime(const char* s,
|
||||||
const char* f,
|
const char* f,
|
||||||
@@ -26,101 +27,94 @@ extern "C" char* strptime(const char* s,
|
|||||||
|
|
||||||
#include <QDebug>
|
#include <QDebug>
|
||||||
#include <QDateTime>
|
#include <QDateTime>
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
|
|
||||||
parking_tariff_t *tariff = 0;
|
parking_tariff_t *tariff = 0;
|
||||||
if (init_tariff(&tariff, "C:\\Users\\MROD\\Documents\\QtCreator\\Old\\build-MOBILISIS-Calculator-Desktop_Qt_5_12_12_MSVC2017_32bit-Debug\\main\\etc\\psa_tariff\\tariff01.json"))
|
if (init_tariff(&tariff, "C:\\Users\\MROD\\Documents\\QtCreator\\build-MOBILISIS-Calculator-Desktop_Qt_5_12_12_MSVC2017_32bit-Debug\\main\\etc\\psa_tariff\\zone1.json")) {
|
||||||
{
|
|
||||||
struct price_t price;
|
struct price_t price;
|
||||||
memset(&price, 0x00, sizeof(price));
|
memset(&price, 0x00, sizeof(price));
|
||||||
QDateTime start = QDateTime::fromString("2023-06-01T07:50:00.000Z",Qt::ISODate); //QDateTime::currentDateTime();
|
QDateTime start = QDateTime::fromString("2023-05-11T07:50:00",Qt::ISODate); //QDateTime::currentDateTime();
|
||||||
time_t start_parking_time = start.toSecsSinceEpoch() / 60;
|
time_t start_parking_time = start.toSecsSinceEpoch() / 60;
|
||||||
time_t end_parking_time = start_parking_time + 1230;
|
time_t end_parking_time = start_parking_time + 1230;
|
||||||
|
|
||||||
// if (compute_price_for_parking_ticket(tariff,
|
if (compute_price_for_parking_ticket(tariff,
|
||||||
// start_parking_time,
|
start_parking_time,
|
||||||
// end_parking_time,
|
end_parking_time,
|
||||||
// &price))
|
&price)) {
|
||||||
// {
|
qDebug() << "price=" << price.netto;
|
||||||
// qDebug() << "GetCostFromDuration() => price=" << price.netto;
|
}
|
||||||
// }
|
|
||||||
|
|
||||||
// QString duration;
|
// QString duration;
|
||||||
// if(compute_duration_for_parking_ticket(tariff,start_parking_time,1650,duration))
|
// if(compute_duration_for_parking_ticket(tariff,start_parking_time,3090,duration))
|
||||||
// {
|
// {
|
||||||
// qDebug() << "GetDurationFromCost() => duration=" << duration;
|
// qDebug() << "duration=" << duration;
|
||||||
// }
|
// }
|
||||||
|
|
||||||
// Daily ticket
|
// // tests
|
||||||
// compute_duration_for_daily_ticket(tariff,start.toString(Qt::ISODate),3);
|
// struct tm now;
|
||||||
|
// memset(&now, 0, sizeof(now));
|
||||||
|
|
||||||
compute_duration_for_24hour_daily_ticket(tariff,start.toString(Qt::ISODate),3);
|
// // 3.Jan 2023 -> Tuesday
|
||||||
|
// strptime("2023-01-03T14:00:00", "%Y-%m-%dT%H:%M:%S", &now);
|
||||||
|
// for (int i = 0; i < 600; ++i) {
|
||||||
|
// start_parking_time = mktime(&now);
|
||||||
|
// end_parking_time = start_parking_time + 240; // duration == 240
|
||||||
|
|
||||||
//Configuration* cfg, QString start_datetime, uint8_t payment_option, bool carry_over
|
// if (compute_price_for_parking_ticket(tariff,
|
||||||
// // tests
|
// start_parking_time,
|
||||||
// struct tm now;
|
// end_parking_time,
|
||||||
// memset(&now, 0, sizeof(now));
|
// &price)) {
|
||||||
|
// int const zone = get_zone_nr(1);
|
||||||
|
// switch (zone) {
|
||||||
|
// case 1:
|
||||||
|
// assert(price.netto == 879); // expected value: 880
|
||||||
|
// break;
|
||||||
|
// case 2:
|
||||||
|
// /* fall through */
|
||||||
|
// case 3:
|
||||||
|
// assert(price.netto == 1920);
|
||||||
|
// break;
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// time_t t = start_parking_time + 60;
|
||||||
|
// now = *localtime(&t);
|
||||||
|
// }
|
||||||
|
// //
|
||||||
|
// // test May 1st 2023
|
||||||
|
// //
|
||||||
|
// memset(&now, 0, sizeof(now));
|
||||||
|
// strptime("2023-04-30T06:00:00", "%Y-%m-%dT%H:%M:%S", &now);
|
||||||
|
// now.tm_hour -= 1; // for ctime
|
||||||
|
// // for (int i=0; i<6*24; ++i) {
|
||||||
|
// for (int i=0; i<1; ++i) {
|
||||||
|
// int const duration = 120;
|
||||||
|
// time_t t = mktime(&now);
|
||||||
|
// start_parking_time = t / 60;
|
||||||
|
// end_parking_time = start_parking_time + duration;
|
||||||
|
|
||||||
// // 3.Jan 2023 -> Tuesday
|
// if (compute_price_for_parking_ticket(tariff,
|
||||||
// strptime("2023-01-03T14:00:00", "%Y-%m-%dT%H:%M:%S", &now);
|
// start_parking_time,
|
||||||
// for (int i = 0; i < 600; ++i) {
|
// end_parking_time,
|
||||||
// start_parking_time = mktime(&now);
|
// &price)) {
|
||||||
// end_parking_time = start_parking_time + 240; // duration == 240
|
// int const zone = get_zone_nr();
|
||||||
|
// switch (zone) {
|
||||||
|
// case 1:
|
||||||
|
// qDebug() << i << zone << ctime(&t) << price.netto << " FT";
|
||||||
|
// assert(price.netto == 440);
|
||||||
|
// break;
|
||||||
|
// case 2:
|
||||||
|
// /* fall through */
|
||||||
|
// case 3:
|
||||||
|
// qDebug() << i << zone << ctime(&t) << price.netto << " FT";
|
||||||
|
// assert(price.netto == 960);
|
||||||
|
// break;
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
|
||||||
// if (compute_price_for_parking_ticket(tariff,
|
// t = (start_parking_time + 60)*60;
|
||||||
// start_parking_time,
|
// now = *localtime(&t);
|
||||||
// end_parking_time,
|
// }
|
||||||
// &price)) {
|
|
||||||
// int const zone = get_zone_nr(1);
|
|
||||||
// switch (zone) {
|
|
||||||
// case 1:
|
|
||||||
// assert(price.netto == 879); // expected value: 880
|
|
||||||
// break;
|
|
||||||
// case 2:
|
|
||||||
// /* fall through */
|
|
||||||
// case 3:
|
|
||||||
// assert(price.netto == 1920);
|
|
||||||
// break;
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// time_t t = start_parking_time + 60;
|
|
||||||
// now = *localtime(&t);
|
|
||||||
// }
|
|
||||||
// //
|
|
||||||
// // test May 1st 2023
|
|
||||||
// //
|
|
||||||
// memset(&now, 0, sizeof(now));
|
|
||||||
// strptime("2023-04-30T06:00:00", "%Y-%m-%dT%H:%M:%S", &now);
|
|
||||||
// now.tm_hour -= 1; // for ctime
|
|
||||||
// // for (int i=0; i<6*24; ++i) {
|
|
||||||
// for (int i=0; i<1; ++i) {
|
|
||||||
// int const duration = 120;
|
|
||||||
// time_t t = mktime(&now);
|
|
||||||
// start_parking_time = t / 60;
|
|
||||||
// end_parking_time = start_parking_time + duration;
|
|
||||||
|
|
||||||
// if (compute_price_for_parking_ticket(tariff,
|
|
||||||
// start_parking_time,
|
|
||||||
// end_parking_time,
|
|
||||||
// &price)) {
|
|
||||||
// int const zone = get_zone_nr();
|
|
||||||
// switch (zone) {
|
|
||||||
// case 1:
|
|
||||||
// qDebug() << i << zone << ctime(&t) << price.netto << " FT";
|
|
||||||
// assert(price.netto == 440);
|
|
||||||
// break;
|
|
||||||
// case 2:
|
|
||||||
// /* fall through */
|
|
||||||
// case 3:
|
|
||||||
// qDebug() << i << zone << ctime(&t) << price.netto << " FT";
|
|
||||||
// assert(price.netto == 960);
|
|
||||||
// break;
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
// t = (start_parking_time + 60)*60;
|
|
||||||
// now = *localtime(&t);
|
|
||||||
// }
|
|
||||||
|
|
||||||
free_tariff(tariff);
|
free_tariff(tariff);
|
||||||
}
|
}
|
||||||
@@ -157,7 +151,7 @@ int main() {
|
|||||||
struct tm now; // = Utilities::DateTimeToStructTm("2023-03-01T16:00:00");
|
struct tm now; // = Utilities::DateTimeToStructTm("2023-03-01T16:00:00");
|
||||||
memset(&now, 0, sizeof(now));
|
memset(&now, 0, sizeof(now));
|
||||||
char buffer[64];
|
char buffer[64];
|
||||||
//#if 0
|
//#if 0
|
||||||
// 3.Jan 2023 -> Tuesday
|
// 3.Jan 2023 -> Tuesday
|
||||||
strptime("2023-01-03T14:00:00", "%Y-%m-%dT%H:%M:%S", &now);
|
strptime("2023-01-03T14:00:00", "%Y-%m-%dT%H:%M:%S", &now);
|
||||||
for (int i = 0; i < 600; ++i) {
|
for (int i = 0; i < 600; ++i) {
|
||||||
@@ -232,8 +226,8 @@ int main() {
|
|||||||
|
|
||||||
int const duration = 120;
|
int const duration = 120;
|
||||||
double cost = calculator.GetCostFromDuration(&cfg,
|
double cost = calculator.GetCostFromDuration(&cfg,
|
||||||
PaymentOption::Option1, buffer, duration,
|
PaymentOption::Option1, buffer, duration,
|
||||||
false, true);
|
false, true);
|
||||||
|
|
||||||
switch (zone) {
|
switch (zone) {
|
||||||
case 1:
|
case 1:
|
||||||
@@ -271,8 +265,8 @@ int main() {
|
|||||||
|
|
||||||
int const duration = 120;
|
int const duration = 120;
|
||||||
double cost = calculator.GetCostFromDuration(&cfg,
|
double cost = calculator.GetCostFromDuration(&cfg,
|
||||||
PaymentOption::Option1, buffer, duration,
|
PaymentOption::Option1, buffer, duration,
|
||||||
false, true);
|
false, true);
|
||||||
|
|
||||||
switch (zone) {
|
switch (zone) {
|
||||||
case 1:
|
case 1:
|
||||||
@@ -305,8 +299,8 @@ int main() {
|
|||||||
|
|
||||||
double const compCost = (duration < 15) ? 0 : duration * ((zone == 1) ? 3.6666 : 8.0);
|
double const compCost = (duration < 15) ? 0 : duration * ((zone == 1) ? 3.6666 : 8.0);
|
||||||
double cost = calculator.GetCostFromDuration(&cfg,
|
double cost = calculator.GetCostFromDuration(&cfg,
|
||||||
PaymentOption::Option1, buffer, duration,
|
PaymentOption::Option1, buffer, duration,
|
||||||
false, true);
|
false, true);
|
||||||
if (fabs(cost - compCost) > 1.0) { // zone 1 has rounding errors
|
if (fabs(cost - compCost) > 1.0) { // zone 1 has rounding errors
|
||||||
cout << "ERROR ===> [" << i << "] " << asctime(&now)
|
cout << "ERROR ===> [" << i << "] " << asctime(&now)
|
||||||
<< " - Total cost is: " << cost << " FT (computed="
|
<< " - Total cost is: " << cost << " FT (computed="
|
||||||
|
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user