2023-04-24 15:31:46 +02:00
|
|
|
#include "calculate_price.h"
|
|
|
|
#include "configuration.h"
|
|
|
|
#include "calculator_functions.h"
|
|
|
|
#include "payment_option.h"
|
2023-12-07 16:28:17 +01:00
|
|
|
#include "utilities.h"
|
2023-04-24 15:31:46 +02:00
|
|
|
|
|
|
|
#include <QFile>
|
|
|
|
#include <QFileInfo>
|
|
|
|
#include <QDateTime>
|
|
|
|
#include <QDebug>
|
2024-01-22 14:46:40 +01:00
|
|
|
#include <QList>
|
2023-04-24 15:31:46 +02:00
|
|
|
|
|
|
|
static Calculator calculator;
|
|
|
|
|
2024-01-22 15:41:20 +01:00
|
|
|
QList<int> CALCULATE_LIBRARY_API get_time_steps(Configuration *cfg) {
|
|
|
|
return calculator.GetTimeSteps(cfg);
|
|
|
|
}
|
|
|
|
|
|
|
|
int CALCULATE_LIBRARY_API get_minimum_parkingtime(Configuration *cfg) {
|
|
|
|
// get_time_steps() possibly re-computes pop_min_time: see
|
|
|
|
// calculator.GetTimeSteps()
|
|
|
|
get_time_steps(cfg);
|
|
|
|
return qRound(cfg->getPaymentOptions().pop_min_time);
|
2024-01-22 14:29:02 +01:00
|
|
|
}
|
|
|
|
|
2023-05-12 09:20:46 +02:00
|
|
|
int CALCULATE_LIBRARY_API get_zone_nr(int zone)
|
|
|
|
{
|
|
|
|
if(zone > -1) return zone;
|
|
|
|
else
|
2023-05-15 14:05:55 +02:00
|
|
|
{
|
2023-05-12 09:20:46 +02:00
|
|
|
QFile zone("/etc/zone_nr");
|
|
|
|
if (zone.exists()) {
|
|
|
|
QFileInfo finfo(zone);
|
|
|
|
if (finfo.size() <= 4) { // decimal 000\n
|
|
|
|
if (zone.open(QIODevice::ReadOnly | QIODevice::Text)) {
|
|
|
|
QTextStream in(&zone);
|
|
|
|
return in.readLine(100).toInt();
|
|
|
|
}
|
2023-04-24 15:31:46 +02:00
|
|
|
}
|
|
|
|
}
|
2023-05-12 09:20:46 +02:00
|
|
|
return -1;
|
2023-05-15 14:05:55 +02:00
|
|
|
}
|
2023-04-24 15:31:46 +02:00
|
|
|
}
|
|
|
|
|
2023-05-08 12:34:01 +02:00
|
|
|
CalcState CALCULATE_LIBRARY_API init_tariff(parking_tariff_t **tariff, char const *config_file) {
|
2023-04-24 15:31:46 +02:00
|
|
|
*tariff = new Configuration();
|
|
|
|
|
2023-05-08 12:34:01 +02:00
|
|
|
CalcState calcState;
|
2023-05-11 13:57:31 +02:00
|
|
|
#if __linux__
|
|
|
|
|
2023-04-24 15:31:46 +02:00
|
|
|
int const zone = get_zone_nr();
|
2023-05-05 13:19:02 +02:00
|
|
|
|
|
|
|
// DEBUG
|
|
|
|
qCritical() << "init_tariff:";
|
|
|
|
qCritical() << " ... zone = " << zone;
|
|
|
|
|
|
|
|
if (zone <= 0) {
|
2023-05-09 13:05:02 +02:00
|
|
|
delete *tariff;
|
|
|
|
*tariff = nullptr;
|
2023-05-08 12:34:01 +02:00
|
|
|
return calcState.set(CalcState::State::ERROR_PARSING_ZONE_NR);
|
2023-04-24 15:31:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
QString confFile(config_file);
|
|
|
|
if (!confFile.endsWith(QChar('/'))) {
|
|
|
|
confFile += "/";
|
|
|
|
}
|
|
|
|
|
2023-05-05 13:19:02 +02:00
|
|
|
char buffer[32];
|
2023-04-24 15:31:46 +02:00
|
|
|
memset(buffer, 0x00, sizeof(buffer));
|
|
|
|
snprintf(buffer, sizeof(buffer)-1, "tariff%02d.json", zone);
|
|
|
|
confFile += buffer;
|
2023-05-11 13:57:31 +02:00
|
|
|
#else // windows
|
|
|
|
QString confFile(config_file);
|
|
|
|
#endif
|
2023-04-24 15:31:46 +02:00
|
|
|
|
2023-05-05 13:19:36 +02:00
|
|
|
// DEBUG
|
|
|
|
qCritical() << " ... confFile = " << confFile;
|
|
|
|
|
2023-04-24 15:31:46 +02:00
|
|
|
QFile fname(confFile);
|
2023-05-08 12:34:01 +02:00
|
|
|
if (fname.exists() &&
|
2023-05-15 14:05:55 +02:00
|
|
|
fname.open(QIODevice::ReadOnly | QIODevice::Text)) {
|
2023-05-05 13:19:36 +02:00
|
|
|
// DEBUG
|
2023-05-08 12:34:01 +02:00
|
|
|
qCritical() << " ... confFile is open";
|
2023-05-05 13:19:36 +02:00
|
|
|
|
2023-05-08 12:34:01 +02:00
|
|
|
QString json = fname.readAll();
|
|
|
|
if (! (*tariff)->ParseJson(*tariff, json.toStdString().c_str())) {
|
2023-05-09 13:05:02 +02:00
|
|
|
delete *tariff;
|
|
|
|
*tariff = nullptr;
|
2023-05-09 11:52:17 +02:00
|
|
|
return calcState.set(CalcState::State::ERROR_PARSING_TARIFF);
|
2023-04-24 15:31:46 +02:00
|
|
|
}
|
2023-05-08 12:34:01 +02:00
|
|
|
} else {
|
2023-05-09 13:05:02 +02:00
|
|
|
delete *tariff;
|
|
|
|
*tariff = nullptr;
|
2023-05-09 11:52:17 +02:00
|
|
|
return calcState.set(CalcState::State::ERROR_LOADING_TARIFF);
|
2023-04-24 15:31:46 +02:00
|
|
|
}
|
|
|
|
|
2023-05-09 11:52:17 +02:00
|
|
|
qCritical() << "init_tariff: Parsing tariff config (" << confFile << ")";
|
2023-05-05 13:19:36 +02:00
|
|
|
|
2023-05-08 12:34:01 +02:00
|
|
|
return calcState;
|
2023-04-24 15:31:46 +02:00
|
|
|
}
|
|
|
|
|
2023-05-02 09:46:17 +02:00
|
|
|
void CALCULATE_LIBRARY_API free_tariff(parking_tariff_t *tariff) {
|
2023-05-09 13:05:02 +02:00
|
|
|
if (tariff != nullptr) {
|
|
|
|
delete tariff;
|
|
|
|
}
|
2023-04-24 15:31:46 +02:00
|
|
|
}
|
|
|
|
|
2023-12-07 16:28:17 +01:00
|
|
|
//
|
|
|
|
// UpDown 1 -> up; 0 -> down
|
|
|
|
int CALCULATE_LIBRARY_API compute_next_timestep(parking_tariff_t *tariff, int currentTimeMinutes, int UpDown)
|
|
|
|
{
|
2023-12-08 10:16:52 +01:00
|
|
|
qCritical() << " compute_next_timestep() currentTimeMinutes: " << currentTimeMinutes;
|
2023-12-07 17:00:28 +01:00
|
|
|
Configuration const *cfg = tariff;
|
|
|
|
|
|
|
|
// compute payment method id (e.g. Linear=3, Steps=4)
|
|
|
|
PaymentMethod const paymentMethodId = Utilities::getPaymentMethodId(cfg);
|
|
|
|
switch (paymentMethodId) {
|
|
|
|
case PaymentMethod::Progressive:
|
2023-12-08 10:16:52 +01:00
|
|
|
qCritical() << " compute_next_timestep() paymentMethodId: Progressive";
|
2023-12-07 17:00:28 +01:00
|
|
|
break;
|
|
|
|
case PaymentMethod::Degressive:
|
2023-12-08 10:16:52 +01:00
|
|
|
qCritical() << " compute_next_timestep() paymentMethodId: Degressive";
|
2023-12-07 17:00:28 +01:00
|
|
|
break;
|
|
|
|
case PaymentMethod::Linear:
|
2023-12-08 10:16:52 +01:00
|
|
|
qCritical() << " compute_next_timestep() paymentMethodId: Linear";
|
2023-12-07 17:00:28 +01:00
|
|
|
break;
|
|
|
|
case PaymentMethod::Steps:
|
2023-12-08 10:16:52 +01:00
|
|
|
qCritical() << " compute_next_timestep() paymentMethodId: Steps";
|
2023-12-07 17:00:28 +01:00
|
|
|
break;
|
|
|
|
case PaymentMethod::Undefined:
|
2023-12-08 10:16:52 +01:00
|
|
|
qCritical() << " compute_next_timestep() paymentMethodId: Undefined";
|
2023-12-07 17:00:28 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2023-12-07 16:28:17 +01:00
|
|
|
// use tariff with structure as for instance Schnau, Koenigsee:
|
|
|
|
// without given YearPeriod, SpecialDays and SpecialDaysWorktime
|
2023-12-07 17:00:28 +01:00
|
|
|
if (paymentMethodId == PaymentMethod::Steps)
|
2023-12-07 16:28:17 +01:00
|
|
|
{
|
|
|
|
static const QList<int> stepList = calculator.GetTimeSteps(tariff);
|
|
|
|
|
|
|
|
int currentStepIndex = stepList.indexOf(currentTimeMinutes);
|
|
|
|
|
|
|
|
if (currentStepIndex == -1) {
|
|
|
|
qCritical() << "compute_next_timestep() *NO STEP* for currentTimeMinutes (" << currentTimeMinutes << ")";
|
|
|
|
return currentTimeMinutes;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (UpDown == 1) { // UP
|
|
|
|
if (stepList[currentStepIndex] == stepList.last()) {
|
|
|
|
qCritical() << "compute_next_timestep() *NO NEXT STEP* for currentTimeMinutes (" << currentTimeMinutes << ")";
|
|
|
|
return currentTimeMinutes;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return stepList[currentStepIndex + 1];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (UpDown == 0) { // DOWN
|
|
|
|
if (stepList[currentStepIndex] == stepList.first()) {
|
|
|
|
qCritical() << "compute_next_timestep() *NO PREVIOUS STEP* for currentTimeMinutes (" << currentTimeMinutes << ")";
|
|
|
|
return currentTimeMinutes;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return stepList[currentStepIndex - 1];
|
|
|
|
}
|
|
|
|
}
|
2023-12-07 17:00:28 +01:00
|
|
|
} else
|
|
|
|
if (paymentMethodId == PaymentMethod::Linear) {
|
2023-12-07 16:28:17 +01:00
|
|
|
|
|
|
|
// currentTimeMinutes is the number of minutes actually used. This
|
|
|
|
// value is an offset from the start time and cannot be used as a
|
|
|
|
// QDateTime.
|
|
|
|
|
2023-12-08 10:16:52 +01:00
|
|
|
qCritical() << "compute_next_timestep() up/down (1=up, 0=down):" << UpDown;
|
2023-12-07 16:28:17 +01:00
|
|
|
|
|
|
|
// get minimal and maximal parking times
|
|
|
|
int const minParkingTime = Utilities::getMinimalParkingTime(cfg, paymentMethodId);
|
|
|
|
int const maxParkingTime = Utilities::getMaximalParkingTime(cfg, paymentMethodId);
|
|
|
|
|
2023-12-08 10:16:52 +01:00
|
|
|
qCritical() << " compute_next_timestep() maxParkingTime:" << maxParkingTime;
|
|
|
|
qCritical() << " compute_next_timestep() minParkingTime:" << minParkingTime;
|
2023-12-07 16:28:17 +01:00
|
|
|
|
|
|
|
// use the first (i.e. main duration step contained in the tariff json-file)
|
|
|
|
int firstDurationStep = Utilities::getFirstDurationStep(cfg, paymentMethodId);
|
2023-12-08 10:16:52 +01:00
|
|
|
firstDurationStep = ((UpDown == 1) ? firstDurationStep : -firstDurationStep);
|
|
|
|
|
|
|
|
qCritical() << " compute_next_timestep() firstDurationStep:" << firstDurationStep;
|
2023-12-07 16:28:17 +01:00
|
|
|
|
2023-12-11 09:00:24 +01:00
|
|
|
int const nextTimeStep = currentTimeMinutes + firstDurationStep;
|
2023-12-08 10:16:52 +01:00
|
|
|
|
2023-12-11 09:00:24 +01:00
|
|
|
if (nextTimeStep >= minParkingTime && nextTimeStep <= maxParkingTime) {
|
2023-12-08 10:16:52 +01:00
|
|
|
qCritical() << " compute_next_timestep() nextTimeStep:" << nextTimeStep;
|
2023-12-07 16:28:17 +01:00
|
|
|
return nextTimeStep;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
qCritical() << "compute_next_timestep() *CAN NOT COMPUTE* for currentTimeMinutes (" << currentTimeMinutes << ")";
|
|
|
|
return currentTimeMinutes;
|
|
|
|
}
|
2023-05-16 15:31:53 +02:00
|
|
|
|
|
|
|
// this is currently not used
|
2023-05-08 12:34:01 +02:00
|
|
|
CalcState CALCULATE_LIBRARY_API compute_price_for_parking_ticket(
|
2023-05-15 14:05:55 +02:00
|
|
|
parking_tariff_t *tariff,
|
|
|
|
time_t start_parking_time, // in minutes
|
2023-05-16 15:31:53 +02:00
|
|
|
time_t end_parking_time, // netto time in minutes
|
2023-05-15 14:05:55 +02:00
|
|
|
struct price_t *price) {
|
2023-05-08 12:34:01 +02:00
|
|
|
CalcState calcState;
|
2023-11-22 16:27:41 +01:00
|
|
|
double minMin = tariff->PaymentOption.find(tariff->getPaymentOptions().pop_payment_method_id)->second.pop_min_time;
|
|
|
|
double maxMin = tariff->PaymentOption.find(tariff->getPaymentOptions().pop_payment_method_id)->second.pop_max_time;
|
2023-05-08 12:34:01 +02:00
|
|
|
|
|
|
|
if (minMin < 0 || maxMin < 0 || maxMin < minMin) {
|
2023-05-10 13:33:28 +02:00
|
|
|
calcState.setDesc(QString("minMin=%1, maxMin=%2").arg(minMin).arg(maxMin));
|
2023-05-08 12:34:01 +02:00
|
|
|
return calcState.set(CalcState::State::WRONG_PARAM_VALUES);
|
|
|
|
}
|
|
|
|
|
2023-04-24 15:31:46 +02:00
|
|
|
int const duration = end_parking_time - start_parking_time;
|
2023-05-08 12:34:01 +02:00
|
|
|
if (duration < 0) {
|
|
|
|
calcState.setDesc(QString("end=%1, start=%2")
|
2023-05-15 14:05:55 +02:00
|
|
|
.arg(end_parking_time, start_parking_time));
|
2023-05-08 12:34:01 +02:00
|
|
|
return calcState.set(CalcState::State::NEGATIVE_PARING_TIME);
|
|
|
|
}
|
|
|
|
if (duration > maxMin) {
|
2023-05-10 13:33:28 +02:00
|
|
|
calcState.setDesc(QString("duration=%1, maxMin=%2").arg(duration).arg(maxMin));
|
2023-05-08 12:34:01 +02:00
|
|
|
return calcState.set(CalcState::State::ABOVE_MAX_PARKING_TIME);
|
|
|
|
}
|
|
|
|
if (duration < minMin) {
|
2023-05-10 13:33:28 +02:00
|
|
|
calcState.setDesc(QString("duration=%1, minMin=%2").arg(duration).arg(minMin));
|
2023-05-08 12:34:01 +02:00
|
|
|
return calcState.set(CalcState::State::BELOW_MIN_PARKING_TIME);
|
|
|
|
}
|
2023-04-24 15:31:46 +02:00
|
|
|
if (duration == 0) {
|
|
|
|
memset(price, 0x00, sizeof(*price));
|
2023-05-08 12:34:01 +02:00
|
|
|
return calcState.set(CalcState::State::SUCCESS);
|
2023-04-24 15:31:46 +02:00
|
|
|
}
|
2023-05-08 12:34:01 +02:00
|
|
|
|
|
|
|
QDate const d(1970, 1, 1);
|
|
|
|
QTime const t(0, 0, 0);
|
|
|
|
QDateTime start(d, t, Qt::UTC);
|
|
|
|
start = start.toLocalTime().addSecs(start_parking_time * 60);
|
2023-05-16 15:31:53 +02:00
|
|
|
QDateTime end(start);
|
2023-05-08 12:34:01 +02:00
|
|
|
if (start.isValid()) {
|
|
|
|
double cost = calculator.GetCostFromDuration(
|
2023-11-22 16:27:41 +01:00
|
|
|
tariff,
|
|
|
|
tariff->getPaymentOptions().pop_payment_method_id,
|
2023-05-16 15:31:53 +02:00
|
|
|
start,
|
|
|
|
end,
|
2023-05-15 14:05:55 +02:00
|
|
|
duration, false, true);
|
2023-11-22 16:27:41 +01:00
|
|
|
double minCost = tariff->PaymentOption.find(tariff->getPaymentOptions().pop_payment_method_id)->second.pop_min_price;
|
2023-05-08 12:34:01 +02:00
|
|
|
if (cost < minCost) {
|
2023-05-10 13:33:28 +02:00
|
|
|
calcState.setDesc(QString("minCost=%1, cost=%2").arg(minCost).arg(cost));
|
2023-05-08 12:34:01 +02:00
|
|
|
return calcState.set(CalcState::State::BELOW_MIN_PARKING_PRICE);
|
|
|
|
}
|
|
|
|
price->units = cost;
|
|
|
|
price->netto = cost;
|
2023-05-09 11:40:14 +02:00
|
|
|
} else {
|
|
|
|
return calcState.set(CalcState::State::INVALID_START_DATE);
|
|
|
|
}
|
|
|
|
|
|
|
|
return calcState.set(CalcState::State::SUCCESS);
|
|
|
|
}
|
|
|
|
|
2023-05-10 16:16:24 +02:00
|
|
|
CalcState CALCULATE_LIBRARY_API compute_price_for_parking_ticket(
|
2023-05-15 14:05:55 +02:00
|
|
|
parking_tariff_t *tariff,
|
|
|
|
QDateTime const &start_parking_time,
|
2023-05-16 15:31:53 +02:00
|
|
|
int netto_parking_time,
|
|
|
|
QDateTime &end_parking_time,
|
|
|
|
struct price_t *price)
|
|
|
|
{
|
2023-05-10 16:16:24 +02:00
|
|
|
CalcState calcState;
|
2023-11-22 16:27:41 +01:00
|
|
|
double minMin = tariff->getPaymentOptions().pop_min_time;
|
|
|
|
double maxMin = tariff->getPaymentOptions().pop_max_time;
|
2023-05-10 16:16:24 +02:00
|
|
|
|
2023-05-11 09:58:15 +02:00
|
|
|
// DEBUG
|
|
|
|
qCritical() << "compute_price_for_parking_ticket() " << endl
|
|
|
|
<< " start_parking_time: " << start_parking_time << endl
|
2023-05-16 15:31:53 +02:00
|
|
|
<< " netto_parking_time: " << netto_parking_time << endl
|
2023-05-11 09:58:15 +02:00
|
|
|
<< " minMin: " << minMin << endl
|
|
|
|
<< " maxMin: " << maxMin;
|
|
|
|
|
|
|
|
|
2023-05-16 15:31:53 +02:00
|
|
|
if (netto_parking_time < 0) {
|
2023-05-10 16:16:24 +02:00
|
|
|
calcState.setDesc(QString("end=%1, start=%2")
|
2023-05-15 14:05:55 +02:00
|
|
|
.arg(end_parking_time.toString(Qt::ISODate),
|
|
|
|
start_parking_time.toString(Qt::ISODate)));
|
2023-05-10 16:16:24 +02:00
|
|
|
return calcState.set(CalcState::State::NEGATIVE_PARING_TIME);
|
|
|
|
}
|
2023-05-16 15:31:53 +02:00
|
|
|
if (netto_parking_time > maxMin) {
|
|
|
|
calcState.setDesc(QString("duration=%1, maxMin=%2").arg(netto_parking_time).arg(maxMin));
|
2023-05-10 16:16:24 +02:00
|
|
|
return calcState.set(CalcState::State::ABOVE_MAX_PARKING_TIME);
|
|
|
|
}
|
2023-05-16 15:31:53 +02:00
|
|
|
if (netto_parking_time < minMin) {
|
|
|
|
calcState.setDesc(QString("duration=%1, minMin=%2").arg(netto_parking_time).arg(minMin));
|
2023-05-10 16:16:24 +02:00
|
|
|
return calcState.set(CalcState::State::BELOW_MIN_PARKING_TIME);
|
|
|
|
}
|
2023-05-16 15:31:53 +02:00
|
|
|
if (netto_parking_time == 0) {
|
2023-05-10 16:16:24 +02:00
|
|
|
memset(price, 0x00, sizeof(*price));
|
|
|
|
return calcState.set(CalcState::State::SUCCESS);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (start_parking_time.isValid()) {
|
|
|
|
double cost = calculator.GetCostFromDuration(
|
2023-11-22 16:27:41 +01:00
|
|
|
tariff,
|
|
|
|
tariff->getPaymentOptions().pop_payment_method_id,
|
2023-05-16 15:31:53 +02:00
|
|
|
start_parking_time, // starting time
|
|
|
|
end_parking_time, // return value: end time
|
|
|
|
netto_parking_time, // minutes, netto
|
|
|
|
false, true);
|
2023-11-22 16:27:41 +01:00
|
|
|
double minCost = tariff->getPaymentOptions().pop_min_price;
|
2023-05-10 16:16:24 +02:00
|
|
|
if (cost < minCost) {
|
|
|
|
calcState.setDesc(QString("minCost=%1, cost=%2").arg(minCost, cost));
|
|
|
|
return calcState.set(CalcState::State::BELOW_MIN_PARKING_PRICE);
|
|
|
|
}
|
2023-05-11 09:58:15 +02:00
|
|
|
|
|
|
|
// DEBUG
|
|
|
|
qCritical() << " -> calculated cost (price->netto) = " << cost;
|
|
|
|
|
2023-05-10 16:16:24 +02:00
|
|
|
price->units = cost;
|
|
|
|
price->netto = cost;
|
|
|
|
} else {
|
|
|
|
return calcState.set(CalcState::State::INVALID_START_DATE);
|
|
|
|
}
|
|
|
|
|
|
|
|
return calcState.set(CalcState::State::SUCCESS);
|
|
|
|
}
|
|
|
|
|
2023-05-09 11:40:14 +02:00
|
|
|
CalcState CALCULATE_LIBRARY_API compute_duration_for_parking_ticket(
|
2023-05-15 14:05:55 +02:00
|
|
|
parking_tariff_t *tariff,
|
|
|
|
time_t start_parking_time,
|
|
|
|
double price,
|
|
|
|
QString &duration) {
|
2023-05-09 11:40:14 +02:00
|
|
|
CalcState calcState;
|
|
|
|
QDate const d(1970, 1, 1);
|
|
|
|
QTime const t(0, 0, 0);
|
|
|
|
QDateTime start(d, t, Qt::UTC);
|
|
|
|
start = start.toLocalTime().addSecs(start_parking_time * 60);
|
|
|
|
if (start.isValid()) {
|
|
|
|
QString cs = start.toString(Qt::ISODate);
|
2023-05-11 09:58:15 +02:00
|
|
|
|
|
|
|
// DEBUG
|
|
|
|
qCritical() << "compute_duration_for_parking_ticket(): ";
|
|
|
|
qCritical() << " start (cs): " << cs;
|
|
|
|
qCritical() << " price: " << price;
|
|
|
|
|
2023-11-22 16:27:41 +01:00
|
|
|
duration = calculator.GetDurationFromCost(tariff,
|
|
|
|
tariff->getPaymentOptions().pop_payment_method_id,
|
2023-05-09 11:40:14 +02:00
|
|
|
cs.toLocal8Bit().constData(),
|
|
|
|
price, false, true).c_str();
|
2023-05-12 14:10:16 +02:00
|
|
|
QDateTime d = QDateTime::fromString(duration, Qt::ISODate);
|
2023-05-10 16:16:24 +02:00
|
|
|
if (!d.isValid()) {
|
|
|
|
calcState.setDesc(QString("ticketEndTime=%1").arg(duration));
|
|
|
|
return calcState.set(CalcState::State::WRONG_ISO_TIME_FORMAT);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return calcState.set(CalcState::State::INVALID_START_DATE);
|
|
|
|
}
|
|
|
|
|
|
|
|
return calcState.set(CalcState::State::SUCCESS);
|
|
|
|
}
|
|
|
|
|
|
|
|
CalcState CALCULATE_LIBRARY_API compute_duration_for_parking_ticket(
|
2023-05-15 14:05:55 +02:00
|
|
|
parking_tariff_t *tariff,
|
|
|
|
QDateTime const &start_parking_time,
|
|
|
|
double price,
|
2023-05-16 11:07:21 +02:00
|
|
|
QDateTime &ticketEndTime)
|
|
|
|
{
|
2023-05-10 16:16:24 +02:00
|
|
|
CalcState calcState;
|
|
|
|
if (start_parking_time.isValid()) {
|
|
|
|
QString cs = start_parking_time.toString(Qt::ISODate);
|
|
|
|
QString endTime = calculator.GetDurationFromCost(
|
2023-11-22 16:27:41 +01:00
|
|
|
tariff,
|
|
|
|
tariff->getPaymentOptions().pop_payment_method_id,
|
2023-05-15 14:05:55 +02:00
|
|
|
cs.toLocal8Bit().constData(),
|
|
|
|
price, false, true).c_str();
|
2023-05-11 09:59:37 +02:00
|
|
|
ticketEndTime = QDateTime::fromString(endTime,Qt::ISODate);
|
2023-05-11 09:58:15 +02:00
|
|
|
|
|
|
|
// DEBUG
|
|
|
|
qCritical() << "compute_duration_for_parking_ticket(): ";
|
|
|
|
qCritical() << " endTime: " << endTime;
|
|
|
|
qCritical() << " ticketEndTime: " << ticketEndTime;
|
|
|
|
|
2023-05-10 16:16:24 +02:00
|
|
|
if (!ticketEndTime.isValid()) {
|
|
|
|
calcState.setDesc(QString("ticketEndTime=%1").arg(endTime));
|
|
|
|
return calcState.set(CalcState::State::WRONG_ISO_TIME_FORMAT);
|
|
|
|
}
|
2023-05-09 11:40:14 +02:00
|
|
|
} else {
|
|
|
|
return calcState.set(CalcState::State::INVALID_START_DATE);
|
2023-05-08 12:34:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return calcState.set(CalcState::State::SUCCESS);
|
2023-04-24 15:31:46 +02:00
|
|
|
}
|
2023-05-15 14:05:55 +02:00
|
|
|
|
2023-05-16 11:07:21 +02:00
|
|
|
CalcState CALCULATE_LIBRARY_API compute_duration_for_daily_ticket(parking_tariff_t *tariff, QDateTime const &start_parking_time, QDateTime &ticketEndTime)
|
2023-05-15 14:05:55 +02:00
|
|
|
{
|
|
|
|
CalcState calcState;
|
2023-05-16 11:07:21 +02:00
|
|
|
if (start_parking_time.isValid()) {
|
|
|
|
|
2023-05-16 16:43:45 +02:00
|
|
|
ticketEndTime = calculator.GetDailyTicketDuration(tariff,
|
|
|
|
start_parking_time,
|
2023-11-22 16:27:41 +01:00
|
|
|
tariff->getPaymentOptions().pop_payment_method_id,
|
2023-05-16 11:07:21 +02:00
|
|
|
false); // carry over
|
|
|
|
|
|
|
|
// DEBUG
|
|
|
|
qCritical() << "compute_duration_for_daily_ticket(): ";
|
|
|
|
qCritical() << " ticketEndTime: " << ticketEndTime;
|
|
|
|
|
|
|
|
if (!ticketEndTime.isValid()) {
|
2023-05-16 16:43:45 +02:00
|
|
|
calcState.setDesc(QString("ticketEndTime=%1").arg(ticketEndTime.toString(Qt::ISODate)));
|
2023-05-16 11:07:21 +02:00
|
|
|
return calcState.set(CalcState::State::WRONG_ISO_TIME_FORMAT);
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
return calcState.set(CalcState::State::INVALID_START_DATE);
|
|
|
|
}
|
2023-05-15 14:05:55 +02:00
|
|
|
|
|
|
|
return calcState.set(CalcState::State::SUCCESS);
|
|
|
|
}
|
|
|
|
|