Compare commits
12 Commits
schoenau_2
...
b84970fd12
Author | SHA1 | Date | |
---|---|---|---|
b84970fd12 | |||
7ac033720e | |||
c749de2bf9 | |||
c4cec1c04b | |||
a53cb37291 | |||
b1a98a20c5 | |||
d765997ca5 | |||
d2664fdb95 | |||
36478e111e | |||
8f2609c4ae
|
|||
453ca266a5
|
|||
ccbf07a654
|
@@ -8,6 +8,7 @@ using namespace std;
|
|||||||
class Calculator
|
class Calculator
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets duration in seconds from cost
|
/// Gets duration in seconds from cost
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -27,7 +28,7 @@ public:
|
|||||||
/// <param name="end_datetime">Date/time of park end to be conducted in ISO8601 format (e.g. 2022-12-25T08:00:00Z) </param>
|
/// <param name="end_datetime">Date/time of park end to be conducted in ISO8601 format (e.g. 2022-12-25T08:00:00Z) </param>
|
||||||
/// <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, const QDateTime start_datetime, QDateTime & end_datetime, double durationMin, bool nextDay = false, bool prepaid = false);
|
double GetCostFromDuration(Configuration* cfg, uint8_t vehicle_type, const QDateTime start_datetime, QDateTime & end_datetime, int durationMin, bool nextDay = false, bool prepaid = false);
|
||||||
|
|
||||||
// Daily ticket
|
// Daily ticket
|
||||||
QDateTime GetDailyTicketDuration(Configuration* cfg, const QDateTime start_datetime, uint8_t payment_option, bool carry_over);
|
QDateTime GetDailyTicketDuration(Configuration* cfg, const QDateTime start_datetime, uint8_t payment_option, bool carry_over);
|
||||||
@@ -44,6 +45,21 @@ private:
|
|||||||
uint32_t GetCostFromDuration(Configuration *cfg, QDateTime const &start, quint64 durationMinutes) const;
|
uint32_t GetCostFromDuration(Configuration *cfg, QDateTime const &start, quint64 durationMinutes) const;
|
||||||
uint32_t GetCostFromDuration(Configuration *cfg, QDateTime const &start, QDateTime const &end) const;
|
uint32_t GetCostFromDuration(Configuration *cfg, QDateTime const &start, QDateTime const &end) const;
|
||||||
|
|
||||||
|
PaymentMethod getPaymentMethodId(Configuration const *cfg);
|
||||||
|
int getMinimalParkingTime(Configuration const *cfg, PaymentMethod methodId);
|
||||||
|
int getMaximalParkingTime(Configuration const *cfg, PaymentMethod methodId);
|
||||||
|
|
||||||
|
uint32_t private_GetCostFromDuration(Configuration const* cfg,
|
||||||
|
QDateTime const &start,
|
||||||
|
QDateTime &end,
|
||||||
|
int durationMinutes,
|
||||||
|
bool nextDay = false,
|
||||||
|
bool prepaid = false,
|
||||||
|
bool overtime = false);
|
||||||
|
|
||||||
|
bool checkDurationMinutes(bool overTime,
|
||||||
|
int minParkingTime, int maxParkingTime,
|
||||||
|
int durationMinutes);
|
||||||
|
|
||||||
//
|
//
|
||||||
uint32_t GetPriceForTimeStep(Configuration *cfg, int timeStep) const;
|
uint32_t GetPriceForTimeStep(Configuration *cfg, int timeStep) const;
|
||||||
|
@@ -1,10 +1,12 @@
|
|||||||
#pragma once
|
#ifndef PAYMENT_METHOD_H_INCLUDED
|
||||||
|
#define PAYMENT_METHOD_H_INCLUDED
|
||||||
enum PaymentMethod
|
|
||||||
{
|
enum PaymentMethod {
|
||||||
Undefined = 0xFF,
|
Undefined = 0xFF,
|
||||||
Progressive = 0x01,
|
Progressive = 0x01,
|
||||||
Degressive = 0x02,
|
Degressive = 0x02,
|
||||||
Linear = 0x03,
|
Linear = 0x03,
|
||||||
Steps = 0x04
|
Steps = 0x04
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#endif // PAYMENT_METHOD_H_INCLUDED
|
||||||
|
@@ -1,17 +1,28 @@
|
|||||||
// #pragma once
|
|
||||||
#ifndef TARIFF_TIME_RANGE_H_INCLUDED
|
#ifndef TARIFF_TIME_RANGE_H_INCLUDED
|
||||||
#define TARIFF_TIME_RANGE_H_INCLUDED
|
#define TARIFF_TIME_RANGE_H_INCLUDED
|
||||||
|
|
||||||
#include <ctime>
|
#include <QTime>
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Time range definition
|
/// Time range definition
|
||||||
/// </summary>
|
/// </summary>
|
||||||
class TariffTimeRange {
|
class TariffTimeRange {
|
||||||
|
QTime m_time_from;
|
||||||
|
QTime m_time_until;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
time_t time_from;
|
|
||||||
time_t time_to;
|
TariffTimeRange()
|
||||||
TariffTimeRange() : time_from(0), time_to(0) {}
|
: m_time_from(QTime())
|
||||||
|
, m_time_until(QTime()) {}
|
||||||
|
|
||||||
|
void setTimeRange(QTime const& from, QTime const &until) {
|
||||||
|
m_time_from = from;
|
||||||
|
m_time_until = until;
|
||||||
|
}
|
||||||
|
|
||||||
|
QTime const &getTimeFrom() const { return m_time_from; }
|
||||||
|
QTime const &getTimeUntil() const { return m_time_until; }
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // TARIFF_TIME_RANGE_H_INCLUDED
|
#endif // TARIFF_TIME_RANGE_H_INCLUDED
|
||||||
|
64
library/include/mobilisis/ticket.h
Normal file
64
library/include/mobilisis/ticket.h
Normal file
@@ -0,0 +1,64 @@
|
|||||||
|
#ifndef TICKET_H_INCLUDED
|
||||||
|
#define TICKET_H_INCLUDED
|
||||||
|
|
||||||
|
#include <tuple>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
|
#include <QDebug>
|
||||||
|
#include <QDebugStateSaver>
|
||||||
|
#include <QStringList>
|
||||||
|
#include <QDateTime>
|
||||||
|
|
||||||
|
#define NOT_INITIALIZED (0)
|
||||||
|
#define VALID (1)
|
||||||
|
#define INVALID_FROM_DATETIME (2)
|
||||||
|
#define INVALID_UNTIL_DATETIME (3)
|
||||||
|
#define STATUS_END (4)
|
||||||
|
|
||||||
|
class Ticket {
|
||||||
|
enum {CODE=0, CODE_STR=1, CODE_DESC=3};
|
||||||
|
public:
|
||||||
|
using Status = std::tuple<int, char const*, char const*>;
|
||||||
|
|
||||||
|
explicit Ticket();
|
||||||
|
|
||||||
|
explicit operator bool() { return std::get<CODE>(m_status) == VALID; }
|
||||||
|
operator QString();
|
||||||
|
|
||||||
|
Status getStatus() const;
|
||||||
|
QDateTime getValidFrom() const;
|
||||||
|
QDateTime getValidUntil() const;
|
||||||
|
uint32_t getPrice() const;
|
||||||
|
|
||||||
|
Status setStatus(Status status);
|
||||||
|
void setValidFrom(QDateTime const &validFrom);
|
||||||
|
void setValidUntil(QDateTime const &validUnil);
|
||||||
|
void setPrice(uint32_t price);
|
||||||
|
|
||||||
|
private:
|
||||||
|
Status m_status;
|
||||||
|
|
||||||
|
QDateTime m_validFrom;
|
||||||
|
QDateTime m_validUntil;
|
||||||
|
|
||||||
|
int m_durationMinutesNetto;
|
||||||
|
int m_durationMinutesBrutto;
|
||||||
|
|
||||||
|
uint32_t m_price;
|
||||||
|
|
||||||
|
static constexpr const Status s[STATUS_END] = {
|
||||||
|
{NOT_INITIALIZED , "NOT_INITIALIZED" , "Ticket not initialized" },
|
||||||
|
{VALID , "VALID" , "Ticket is valid" },
|
||||||
|
{INVALID_FROM_DATETIME , "INVALID_FROM_DATETIME" , "Ticket has invalid start datetime"},
|
||||||
|
{INVALID_UNTIL_DATETIME, "INVALID_UNTIL_DATETIME", "Ticket has invalid end datetime" }
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
QDebug operator<<(QDebug debug, Ticket::Status const &status) {
|
||||||
|
QDebugStateSaver saver(debug);
|
||||||
|
debug << "Ticket-Status: " << std::get<1>(status)
|
||||||
|
<< "(" << std::get<2>(status) << ")";
|
||||||
|
return debug;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif // TICKET_H_INCLUDED
|
@@ -9,46 +9,46 @@
|
|||||||
#include "configuration.h"
|
#include "configuration.h"
|
||||||
#include "time_range.h"
|
#include "time_range.h"
|
||||||
|
|
||||||
|
#include <QDateTime>
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
class Utilities {
|
namespace Utilities {
|
||||||
public:
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get day of week from current date (Zeller's Algorithm), starting day is Sunday
|
/// Get day of week from current date (Zeller's Algorithm), starting day is Sunday
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="date"></param>
|
/// <param name="date"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
static DayOfWeek GetDayOfWeek(struct tm* tm);
|
DayOfWeek GetDayOfWeek(struct tm* tm);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Date and time parse helper function
|
/// Date and time parse helper function
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <returns>Returns time (tm) structure</returns>
|
/// <returns>Returns time (tm) structure</returns>
|
||||||
static struct tm DateTimeToStructTm(const char* dateTimeStr);
|
struct tm DateTimeToStructTm(const char* dateTimeStr);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Date parse helper function
|
/// Date parse helper function
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <returns>Returns time (tm) structure</returns>
|
/// <returns>Returns time (tm) structure</returns>
|
||||||
static struct tm DateToStructTm(const char* dateStr);
|
struct tm DateToStructTm(const char* dateStr);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Time parse helper function
|
/// Time parse helper function
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <returns>Returns time (tm) structure</returns>
|
/// <returns>Returns time (tm) structure</returns>
|
||||||
static struct tm TimeToStructTm(const char* timeStr, int year, int mon, int mday, int wday);
|
struct tm TimeToStructTm(const char* timeStr, int year, int mon, int mday, int wday);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get current local time
|
/// Get current local time
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <returns>Returns time_t structure</returns>
|
/// <returns>Returns time_t structure</returns>
|
||||||
static time_t GetCurrentLocalTime();
|
time_t GetCurrentLocalTime();
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Zeller's algorithm for determining day of week
|
/// Zeller's algorithm for determining day of week
|
||||||
/// </summary>
|
/// </summary>
|
||||||
static int ZellersAlgorithm(int day, int month, int year);
|
int ZellersAlgorithm(int day, int month, int year);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Checks if current datetime is in range between start and end month of parking worktime
|
/// Checks if current datetime is in range between start and end month of parking worktime
|
||||||
@@ -56,18 +56,23 @@ public:
|
|||||||
/// <param name="tariff_cfg"></param>
|
/// <param name="tariff_cfg"></param>
|
||||||
/// <param name="currentDateTime"></param>
|
/// <param name="currentDateTime"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
static bool IsYearPeriodActive(Configuration* cfg, struct tm* currentDateTime);
|
bool IsYearPeriodActive(Configuration* cfg, struct tm* currentDateTime);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Check permissions
|
/// Check permissions
|
||||||
/// </summary>
|
/// </summary>
|
||||||
static bool CheckSpecialDay(Configuration* cfg, const char* currentDateTimeStr, int* specialDayId, double* specialDayPrice);
|
bool CheckSpecialDay(Configuration* cfg, const char* currentDateTimeStr, int* specialDayId, double* specialDayPrice);
|
||||||
|
bool CheckSpecialDay(Configuration const *cfg,
|
||||||
|
QDateTime const ¤tDateTimeS,
|
||||||
|
int* specialDayId, uint32_t *specialDayPrice);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Calculates price per unit
|
/// Calculates price per unit
|
||||||
/// </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);
|
double CalculatePricePerUnit(double pra_price, double durationUnit = -1);
|
||||||
|
|
||||||
};
|
QTime SpecialDaysWorkTimeFrom(Configuration const *cfg, int specialDayId);
|
||||||
|
QTime SpecialDaysWorkTimeUntil(Configuration const *cfg, int specialDayId);
|
||||||
|
}
|
||||||
|
@@ -25,7 +25,8 @@ SOURCES += \
|
|||||||
src/utilities.cpp \
|
src/utilities.cpp \
|
||||||
src/configuration.cpp \
|
src/configuration.cpp \
|
||||||
src/tariff_log.cpp \
|
src/tariff_log.cpp \
|
||||||
src/calculate_price.cpp
|
src/calculate_price.cpp \
|
||||||
|
src/ticket.cpp
|
||||||
|
|
||||||
HEADERS += \
|
HEADERS += \
|
||||||
include/mobilisis/calculator_functions.h \
|
include/mobilisis/calculator_functions.h \
|
||||||
@@ -66,7 +67,8 @@ HEADERS += \
|
|||||||
include/mobilisis/tariff_payment_rate.h \
|
include/mobilisis/tariff_payment_rate.h \
|
||||||
include/mobilisis/tariff_log.h \
|
include/mobilisis/tariff_log.h \
|
||||||
include/mobilisis/calculate_price.h \
|
include/mobilisis/calculate_price.h \
|
||||||
include/mobilisis/atb_project.h
|
include/mobilisis/atb_project.h \
|
||||||
|
include/mobilisis/ticket.h
|
||||||
|
|
||||||
OTHER_FILES += src/main.cpp
|
OTHER_FILES += src/main.cpp
|
||||||
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
67
library/src/ticket.cpp
Normal file
67
library/src/ticket.cpp
Normal file
@@ -0,0 +1,67 @@
|
|||||||
|
#include "ticket.h"
|
||||||
|
|
||||||
|
Ticket::Ticket()
|
||||||
|
: m_status(Ticket::s[NOT_INITIALIZED])
|
||||||
|
, m_validFrom()
|
||||||
|
, m_validUntil()
|
||||||
|
, m_durationMinutesNetto(0)
|
||||||
|
, m_durationMinutesBrutto(0)
|
||||||
|
, m_price() {
|
||||||
|
|
||||||
|
qDebug() << *this;
|
||||||
|
qDebug() << m_status;
|
||||||
|
}
|
||||||
|
|
||||||
|
Ticket::Status Ticket::setStatus(Status status) {
|
||||||
|
Status old = m_status;
|
||||||
|
m_status = status;
|
||||||
|
return old;
|
||||||
|
}
|
||||||
|
|
||||||
|
Ticket::Status Ticket::getStatus() const {
|
||||||
|
return m_status;
|
||||||
|
}
|
||||||
|
|
||||||
|
void Ticket::setValidFrom(QDateTime const &validFrom) {
|
||||||
|
m_validFrom = validFrom;
|
||||||
|
}
|
||||||
|
|
||||||
|
void Ticket::setValidUntil(QDateTime const &validUntil) {
|
||||||
|
m_validUntil = validUntil;
|
||||||
|
}
|
||||||
|
|
||||||
|
QDateTime Ticket::getValidFrom() const {
|
||||||
|
if (std::get<CODE>(m_status) == VALID) {
|
||||||
|
return m_validFrom;
|
||||||
|
}
|
||||||
|
return QDateTime();
|
||||||
|
}
|
||||||
|
|
||||||
|
QDateTime Ticket::getValidUntil() const {
|
||||||
|
if (std::get<CODE>(m_status) == VALID) {
|
||||||
|
return m_validFrom;
|
||||||
|
}
|
||||||
|
return QDateTime();
|
||||||
|
}
|
||||||
|
|
||||||
|
uint32_t Ticket::getPrice() const {
|
||||||
|
return m_price;
|
||||||
|
}
|
||||||
|
|
||||||
|
void Ticket::setPrice(uint32_t price) {
|
||||||
|
m_price = price;
|
||||||
|
}
|
||||||
|
|
||||||
|
Ticket::operator QString() {
|
||||||
|
QStringList status;
|
||||||
|
status << QString("Status .............. : %1 (%2)")
|
||||||
|
.arg(std::get<0>(m_status))
|
||||||
|
.arg(std::get<2>(m_status));
|
||||||
|
status << QString("Valid from ......... : %1").arg(m_validFrom.toString(Qt::ISODate));
|
||||||
|
status << QString("Valid until ........ : %1").arg(m_validUntil.toString(Qt::ISODate));
|
||||||
|
status << QString("Duration (netto) ... : %1").arg(m_durationMinutesNetto);
|
||||||
|
status << QString("Duration (brutto)... : %1").arg(m_durationMinutesBrutto);
|
||||||
|
status << QString("Price ......... : %1").arg(m_price);
|
||||||
|
|
||||||
|
return status.join('\n');;
|
||||||
|
}
|
@@ -1,6 +1,8 @@
|
|||||||
#include "utilities.h"
|
#include "utilities.h"
|
||||||
#include "tariff_log.h"
|
#include "tariff_log.h"
|
||||||
|
|
||||||
|
#include <QDebug>
|
||||||
|
|
||||||
static int protection_counter = 0;
|
static int protection_counter = 0;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -271,3 +273,47 @@ bool Utilities::CheckSpecialDay(Configuration* cfg, const char* currentDateTimeS
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool Utilities::CheckSpecialDay(Configuration const *cfg,
|
||||||
|
QDateTime const ¤tDateTime,
|
||||||
|
int* specialDayId,
|
||||||
|
uint32_t *specialDayPrice) {
|
||||||
|
*specialDayId = -1;
|
||||||
|
*specialDayPrice = 0;
|
||||||
|
|
||||||
|
std::multimap<int, ATBSpecialDays>::const_iterator spec_days_itr;
|
||||||
|
|
||||||
|
for (spec_days_itr = cfg->SpecialDays.cbegin(); spec_days_itr != cfg->SpecialDays.cend(); ++spec_days_itr) {
|
||||||
|
int repeat_every_year = spec_days_itr->second.ped_year;
|
||||||
|
QDate start = QDate::fromString(spec_days_itr->second.ped_date_start.c_str(), Qt::ISODate);
|
||||||
|
QDate end = QDate::fromString(spec_days_itr->second.ped_date_end.c_str(), Qt::ISODate);
|
||||||
|
if (start.isValid() && end.isValid()) {
|
||||||
|
if ((currentDateTime.date().month() >= start.month()) &&
|
||||||
|
(currentDateTime.date().month() <= end.month())) {
|
||||||
|
if ((currentDateTime.date().day() >= start.day()) &&
|
||||||
|
(currentDateTime.date().day() <= end.day())) {
|
||||||
|
if (repeat_every_year <= 0) {
|
||||||
|
if ((currentDateTime.date().year() != start.year()) ||
|
||||||
|
(currentDateTime.date().year() != end.year())) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
qDebug() << "CheckSpecialDay() => SPECIAL DAY";
|
||||||
|
*specialDayId = spec_days_itr->second.ped_id;
|
||||||
|
*specialDayPrice = cfg->SpecialDaysWorktime.find(*specialDayId)->second.pedwt_price;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
QTime Utilities::SpecialDaysWorkTimeFrom(Configuration const *cfg, int specialDayId) {
|
||||||
|
return QTime::fromString(cfg->SpecialDaysWorktime.find(specialDayId)->second.pedwt_time_from.c_str(), Qt::ISODate);
|
||||||
|
}
|
||||||
|
|
||||||
|
QTime Utilities::SpecialDaysWorkTimeUntil(Configuration const *cfg, int specialDayId) {
|
||||||
|
return QTime::fromString(cfg->SpecialDaysWorktime.find(specialDayId)->second.pedwt_time_to.c_str(), Qt::ISODate);
|
||||||
|
}
|
||||||
|
@@ -36,7 +36,7 @@ extern "C" char* strptime(const char* s,
|
|||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
|
|
||||||
std::ifstream input(QDir::homePath().append("/tariff01.json").toStdString());
|
std::ifstream input("/tmp/tariff_korneuburg.json");
|
||||||
std::stringstream sstr;
|
std::stringstream sstr;
|
||||||
while(input >> sstr.rdbuf());
|
while(input >> sstr.rdbuf());
|
||||||
std::string json(sstr.str());
|
std::string json(sstr.str());
|
||||||
@@ -47,14 +47,12 @@ int main() {
|
|||||||
bool isParsed = cfg.ParseJson(&cfg, json.c_str());
|
bool isParsed = cfg.ParseJson(&cfg, json.c_str());
|
||||||
cout << endl;
|
cout << endl;
|
||||||
|
|
||||||
char const *startDate = "";
|
|
||||||
|
|
||||||
if (isParsed)
|
if (isParsed)
|
||||||
{
|
{
|
||||||
startDate = "2023-05-10T13:52:18.665Z";
|
QDateTime start = QDateTime::fromString("2023-05-11T08:00:00",Qt::ISODate);
|
||||||
std::string duration = calculator.GetDurationFromCost(&cfg, 3, (char *)startDate, 33, false, true);
|
QDateTime end = start.addSecs(120);
|
||||||
cout << "---> startDate " << startDate << " _price_ = " << 33
|
calculator.GetCostFromDuration(&cfg, 3, start, end, 60);
|
||||||
<< " Total duration is: " << duration << endl;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
@@ -69,6 +67,7 @@ int main() {
|
|||||||
if (init_tariff(&tariff, "/etc/psa_tariff/")) {
|
if (init_tariff(&tariff, "/etc/psa_tariff/")) {
|
||||||
struct price_t price;
|
struct price_t price;
|
||||||
memset(&price, 0x00, sizeof(price));
|
memset(&price, 0x00, sizeof(price));
|
||||||
|
|
||||||
QDateTime start = QDateTime::fromString("2023-05-11T07:50:00",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 + 615;
|
time_t end_parking_time = start_parking_time + 615;
|
||||||
|
160
test-files/tariff_korneuburg.json
Normal file
160
test-files/tariff_korneuburg.json
Normal file
@@ -0,0 +1,160 @@
|
|||||||
|
{
|
||||||
|
"Project" : "Korneuburg",
|
||||||
|
"Version" : "1.0.0",
|
||||||
|
"Info" : "",
|
||||||
|
"Currency": [
|
||||||
|
{
|
||||||
|
"pcu_id": 2,
|
||||||
|
"pcu_sign": "€",
|
||||||
|
"pcu_major": "EUR",
|
||||||
|
"pcu_minor": "",
|
||||||
|
"pcu_active": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"PaymentMethod": [
|
||||||
|
{
|
||||||
|
"pme_id": 1,
|
||||||
|
"pme_label": "progressive"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"pme_id": 2,
|
||||||
|
"pme_label": "degressive"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"pme_id": 3,
|
||||||
|
"pme_label": "linear"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"pme_id": 4,
|
||||||
|
"pme_label": "steps"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"PaymentOption": [
|
||||||
|
{
|
||||||
|
"pop_id": 1049,
|
||||||
|
"pop_label": "Zone 1",
|
||||||
|
"pop_payment_method_id": 3,
|
||||||
|
"pop_day_end_time": "00:00:00",
|
||||||
|
"pop_day_night_end_time": "00:00:00",
|
||||||
|
"pop_price_night": 0,
|
||||||
|
"pop_min_time": 30,
|
||||||
|
"pop_max_time": 180,
|
||||||
|
"pop_min_price": 60,
|
||||||
|
"pop_carry_over": 0,
|
||||||
|
"pop_daily_card_price": 0
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"PaymentRate": [
|
||||||
|
{
|
||||||
|
"pra_payment_option_id": 1049,
|
||||||
|
"pra_payment_unit_id": 1,
|
||||||
|
"pra_price": 10
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"Duration": [
|
||||||
|
{
|
||||||
|
"pun_id": 1,
|
||||||
|
"pun_label": "5 min",
|
||||||
|
"pun_duration": 5
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"pun_id": 3,
|
||||||
|
"pun_label": "15 min",
|
||||||
|
"pun_duration": 15
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"pun_id": 4,
|
||||||
|
"pun_label": "1 min",
|
||||||
|
"pun_duration": 1
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"WeekDaysWorktime": [
|
||||||
|
{
|
||||||
|
"pwd_id": 621,
|
||||||
|
"pwd_period_week_day_id": 36,
|
||||||
|
"pwd_period_day_in_week_id": 1,
|
||||||
|
"pwd_time_from": "08:00:00",
|
||||||
|
"pwd_time_to": "12:00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"pwd_id": 621,
|
||||||
|
"pwd_period_week_day_id": 36,
|
||||||
|
"pwd_period_day_in_week_id": 1,
|
||||||
|
"pwd_time_from": "14:00:00",
|
||||||
|
"pwd_time_to": "18:00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"pwd_id": 622,
|
||||||
|
"pwd_period_week_day_id": 36,
|
||||||
|
"pwd_period_day_in_week_id": 2,
|
||||||
|
"pwd_time_from": "08:00:00",
|
||||||
|
"pwd_time_to": "12:00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"pwd_id": 622,
|
||||||
|
"pwd_period_week_day_id": 36,
|
||||||
|
"pwd_period_day_in_week_id": 2,
|
||||||
|
"pwd_time_from": "14:00:00",
|
||||||
|
"pwd_time_to": "18:00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"pwd_id": 623,
|
||||||
|
"pwd_period_week_day_id": 36,
|
||||||
|
"pwd_period_day_in_week_id": 3,
|
||||||
|
"pwd_time_from": "08:00:00",
|
||||||
|
"pwd_time_to": "12:00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"pwd_id": 623,
|
||||||
|
"pwd_period_week_day_id": 36,
|
||||||
|
"pwd_period_day_in_week_id": 3,
|
||||||
|
"pwd_time_from": "14:00:00",
|
||||||
|
"pwd_time_to": "18:00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"pwd_id": 624,
|
||||||
|
"pwd_period_week_day_id": 36,
|
||||||
|
"pwd_period_day_in_week_id": 4,
|
||||||
|
"pwd_time_from": "08:00:00",
|
||||||
|
"pwd_time_to": "12:00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"pwd_id": 624,
|
||||||
|
"pwd_period_week_day_id": 36,
|
||||||
|
"pwd_period_day_in_week_id": 4,
|
||||||
|
"pwd_time_from": "14:00:00",
|
||||||
|
"pwd_time_to": "18:00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"pwd_id": 625,
|
||||||
|
"pwd_period_week_day_id": 36,
|
||||||
|
"pwd_period_day_in_week_id": 5,
|
||||||
|
"pwd_time_from": "08:00:00",
|
||||||
|
"pwd_time_to": "12:00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"pwd_id": 625,
|
||||||
|
"pwd_period_week_day_id": 36,
|
||||||
|
"pwd_period_day_in_week_id": 5,
|
||||||
|
"pwd_time_from": "14:00:00",
|
||||||
|
"pwd_time_to": "18:00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"pwd_id": 626,
|
||||||
|
"pwd_period_week_day_id": 36,
|
||||||
|
"pwd_period_day_in_week_id": 6,
|
||||||
|
"pwd_time_from": "08:00:00",
|
||||||
|
"pwd_time_to": "12:00:00"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"PeriodYear": [
|
||||||
|
{
|
||||||
|
"pye_id": 8,
|
||||||
|
"pye_label": "Whole year",
|
||||||
|
"pye_start_month": 1,
|
||||||
|
"pye_start_day": 1,
|
||||||
|
"pye_end_month": 12,
|
||||||
|
"pye_end_day": 31
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
Reference in New Issue
Block a user