Compare commits
	
		
			21 Commits
		
	
	
		
			kleipeda-e
			...
			fuchs-expe
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| b05950fc37 | |||
| 1c6c9f934d | |||
| 9baaca1c80 | |||
| 18f2895250 | |||
| fc78eff0a4 | |||
| b303a59964 | |||
| 77ca6a4736 | |||
| 8b65bb3e2c | |||
| 82ca274c45 | |||
| 75c98c18ad | |||
| 21534ba153 | |||
| 8d9119ac83 | |||
| da7a3cf67b | |||
| 449fb163bd | |||
| 19032349ae | |||
| 2c2fd3845b | |||
| 5131892744 | |||
| 6d6615b81e | |||
| eafbfd60c3 | |||
| 41fc924a7c | |||
| cbcf8391b3 | 
@@ -1,83 +0,0 @@
 | 
				
			|||||||
#ifndef ATB_TIME_H_INCLUDED
 | 
					 | 
				
			||||||
#define ATB_TIME_H_INCLUDED
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#include <QDateTime>
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
class ATBTime {
 | 
					 | 
				
			||||||
    static QDateTime const m_end;
 | 
					 | 
				
			||||||
    mutable QDateTime m_time;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
public:
 | 
					 | 
				
			||||||
    explicit ATBTime();
 | 
					 | 
				
			||||||
    explicit ATBTime(int h, int m, int s = 0, int ms = 0);
 | 
					 | 
				
			||||||
    explicit ATBTime(QString const &time);
 | 
					 | 
				
			||||||
    explicit ATBTime(QTime const &time);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    explicit ATBTime(ATBTime const &atbTime) {
 | 
					 | 
				
			||||||
        m_time = atbTime.m_time;
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    ATBTime &operator=(ATBTime && atbTime) {
 | 
					 | 
				
			||||||
        m_time = std::move(atbTime.m_time);
 | 
					 | 
				
			||||||
        return *this;
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    ATBTime &operator=(ATBTime const &atbTime) {
 | 
					 | 
				
			||||||
        m_time = atbTime.m_time;
 | 
					 | 
				
			||||||
        return *this;
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    int hour() const { return m_time.time().hour(); }
 | 
					 | 
				
			||||||
    int minute() const { return m_time.time().minute(); }
 | 
					 | 
				
			||||||
    int second() const { return m_time.time().second(); }
 | 
					 | 
				
			||||||
    int msec() const { return m_time.time().msec(); }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    int secsTo(QString const &t) const {
 | 
					 | 
				
			||||||
        if (t == "24:00:00") {
 | 
					 | 
				
			||||||
            return m_time.secsTo(m_end);
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
        return m_time.time().secsTo(QTime::fromString(t, Qt::ISODate));
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    int msecsTo(QTime t) const { return m_time.time().msecsTo(t); }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    bool setHMS(int h, int m, int s, int ms = 0);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    bool isNull() const { return m_time.time().isNull(); }
 | 
					 | 
				
			||||||
    bool isValid() const { return m_time.time().isValid(); }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    QTime addMSecs(int ms) const;
 | 
					 | 
				
			||||||
    QTime addMSecs(int ms);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    QTime addSecs(int s) const;
 | 
					 | 
				
			||||||
    QTime addSecs(int s);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    int msecsSinceStartOfDay() const;
 | 
					 | 
				
			||||||
    QString toString(Qt::DateFormat format = Qt::TextDate) const;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    static bool isValid(int h, int m, int s, int ms = 0);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    static QTime currentTime() { return QDateTime::currentDateTime().time(); }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    static constexpr QTime fromMSecsSinceStartOfDay(int msecs);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    static QTime fromString(QString const &string, Qt::DateFormat format = Qt::TextDate);
 | 
					 | 
				
			||||||
    static QTime fromString(QString const &string, const QString &format);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    friend bool operator!=(const ATBTime &lhs, const ATBTime &rhs) noexcept;
 | 
					 | 
				
			||||||
    friend bool operator<(const ATBTime &lhs, const ATBTime &rhs) noexcept;
 | 
					 | 
				
			||||||
    friend bool operator<=(const ATBTime &lhs, const ATBTime &rhs) noexcept;
 | 
					 | 
				
			||||||
    friend bool operator>=(const ATBTime &lhs, const ATBTime &rhs) noexcept;
 | 
					 | 
				
			||||||
    friend bool operator<(const ATBTime &lhs, const ATBTime &rhs) noexcept;
 | 
					 | 
				
			||||||
    friend bool operator>(const ATBTime &lhs, const ATBTime &rhs) noexcept;
 | 
					 | 
				
			||||||
    friend bool operator==(const ATBTime &lhs, const ATBTime &rhs) noexcept;
 | 
					 | 
				
			||||||
    friend QDataStream &operator<<(QDataStream &out, ATBTime const &time);
 | 
					 | 
				
			||||||
    friend QDebug &operator<<(QDebug &out, ATBTime const &time);
 | 
					 | 
				
			||||||
    friend QDataStream &operator>>(QDataStream &in, ATBTime &time);
 | 
					 | 
				
			||||||
};
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#endif // ATB_TIME_H_INCLUDED
 | 
					 | 
				
			||||||
@@ -56,7 +56,6 @@ struct CALCULATE_LIBRARY_API CalcState {
 | 
				
			|||||||
    static QString const ABOVE_MAX_PARKING_PRICE;
 | 
					    static QString const ABOVE_MAX_PARKING_PRICE;
 | 
				
			||||||
    static QString const OVERPAID;
 | 
					    static QString const OVERPAID;
 | 
				
			||||||
    static QString const OUTSIDE_ALLOWED_PARKING_TIME;
 | 
					    static QString const OUTSIDE_ALLOWED_PARKING_TIME;
 | 
				
			||||||
    static QString const SUCCESS_MAXPRICE;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
    enum class State : uint8_t {
 | 
					    enum class State : uint8_t {
 | 
				
			||||||
        SUCCESS,
 | 
					        SUCCESS,
 | 
				
			||||||
@@ -72,8 +71,7 @@ struct CALCULATE_LIBRARY_API CalcState {
 | 
				
			|||||||
        BELOW_MIN_PARKING_PRICE,
 | 
					        BELOW_MIN_PARKING_PRICE,
 | 
				
			||||||
        ABOVE_MAX_PARKING_PRICE,
 | 
					        ABOVE_MAX_PARKING_PRICE,
 | 
				
			||||||
        OVERPAID,
 | 
					        OVERPAID,
 | 
				
			||||||
        OUTSIDE_ALLOWED_PARKING_TIME,
 | 
					        OUTSIDE_ALLOWED_PARKING_TIME
 | 
				
			||||||
        SUCCESS_MAXPRICE
 | 
					 | 
				
			||||||
    };
 | 
					    };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    State m_status;
 | 
					    State m_status;
 | 
				
			||||||
@@ -90,9 +88,9 @@ struct CALCULATE_LIBRARY_API CalcState {
 | 
				
			|||||||
        , m_desc(desc) {
 | 
					        , m_desc(desc) {
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    explicit CalcState(State state, QString desc,
 | 
					    explicit CalcState(State state, QString desc = "",
 | 
				
			||||||
                       QTime const &from,
 | 
					                       QTime const &from = QTime(),
 | 
				
			||||||
                       QTime const &until)
 | 
					                       QTime const &until = QTime())
 | 
				
			||||||
        : m_status(state)
 | 
					        : m_status(state)
 | 
				
			||||||
        , m_desc(desc)
 | 
					        , m_desc(desc)
 | 
				
			||||||
        , m_allowedTimeRange(from, until) {
 | 
					        , m_allowedTimeRange(from, until) {
 | 
				
			||||||
@@ -108,9 +106,6 @@ struct CALCULATE_LIBRARY_API CalcState {
 | 
				
			|||||||
        case State::SUCCESS:
 | 
					        case State::SUCCESS:
 | 
				
			||||||
            s = CalcState::SUCCESS;
 | 
					            s = CalcState::SUCCESS;
 | 
				
			||||||
            break;
 | 
					            break;
 | 
				
			||||||
        case State::SUCCESS_MAXPRICE:
 | 
					 | 
				
			||||||
            s = CalcState::SUCCESS_MAXPRICE;
 | 
					 | 
				
			||||||
            break;
 | 
					 | 
				
			||||||
        case State::ERROR_PARSING_ZONE_NR:
 | 
					        case State::ERROR_PARSING_ZONE_NR:
 | 
				
			||||||
            s = CalcState::ERROR_PARSING_ZONE_NR;
 | 
					            s = CalcState::ERROR_PARSING_ZONE_NR;
 | 
				
			||||||
            break;
 | 
					            break;
 | 
				
			||||||
@@ -163,9 +158,6 @@ struct CALCULATE_LIBRARY_API CalcState {
 | 
				
			|||||||
        case State::SUCCESS:
 | 
					        case State::SUCCESS:
 | 
				
			||||||
            s = CalcState::SUCCESS;
 | 
					            s = CalcState::SUCCESS;
 | 
				
			||||||
            break;
 | 
					            break;
 | 
				
			||||||
        case State::SUCCESS_MAXPRICE:
 | 
					 | 
				
			||||||
            s = CalcState::SUCCESS_MAXPRICE;
 | 
					 | 
				
			||||||
            break;
 | 
					 | 
				
			||||||
        case State::ERROR_PARSING_ZONE_NR:
 | 
					        case State::ERROR_PARSING_ZONE_NR:
 | 
				
			||||||
            s = CalcState::ERROR_PARSING_ZONE_NR;
 | 
					            s = CalcState::ERROR_PARSING_ZONE_NR;
 | 
				
			||||||
            break;
 | 
					            break;
 | 
				
			||||||
@@ -215,9 +207,6 @@ struct CALCULATE_LIBRARY_API CalcState {
 | 
				
			|||||||
        if (desc == SUCCESS) {
 | 
					        if (desc == SUCCESS) {
 | 
				
			||||||
            m_status = State::SUCCESS;
 | 
					            m_status = State::SUCCESS;
 | 
				
			||||||
        } else
 | 
					        } else
 | 
				
			||||||
        if (desc == SUCCESS_MAXPRICE) {
 | 
					 | 
				
			||||||
            m_status = State::SUCCESS_MAXPRICE;
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
        if (desc == ERROR_PARSING_ZONE_NR) {
 | 
					        if (desc == ERROR_PARSING_ZONE_NR) {
 | 
				
			||||||
            m_status = State::ERROR_PARSING_ZONE_NR;
 | 
					            m_status = State::ERROR_PARSING_ZONE_NR;
 | 
				
			||||||
        } else
 | 
					        } else
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -3,7 +3,6 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#include <iostream>
 | 
					#include <iostream>
 | 
				
			||||||
#include <optional>
 | 
					#include <optional>
 | 
				
			||||||
#include <utility>
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "configuration.h"
 | 
					#include "configuration.h"
 | 
				
			||||||
#include "calculate_price.h"
 | 
					#include "calculate_price.h"
 | 
				
			||||||
@@ -27,16 +26,16 @@ class Calculator {
 | 
				
			|||||||
                                            QDateTime const &start,
 | 
					                                            QDateTime const &start,
 | 
				
			||||||
                                            int netto_parking_time,
 | 
					                                            int netto_parking_time,
 | 
				
			||||||
                                            int paymentOptionIndex);
 | 
					                                            int paymentOptionIndex);
 | 
				
			||||||
    struct State {
 | 
					 | 
				
			||||||
        bool m_timeLimitReached;
 | 
					 | 
				
			||||||
        uint32_t m_costAtTimeLimit;
 | 
					 | 
				
			||||||
    } m_state;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    int computeBruttoDurationInSecs(Configuration const *cfg,
 | 
				
			||||||
 | 
					                                    QDateTime const &from,
 | 
				
			||||||
 | 
					                                    int durationInSecs, bool maxBrutto = false);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    QDateTime computeBruttoDateTime(Configuration const *cfg,
 | 
				
			||||||
 | 
					                                    QDateTime const &from,
 | 
				
			||||||
 | 
					                                    int durationInSecs, bool maxBrutto = false);
 | 
				
			||||||
protected:
 | 
					protected:
 | 
				
			||||||
    explicit Calculator() {
 | 
					    explicit Calculator() = default;
 | 
				
			||||||
        m_state.m_timeLimitReached = false;
 | 
					 | 
				
			||||||
        m_state.m_costAtTimeLimit = ~0;
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
public:
 | 
					public:
 | 
				
			||||||
    Calculator(Calculator const &other) = delete;
 | 
					    Calculator(Calculator const &other) = delete;
 | 
				
			||||||
@@ -47,12 +46,6 @@ public:
 | 
				
			|||||||
        return c;
 | 
					        return c;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    bool timeLimitReached() const { return m_state.m_timeLimitReached; }
 | 
					 | 
				
			||||||
    void setTimeLimitReached(bool timeLimitReached) { m_state.m_timeLimitReached = timeLimitReached; }
 | 
					 | 
				
			||||||
    bool costAtTimeLimit() const { return m_state.m_costAtTimeLimit; }
 | 
					 | 
				
			||||||
    void setCostAtTimeLimit(uint32_t cost) { if (m_state.m_costAtTimeLimit > cost) m_state.m_costAtTimeLimit = cost; }
 | 
					 | 
				
			||||||
    void resetCostAtTimeLimit() { m_state.m_costAtTimeLimit = ~0; }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    void ResetTimeSteps(int paymentOptionIndex) {
 | 
					    void ResetTimeSteps(int paymentOptionIndex) {
 | 
				
			||||||
        if (m_timeSteps.size() > 0 && paymentOptionIndex < m_timeSteps.size()) {
 | 
					        if (m_timeSteps.size() > 0 && paymentOptionIndex < m_timeSteps.size()) {
 | 
				
			||||||
            m_timeSteps[paymentOptionIndex].clear();
 | 
					            m_timeSteps[paymentOptionIndex].clear();
 | 
				
			||||||
@@ -84,9 +77,7 @@ public:
 | 
				
			|||||||
	/// <param name="start_datetime">Date/time of payment to be conducted in ISO8601 format (e.g. 2022-12-25T08:00:00Z)</param>
 | 
						/// <param name="start_datetime">Date/time of payment to be conducted in ISO8601 format (e.g. 2022-12-25T08:00:00Z)</param>
 | 
				
			||||||
	/// <param name="price"></param>
 | 
						/// <param name="price"></param>
 | 
				
			||||||
	/// <returns>Returns duration in seconds (data type: double)</returns>
 | 
						/// <returns>Returns duration in seconds (data type: double)</returns>
 | 
				
			||||||
    std::pair<std::string, QDateTime>
 | 
					    std::string GetDurationFromCost(Configuration* cfg, uint8_t vehicle_type, char const* start_datetime, double price, PermitType permitType, bool nextDay = false, bool prepaid = false);
 | 
				
			||||||
        GetDurationFromCost(Configuration* cfg, uint8_t vehicle_type, char const* start_datetime, double price,
 | 
					 | 
				
			||||||
                            PermitType permitType, bool nextDay = false, bool prepaid = false);
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/// <summary>
 | 
						/// <summary>
 | 
				
			||||||
	///  Gets cost from duration in seconds
 | 
						///  Gets cost from duration in seconds
 | 
				
			||||||
@@ -97,11 +88,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, QDateTime &start_datetime, QDateTime & end_datetime, int durationMin,
 | 
					    double GetCostFromDuration(Configuration* cfg, uint8_t vehicle_type, QDateTime &start_datetime, QDateTime & end_datetime, int durationMin, PermitType permitType, bool nextDay = false, bool prepaid = false);
 | 
				
			||||||
                               PermitType permitType, bool nextDay = false, bool prepaid = false);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    std::pair<CalcState, QDateTime> ComputeDurationFromCost(Configuration *cfg, QDateTime const &startDatetimePassed,  int cost);
 | 
					 | 
				
			||||||
    std::pair<CalcState, std::optional<int>> ComputeCostFromDuration(Configuration *cfg, QDateTime const &startDatetime, QDateTime &endDatetime, int nettoParkingTime);
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
    // 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);
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -29,8 +29,6 @@
 | 
				
			|||||||
#include "tariff_prepaid.h"
 | 
					#include "tariff_prepaid.h"
 | 
				
			||||||
#include "tariff_carryover.h"
 | 
					#include "tariff_carryover.h"
 | 
				
			||||||
#include "tariff_permit_type.h"
 | 
					#include "tariff_permit_type.h"
 | 
				
			||||||
#include "tariff_service.h"
 | 
					 | 
				
			||||||
#include "tariff_out_of_service.h"
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include <QVector>
 | 
					#include <QVector>
 | 
				
			||||||
#include <optional>
 | 
					#include <optional>
 | 
				
			||||||
@@ -38,7 +36,6 @@
 | 
				
			|||||||
using namespace std;
 | 
					using namespace std;
 | 
				
			||||||
using namespace rapidjson;
 | 
					using namespace rapidjson;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					 | 
				
			||||||
class Calculator;
 | 
					class Calculator;
 | 
				
			||||||
class Configuration
 | 
					class Configuration
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
@@ -52,10 +49,6 @@ public:
 | 
				
			|||||||
    using TariffPrepaidType = std::multimap<int, ATBPrepaid>;
 | 
					    using TariffPrepaidType = std::multimap<int, ATBPrepaid>;
 | 
				
			||||||
    using TariffCarryOverType = std::multimap<int, ATBCarryOver>;
 | 
					    using TariffCarryOverType = std::multimap<int, ATBCarryOver>;
 | 
				
			||||||
    using TariffDurationType = std::multimap<int, ATBDuration>;
 | 
					    using TariffDurationType = std::multimap<int, ATBDuration>;
 | 
				
			||||||
    using TariffServiceType = std::multimap<int, ATBTariffService>;
 | 
					 | 
				
			||||||
    using TariffOutOfServiceType = std::multimap<int, ATBTariffOutOfService>;
 | 
					 | 
				
			||||||
    using ATBTariffPrepaidType = std::multimap<int, ATBTariffPrepaid>;
 | 
					 | 
				
			||||||
    using ATBTariffCarryOverType = std::multimap<int, ATBTariffCarryOver>;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
    ATBProject project;
 | 
					    ATBProject project;
 | 
				
			||||||
    ATBCurrency Currency;
 | 
					    ATBCurrency Currency;
 | 
				
			||||||
@@ -66,7 +59,7 @@ public:
 | 
				
			|||||||
	multimap<int, ATBPaymentRate> PaymentRate;
 | 
						multimap<int, ATBPaymentRate> PaymentRate;
 | 
				
			||||||
	SpecialDaysWorktimeType SpecialDaysWorktime;
 | 
						SpecialDaysWorktimeType SpecialDaysWorktime;
 | 
				
			||||||
	SpecialDaysType SpecialDays;
 | 
						SpecialDaysType SpecialDays;
 | 
				
			||||||
    multimap<Qt::DayOfWeek, ATBWeekDay> WeekDays;
 | 
						multimap<int, ATBWeekDays> WeekDays;
 | 
				
			||||||
	multimap<int, ATBPeriodYear> YearPeriod;
 | 
						multimap<int, ATBPeriodYear> YearPeriod;
 | 
				
			||||||
	multimap<int, ATBWeekDaysWorktime> WeekDaysWorktime;
 | 
						multimap<int, ATBWeekDaysWorktime> WeekDaysWorktime;
 | 
				
			||||||
	ATBPaymentOptionType PaymentOption;
 | 
						ATBPaymentOptionType PaymentOption;
 | 
				
			||||||
@@ -79,10 +72,6 @@ public:
 | 
				
			|||||||
	TariffInterpolationType TariffInterpolations;
 | 
						TariffInterpolationType TariffInterpolations;
 | 
				
			||||||
	TariffPrepaidType TariffPrepaidOptions;
 | 
						TariffPrepaidType TariffPrepaidOptions;
 | 
				
			||||||
	TariffCarryOverType TariffCarryOverOptions;
 | 
						TariffCarryOverType TariffCarryOverOptions;
 | 
				
			||||||
    TariffServiceType TariffServices;
 | 
					 | 
				
			||||||
    TariffOutOfServiceType TariffOutOfServices;
 | 
					 | 
				
			||||||
    ATBTariffPrepaidType TariffPrepaids;
 | 
					 | 
				
			||||||
    ATBTariffCarryOverType TariffCarryOvers;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/// <summary>
 | 
						/// <summary>
 | 
				
			||||||
	/// Parse JSON string
 | 
						/// Parse JSON string
 | 
				
			||||||
@@ -137,15 +126,3 @@ private:
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
	QVector<ATBPaymentOption> currentPaymentOptions;
 | 
						QVector<ATBPaymentOption> currentPaymentOptions;
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					 | 
				
			||||||
bool previousDayHoliday(Configuration const &cfg, QDateTime const &t);
 | 
					 | 
				
			||||||
bool isHoliday(Configuration const &cfg, QDateTime const &t);
 | 
					 | 
				
			||||||
int getPaymentOptionIndex(Configuration const &cfg, QDateTime const& dt = QDateTime::currentDateTime());
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
ATBWeekDay parseWeekDay(Configuration &cfg,
 | 
					 | 
				
			||||||
                        rapidjson::GenericMemberIterator<false,
 | 
					 | 
				
			||||||
                                                         rapidjson::UTF8<char>,
 | 
					 | 
				
			||||||
                                                         rapidjson::MemoryPoolAllocator<rapidjson::CrtAllocator>> k,
 | 
					 | 
				
			||||||
                        QString const &innerObjName,
 | 
					 | 
				
			||||||
                        Qt::DayOfWeek weekDay,
 | 
					 | 
				
			||||||
                        QString const &weekDayName);
 | 
					 | 
				
			||||||
 
 | 
				
			|||||||
@@ -6,8 +6,7 @@ enum PaymentMethod {
 | 
				
			|||||||
	Progressive = 0x01,
 | 
						Progressive = 0x01,
 | 
				
			||||||
	Degressive = 0x02,
 | 
						Degressive = 0x02,
 | 
				
			||||||
	Linear = 0x03,
 | 
						Linear = 0x03,
 | 
				
			||||||
    Steps = 0x04,
 | 
						Steps = 0x04
 | 
				
			||||||
    Unified = 0x05
 | 
					 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#endif // PAYMENT_METHOD_H_INCLUDED
 | 
					#endif // PAYMENT_METHOD_H_INCLUDED
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -25,7 +25,6 @@ public:
 | 
				
			|||||||
        pop_max_time = 0;
 | 
					        pop_max_time = 0;
 | 
				
			||||||
        pop_min_price = 0;
 | 
					        pop_min_price = 0;
 | 
				
			||||||
        pop_max_price = 0;
 | 
					        pop_max_price = 0;
 | 
				
			||||||
        pop_max_price_save = 0;
 | 
					 | 
				
			||||||
        pop_carry_over = -1;
 | 
					        pop_carry_over = -1;
 | 
				
			||||||
        pop_carry_over_option_id = -1;
 | 
					        pop_carry_over_option_id = -1;
 | 
				
			||||||
        pop_prepaid_option_id = -1;
 | 
					        pop_prepaid_option_id = -1;
 | 
				
			||||||
@@ -42,10 +41,7 @@ public:
 | 
				
			|||||||
        pop_use_only_upto_datetime = ""; // deprecated
 | 
					        pop_use_only_upto_datetime = ""; // deprecated
 | 
				
			||||||
        pop_use_only_for_duration = 0;   // deprecated
 | 
					        pop_use_only_for_duration = 0;   // deprecated
 | 
				
			||||||
        pop_plus_steps = 1;  // +: jump <x=1> steps forward
 | 
					        pop_plus_steps = 1;  // +: jump <x=1> steps forward
 | 
				
			||||||
        pop_plus_steps_saved = 1;
 | 
					 | 
				
			||||||
        pop_minus_steps = 1; // -: jump <x=1> steps backward
 | 
					        pop_minus_steps = 1; // -: jump <x=1> steps backward
 | 
				
			||||||
        pop_allow_overpay = false;
 | 
					 | 
				
			||||||
        pop_apply_carry_over_to_ticket_endtime = false;
 | 
					 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    int pop_id;
 | 
					    int pop_id;
 | 
				
			||||||
@@ -62,7 +58,6 @@ public:
 | 
				
			|||||||
    double pop_max_time;
 | 
					    double pop_max_time;
 | 
				
			||||||
    double pop_min_price;
 | 
					    double pop_min_price;
 | 
				
			||||||
    double pop_max_price;
 | 
					    double pop_max_price;
 | 
				
			||||||
    double pop_max_price_save;
 | 
					 | 
				
			||||||
    int pop_carry_over;
 | 
					    int pop_carry_over;
 | 
				
			||||||
    int pop_carry_over_option_id;
 | 
					    int pop_carry_over_option_id;
 | 
				
			||||||
    bool pop_truncate_last_interpolation_step;
 | 
					    bool pop_truncate_last_interpolation_step;
 | 
				
			||||||
@@ -77,10 +72,7 @@ public:
 | 
				
			|||||||
    bool pop_accumulate_prices;
 | 
					    bool pop_accumulate_prices;
 | 
				
			||||||
    bool pop_accumulate_durations;
 | 
					    bool pop_accumulate_durations;
 | 
				
			||||||
    int pop_plus_steps;
 | 
					    int pop_plus_steps;
 | 
				
			||||||
    int pop_plus_steps_saved;
 | 
					 | 
				
			||||||
    int pop_minus_steps;
 | 
					    int pop_minus_steps;
 | 
				
			||||||
    bool pop_allow_overpay;
 | 
					 | 
				
			||||||
    bool pop_apply_carry_over_to_ticket_endtime;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
    struct ATBMaxDateTime {
 | 
					    struct ATBMaxDateTime {
 | 
				
			||||||
        int direction;
 | 
					        int direction;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -9,8 +9,4 @@ public:
 | 
				
			|||||||
	std::string pedwt_time_from;
 | 
						std::string pedwt_time_from;
 | 
				
			||||||
	std::string pedwt_time_to;
 | 
						std::string pedwt_time_to;
 | 
				
			||||||
	double pedwt_price;
 | 
						double pedwt_price;
 | 
				
			||||||
    int pedwt_paid; // 00: not paid (i.e. free)
 | 
					 | 
				
			||||||
                    // 01: not paid in winter term, piad in summer term
 | 
					 | 
				
			||||||
                    // 10: paid in winter term, not paid in summer term
 | 
					 | 
				
			||||||
                    // 11: paid in winter and in summer term
 | 
					 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
@@ -3,80 +3,6 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#include <QTime>
 | 
					#include <QTime>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "time_range.h"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
enum class ApplyCarryOver {
 | 
					 | 
				
			||||||
    NEVER = 0,
 | 
					 | 
				
			||||||
    MATCH_PREV_DAY = 1,
 | 
					 | 
				
			||||||
    MATCH_NEXT_DAY = 2,
 | 
					 | 
				
			||||||
    ALWAYS = 3
 | 
					 | 
				
			||||||
};
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
struct ATBTariffCarryOver {
 | 
					 | 
				
			||||||
    int m_id;
 | 
					 | 
				
			||||||
    QString m_weekDay;
 | 
					 | 
				
			||||||
    TimeRange m_range;
 | 
					 | 
				
			||||||
    QDate m_date;
 | 
					 | 
				
			||||||
    ApplyCarryOver m_carryOverIf;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    explicit ATBTariffCarryOver()
 | 
					 | 
				
			||||||
      : m_id(-1)
 | 
					 | 
				
			||||||
      , m_carryOverIf(ApplyCarryOver::NEVER) {
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    void setCarryOverIf(QString const &coif) {
 | 
					 | 
				
			||||||
        if (coif == "never") {
 | 
					 | 
				
			||||||
            m_carryOverIf = ApplyCarryOver::NEVER;
 | 
					 | 
				
			||||||
        } else
 | 
					 | 
				
			||||||
        if (coif == "match_prev_day") {
 | 
					 | 
				
			||||||
            m_carryOverIf = ApplyCarryOver::MATCH_PREV_DAY;
 | 
					 | 
				
			||||||
        } else
 | 
					 | 
				
			||||||
        if (coif == "match_next_day") {
 | 
					 | 
				
			||||||
            m_carryOverIf = ApplyCarryOver::MATCH_NEXT_DAY;
 | 
					 | 
				
			||||||
        } else
 | 
					 | 
				
			||||||
        if (coif == "always") {
 | 
					 | 
				
			||||||
            m_carryOverIf = ApplyCarryOver::ALWAYS;
 | 
					 | 
				
			||||||
        } else {
 | 
					 | 
				
			||||||
           qCritical() << "ERROR unknown carry over application" << coif;
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    ApplyCarryOver carryOverIf() const {
 | 
					 | 
				
			||||||
        return m_carryOverIf;
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    QString carryOverIfStr() const {
 | 
					 | 
				
			||||||
        if (m_carryOverIf == ApplyCarryOver::NEVER) {
 | 
					 | 
				
			||||||
            return "never";
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
        if (m_carryOverIf == ApplyCarryOver::ALWAYS) {
 | 
					 | 
				
			||||||
            return "always";
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
        if (m_carryOverIf == ApplyCarryOver::MATCH_PREV_DAY) {
 | 
					 | 
				
			||||||
            return "match prev day";
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
        if (m_carryOverIf == ApplyCarryOver::MATCH_NEXT_DAY) {
 | 
					 | 
				
			||||||
            return "match next day";
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
        return QString("ERROR unknown carry over application: %1").arg(static_cast<int>(m_carryOverIf));
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    friend QDebug operator<<(QDebug debug, ATBTariffCarryOver const &co) {
 | 
					 | 
				
			||||||
        QDebugStateSaver saver(debug);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        debug.nospace()
 | 
					 | 
				
			||||||
            << "\nTariffCarryOver:\n"
 | 
					 | 
				
			||||||
            << "         week day: " << co.m_weekDay << "\n"
 | 
					 | 
				
			||||||
            << "             date: " << co.m_date.toString(Qt::ISODate) << "\n"
 | 
					 | 
				
			||||||
            << "               id: " << co.m_id << "\n"
 | 
					 | 
				
			||||||
            << "            start: " << co.m_range.m_start << "\n"
 | 
					 | 
				
			||||||
            << "              end: " << co.m_range.m_end << "\n"
 | 
					 | 
				
			||||||
            << "         duration: " << co.m_range.m_duration << "\n"
 | 
					 | 
				
			||||||
            << "    carry over if: " << co.carryOverIfStr() << endl;
 | 
					 | 
				
			||||||
        return debug;
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
};
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
struct ATBCarryOver {
 | 
					struct ATBCarryOver {
 | 
				
			||||||
    struct week {
 | 
					    struct week {
 | 
				
			||||||
        int day;
 | 
					        int day;
 | 
				
			||||||
@@ -89,19 +15,6 @@ struct ATBCarryOver {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    int id;
 | 
					    int id;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    explicit ATBCarryOver()
 | 
					 | 
				
			||||||
      : id(-1) {
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        for (int i = 0 ; i < 8; ++i) {
 | 
					 | 
				
			||||||
            carryover[i].day = -1;
 | 
					 | 
				
			||||||
            carryover[i].seemless = false;
 | 
					 | 
				
			||||||
            carryover[i].never = false;
 | 
					 | 
				
			||||||
            carryover[i].static_start = QTime(23, 59, 59);
 | 
					 | 
				
			||||||
            carryover[i].static_end = QTime(0, 0, 0);
 | 
					 | 
				
			||||||
            carryover[i].duration = -1;
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    friend QDebug operator<<(QDebug debug, ATBCarryOver const &co) {
 | 
					    friend QDebug operator<<(QDebug debug, ATBCarryOver const &co) {
 | 
				
			||||||
        QDebugStateSaver saver(debug);
 | 
					        QDebugStateSaver saver(debug);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -118,21 +31,21 @@ struct ATBCarryOver {
 | 
				
			|||||||
            << "                day: " << co.carryover[(int)Qt::Tuesday].day << "\n"
 | 
					            << "                day: " << co.carryover[(int)Qt::Tuesday].day << "\n"
 | 
				
			||||||
            << "       static_start: " << co.carryover[(int)Qt::Tuesday].static_start.toString(Qt::ISODate) << "\n"
 | 
					            << "       static_start: " << co.carryover[(int)Qt::Tuesday].static_start.toString(Qt::ISODate) << "\n"
 | 
				
			||||||
            << "         static_end: " << co.carryover[(int)Qt::Tuesday].static_end.toString(Qt::ISODate) << "\n"
 | 
					            << "         static_end: " << co.carryover[(int)Qt::Tuesday].static_end.toString(Qt::ISODate) << "\n"
 | 
				
			||||||
            << "           duration: " << co.carryover[(int)Qt::Tuesday].duration << "\n"
 | 
					            << "           duration: " << co.carryover[(int)Qt::Monday].duration << "\n"
 | 
				
			||||||
            << "            anytime: " << co.carryover[(int)Qt::Tuesday].seemless << "\n"
 | 
					            << "            anytime: " << co.carryover[(int)Qt::Tuesday].seemless << "\n"
 | 
				
			||||||
            << "              never: " << co.carryover[(int)Qt::Tuesday].never << "\n"
 | 
					            << "              never: " << co.carryover[(int)Qt::Tuesday].never << "\n"
 | 
				
			||||||
            << "        **** Wednesday **** \n"
 | 
					            << "        **** Wednesday **** \n"
 | 
				
			||||||
            << "                day: " << co.carryover[(int)Qt::Wednesday].day << "\n"
 | 
					            << "                day: " << co.carryover[(int)Qt::Wednesday].day << "\n"
 | 
				
			||||||
            << "       static_start: " << co.carryover[(int)Qt::Wednesday].static_start.toString(Qt::ISODate) << "\n"
 | 
					            << "       static_start: " << co.carryover[(int)Qt::Wednesday].static_start.toString(Qt::ISODate) << "\n"
 | 
				
			||||||
            << "         static_end: " << co.carryover[(int)Qt::Wednesday].static_end.toString(Qt::ISODate) << "\n"
 | 
					            << "         static_end: " << co.carryover[(int)Qt::Wednesday].static_end.toString(Qt::ISODate) << "\n"
 | 
				
			||||||
            << "           duration: " << co.carryover[(int)Qt::Wednesday].duration << "\n"
 | 
					            << "           duration: " << co.carryover[(int)Qt::Monday].duration << "\n"
 | 
				
			||||||
            << "            anytime: " << co.carryover[(int)Qt::Wednesday].seemless << "\n"
 | 
					            << "            anytime: " << co.carryover[(int)Qt::Wednesday].seemless << "\n"
 | 
				
			||||||
            << "              never: " << co.carryover[(int)Qt::Wednesday].never << "\n"
 | 
					            << "              never: " << co.carryover[(int)Qt::Wednesday].never << "\n"
 | 
				
			||||||
            << "        **** Thursday **** \n"
 | 
					            << "        **** Thursday **** \n"
 | 
				
			||||||
            << "                day: " << co.carryover[(int)Qt::Thursday].day << "\n"
 | 
					            << "                day: " << co.carryover[(int)Qt::Thursday].day << "\n"
 | 
				
			||||||
            << "       static_start: " << co.carryover[(int)Qt::Thursday].static_start.toString(Qt::ISODate) << "\n"
 | 
					            << "       static_start: " << co.carryover[(int)Qt::Thursday].static_start.toString(Qt::ISODate) << "\n"
 | 
				
			||||||
            << "         static_end: " << co.carryover[(int)Qt::Thursday].static_end.toString(Qt::ISODate) << "\n"
 | 
					            << "         static_end: " << co.carryover[(int)Qt::Thursday].static_end.toString(Qt::ISODate) << "\n"
 | 
				
			||||||
            << "           duration: " << co.carryover[(int)Qt::Thursday].duration << "\n"
 | 
					            << "           duration: " << co.carryover[(int)Qt::Monday].duration << "\n"
 | 
				
			||||||
            << "            anytime: " << co.carryover[(int)Qt::Thursday].seemless << "\n"
 | 
					            << "            anytime: " << co.carryover[(int)Qt::Thursday].seemless << "\n"
 | 
				
			||||||
            << "              never: " << co.carryover[(int)Qt::Thursday].never << "\n"
 | 
					            << "              never: " << co.carryover[(int)Qt::Thursday].never << "\n"
 | 
				
			||||||
            << "        **** Friday **** \n"
 | 
					            << "        **** Friday **** \n"
 | 
				
			||||||
@@ -145,14 +58,14 @@ struct ATBCarryOver {
 | 
				
			|||||||
            << "                day: " << co.carryover[(int)Qt::Saturday].day << "\n"
 | 
					            << "                day: " << co.carryover[(int)Qt::Saturday].day << "\n"
 | 
				
			||||||
            << "       static_start: " << co.carryover[(int)Qt::Saturday].static_start.toString(Qt::ISODate) << "\n"
 | 
					            << "       static_start: " << co.carryover[(int)Qt::Saturday].static_start.toString(Qt::ISODate) << "\n"
 | 
				
			||||||
            << "         static_end: " << co.carryover[(int)Qt::Saturday].static_end.toString(Qt::ISODate) << "\n"
 | 
					            << "         static_end: " << co.carryover[(int)Qt::Saturday].static_end.toString(Qt::ISODate) << "\n"
 | 
				
			||||||
            << "           duration: " << co.carryover[(int)Qt::Saturday].duration << "\n"
 | 
					            << "           duration: " << co.carryover[(int)Qt::Monday].duration << "\n"
 | 
				
			||||||
            << "            anytime: " << co.carryover[(int)Qt::Saturday].seemless << "\n"
 | 
					            << "            anytime: " << co.carryover[(int)Qt::Saturday].seemless << "\n"
 | 
				
			||||||
            << "              never: " << co.carryover[(int)Qt::Saturday].never << "\n"
 | 
					            << "              never: " << co.carryover[(int)Qt::Saturday].never << "\n"
 | 
				
			||||||
            << "        **** Sunday **** \n"
 | 
					            << "        **** Sunday **** \n"
 | 
				
			||||||
            << "                day: " << co.carryover[(int)Qt::Sunday].day << "\n"
 | 
					            << "                day: " << co.carryover[(int)Qt::Sunday].day << "\n"
 | 
				
			||||||
            << "       static_start: " << co.carryover[(int)Qt::Sunday].static_start.toString(Qt::ISODate) << "\n"
 | 
					            << "       static_start: " << co.carryover[(int)Qt::Sunday].static_start.toString(Qt::ISODate) << "\n"
 | 
				
			||||||
            << "         static_end: " << co.carryover[(int)Qt::Sunday].static_end.toString(Qt::ISODate) << "\n"
 | 
					            << "         static_end: " << co.carryover[(int)Qt::Sunday].static_end.toString(Qt::ISODate) << "\n"
 | 
				
			||||||
            << "           duration: " << co.carryover[(int)Qt::Sunday].duration << "\n"
 | 
					            << "           duration: " << co.carryover[(int)Qt::Monday].duration << "\n"
 | 
				
			||||||
            << "            anytime: " << co.carryover[(int)Qt::Sunday].seemless << "\n"
 | 
					            << "            anytime: " << co.carryover[(int)Qt::Sunday].seemless << "\n"
 | 
				
			||||||
            << "              never: " << co.carryover[(int)Qt::Sunday].never << "\n";
 | 
					            << "              never: " << co.carryover[(int)Qt::Sunday].never << "\n";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,69 +0,0 @@
 | 
				
			|||||||
#ifndef ATB_TARIFF_CARRYOVER_SETTINGS_H_INCLUDED
 | 
					 | 
				
			||||||
#define ATB_TARIFF_CARRYOVER_SETTINGS_H_INCLUDED
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#include <QDebug>
 | 
					 | 
				
			||||||
#include <QDateTime>
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#include <functional>
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
struct ATBTariffCarryOverSettings {
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    // parking time limit not violated: return false, otherwise: return true.
 | 
					 | 
				
			||||||
    using ParkingTimeLimitChecker = std::function<bool(ATBTariffCarryOverSettings const&,
 | 
					 | 
				
			||||||
                                                       QDateTime const &startTime,
 | 
					 | 
				
			||||||
                                                       QDateTime const &endTime,
 | 
					 | 
				
			||||||
                                                       int paymentOptionIndex)>;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    int m_duration;
 | 
					 | 
				
			||||||
    QTime m_start;
 | 
					 | 
				
			||||||
    QTime m_end;
 | 
					 | 
				
			||||||
    ParkingTimeLimitChecker m_parkingTimeLimitChecker;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    QTime m_parking_time_limit;
 | 
					 | 
				
			||||||
    QTime m_about_to_exceed_parking_time_limit;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    explicit ATBTariffCarryOverSettings()
 | 
					 | 
				
			||||||
      : m_duration(0)
 | 
					 | 
				
			||||||
      , m_start(QTime())
 | 
					 | 
				
			||||||
      , m_end(QTime())
 | 
					 | 
				
			||||||
      , m_parkingTimeLimitChecker([](ATBTariffCarryOverSettings const&,
 | 
					 | 
				
			||||||
                                  QDateTime const&, QDateTime const&, int) { return false; })
 | 
					 | 
				
			||||||
      , m_parking_time_limit(QTime())
 | 
					 | 
				
			||||||
      , m_about_to_exceed_parking_time_limit(QTime()) {}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    explicit ATBTariffCarryOverSettings(int duration, QTime const &start,
 | 
					 | 
				
			||||||
                                        QTime const &end,
 | 
					 | 
				
			||||||
                                        QTime const &parking_time_limit,
 | 
					 | 
				
			||||||
                                        QTime const &about_to_exceed_parking_time_limit,
 | 
					 | 
				
			||||||
                                        ParkingTimeLimitChecker parkingTimeLimitChecker)
 | 
					 | 
				
			||||||
      : m_duration(duration)
 | 
					 | 
				
			||||||
      , m_start(start)
 | 
					 | 
				
			||||||
      , m_end(end)
 | 
					 | 
				
			||||||
      , m_parkingTimeLimitChecker(std::move(parkingTimeLimitChecker))
 | 
					 | 
				
			||||||
      , m_parking_time_limit(parking_time_limit)
 | 
					 | 
				
			||||||
      , m_about_to_exceed_parking_time_limit(about_to_exceed_parking_time_limit) {
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    bool parkingTimeLimitExceeded(QDateTime const &startTime,
 | 
					 | 
				
			||||||
                                  QDateTime const &endTime,
 | 
					 | 
				
			||||||
                                  int paymentOptionIndex) const {
 | 
					 | 
				
			||||||
        return m_parkingTimeLimitChecker(*this, startTime, endTime, paymentOptionIndex);
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    QTime const &parkingTimeLimit() const { return m_parking_time_limit; }
 | 
					 | 
				
			||||||
    QTime &parkingTimeLimit() { return m_parking_time_limit; }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    friend QDebug operator<<(QDebug debug, ATBTariffCarryOverSettings const &co) {
 | 
					 | 
				
			||||||
        QDebugStateSaver saver(debug);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        debug.nospace()
 | 
					 | 
				
			||||||
            << "                 duration: " << co.m_duration << "\n"
 | 
					 | 
				
			||||||
            << "                    start: " << co.m_start.toString(Qt::ISODate) << "\n"
 | 
					 | 
				
			||||||
            << "                      end: " << co.m_end.toString(Qt::ISODate) << "\n"
 | 
					 | 
				
			||||||
            << "       parking_time_limit: " << co.m_parking_time_limit.toString(Qt::ISODate) << endl;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        return debug;
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
};
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#endif // ATB_TARIFF_CARRYOVER_SETTINGS_H_INCLUDED
 | 
					 | 
				
			||||||
@@ -1,3 +1,4 @@
 | 
				
			|||||||
 | 
					#pragma once
 | 
				
			||||||
#include <variant>
 | 
					#include <variant>
 | 
				
			||||||
#include <cstddef>
 | 
					#include <cstddef>
 | 
				
			||||||
#include <stdio.h>
 | 
					#include <stdio.h>
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -14,8 +14,6 @@
 | 
				
			|||||||
void setDebugLevel(int level);
 | 
					void setDebugLevel(int level);
 | 
				
			||||||
int getDebugLevel();
 | 
					int getDebugLevel();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#if 0
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
static void print() {
 | 
					static void print() {
 | 
				
			||||||
    std::cerr << "\n";
 | 
					    std::cerr << "\n";
 | 
				
			||||||
    if (getDebugLevel() == DBG_LEVEL_FATAL) {
 | 
					    if (getDebugLevel() == DBG_LEVEL_FATAL) {
 | 
				
			||||||
@@ -77,6 +75,4 @@ static void LOG_FATAL(const Arg1& arg1, const Args&&... args) {
 | 
				
			|||||||
    }
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#endif //  TARIFF_LOG_INCLUDED_H
 | 
					#endif //  TARIFF_LOG_INCLUDED_H
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,79 +0,0 @@
 | 
				
			|||||||
#ifndef TARIFF_OUT_OF_SERVICE_H_INCLUDED
 | 
					 | 
				
			||||||
#define TARIFF_OUT_OF_SERVICE_H_INCLUDED
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#include <QDateTime>
 | 
					 | 
				
			||||||
#include <QString>
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#include "time_range.h"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
enum class ApplyOutOfService {
 | 
					 | 
				
			||||||
    NEVER = 0,
 | 
					 | 
				
			||||||
    MATCH_PREV_DAY = 1,
 | 
					 | 
				
			||||||
    MATCH_NEXT_DAY = 2,
 | 
					 | 
				
			||||||
    ALWAYS = 3
 | 
					 | 
				
			||||||
};
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
struct ATBTariffOutOfService {
 | 
					 | 
				
			||||||
    int m_id;
 | 
					 | 
				
			||||||
    QString m_weekDay;
 | 
					 | 
				
			||||||
    QDate m_date;
 | 
					 | 
				
			||||||
    TimeRange m_range;
 | 
					 | 
				
			||||||
    ApplyOutOfService m_outOfServiceIf;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    explicit ATBTariffOutOfService()
 | 
					 | 
				
			||||||
      : m_id(-1)
 | 
					 | 
				
			||||||
      , m_outOfServiceIf(ApplyOutOfService::NEVER) {
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    void setOutOfServiceIf(QString const &oosif) {
 | 
					 | 
				
			||||||
        if (oosif == "never") {
 | 
					 | 
				
			||||||
            m_outOfServiceIf = ApplyOutOfService::NEVER;
 | 
					 | 
				
			||||||
        } else
 | 
					 | 
				
			||||||
        if (oosif == "match_prev_day") {
 | 
					 | 
				
			||||||
            m_outOfServiceIf = ApplyOutOfService::MATCH_PREV_DAY;
 | 
					 | 
				
			||||||
        } else
 | 
					 | 
				
			||||||
        if (oosif == "match_next_day") {
 | 
					 | 
				
			||||||
            m_outOfServiceIf = ApplyOutOfService::MATCH_NEXT_DAY;
 | 
					 | 
				
			||||||
        } else
 | 
					 | 
				
			||||||
        if (oosif == "always") {
 | 
					 | 
				
			||||||
            m_outOfServiceIf = ApplyOutOfService::ALWAYS;
 | 
					 | 
				
			||||||
        } else {
 | 
					 | 
				
			||||||
           qCritical() << "ERROR unknown servcie application" << oosif;
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    ApplyOutOfService outOfServiceIf() const {
 | 
					 | 
				
			||||||
        return m_outOfServiceIf;
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    QString outOfServiceIfStr() const {
 | 
					 | 
				
			||||||
        if (m_outOfServiceIf == ApplyOutOfService::NEVER) {
 | 
					 | 
				
			||||||
            return "never";
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
        if (m_outOfServiceIf == ApplyOutOfService::ALWAYS) {
 | 
					 | 
				
			||||||
            return "always";
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
        if (m_outOfServiceIf == ApplyOutOfService::MATCH_PREV_DAY) {
 | 
					 | 
				
			||||||
            return "match prev day";
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
        if (m_outOfServiceIf == ApplyOutOfService::MATCH_NEXT_DAY) {
 | 
					 | 
				
			||||||
            return "match next day";
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
        return QString("ERROR unknown out of service application: %1").arg(static_cast<int>(m_outOfServiceIf));
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
    friend QDebug operator<<(QDebug debug, ATBTariffOutOfService const &oos) {
 | 
					 | 
				
			||||||
        QDebugStateSaver saver(debug);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        debug.nospace()
 | 
					 | 
				
			||||||
            << "\nTariffOutOfService:\n"
 | 
					 | 
				
			||||||
            << "            week day: " << oos.m_weekDay << "\n"
 | 
					 | 
				
			||||||
            << "                date: " << oos.m_date.toString(Qt::ISODate) << "\n"
 | 
					 | 
				
			||||||
            << "                  id: " << oos.m_id << "\n"
 | 
					 | 
				
			||||||
            << "               start: " << oos.m_range.m_start << "\n"
 | 
					 | 
				
			||||||
            << "                 end: " << oos.m_range.m_end << "\n"
 | 
					 | 
				
			||||||
            << "            duration: " << oos.m_range.m_duration << endl;
 | 
					 | 
				
			||||||
        return debug;
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
};
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#endif // TARIFF_SERVICE_H_INCLUDED
 | 
					 | 
				
			||||||
@@ -1,114 +1,17 @@
 | 
				
			|||||||
#ifndef TARIFF_PREPAID_H_INCLUDED
 | 
					#ifndef TARIFF_PREPAID_H_INCLUDED
 | 
				
			||||||
#define TARIFF_PREPAID_H_INCLUDED
 | 
					#define TARIFF_PREPAID_H_INCLUDED
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include <QDateTime>
 | 
					#include <QTime>
 | 
				
			||||||
#include <QString>
 | 
					#include <QString>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "time_range.h"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
enum class ApplyPrepaid {
 | 
					 | 
				
			||||||
    NEVER = 0,
 | 
					 | 
				
			||||||
    MATCH_PREV_DAY = 1,
 | 
					 | 
				
			||||||
    MATCH_NEXT_DAY = 2,
 | 
					 | 
				
			||||||
    ALWAYS = 3
 | 
					 | 
				
			||||||
};
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
struct ATBTariffPrepaid {
 | 
					 | 
				
			||||||
    int m_id;
 | 
					 | 
				
			||||||
    QString m_weekDay;
 | 
					 | 
				
			||||||
    QDate m_date;
 | 
					 | 
				
			||||||
    TimeRange m_range;
 | 
					 | 
				
			||||||
    ApplyPrepaid m_prepaidIf;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    explicit ATBTariffPrepaid()
 | 
					 | 
				
			||||||
      : m_id(-1)
 | 
					 | 
				
			||||||
      , m_prepaidIf(ApplyPrepaid::NEVER) {
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    void setPrepaidIf(QString const &ppif) {
 | 
					 | 
				
			||||||
        if (ppif == "never") {
 | 
					 | 
				
			||||||
            m_prepaidIf = ApplyPrepaid::NEVER;
 | 
					 | 
				
			||||||
        } else
 | 
					 | 
				
			||||||
        if (ppif == "match_prev_day") {
 | 
					 | 
				
			||||||
            m_prepaidIf = ApplyPrepaid::MATCH_PREV_DAY;
 | 
					 | 
				
			||||||
        } else
 | 
					 | 
				
			||||||
        if (ppif == "match_next_day") {
 | 
					 | 
				
			||||||
            m_prepaidIf = ApplyPrepaid::MATCH_NEXT_DAY;
 | 
					 | 
				
			||||||
        } else
 | 
					 | 
				
			||||||
        if (ppif == "always") {
 | 
					 | 
				
			||||||
            m_prepaidIf = ApplyPrepaid::ALWAYS;
 | 
					 | 
				
			||||||
        } else {
 | 
					 | 
				
			||||||
           qCritical() << "ERROR unknown carry over application" << ppif;
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    ApplyPrepaid prepaidIf() const {
 | 
					 | 
				
			||||||
        return m_prepaidIf;
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    QString prepaidIfStr() const {
 | 
					 | 
				
			||||||
        if (m_prepaidIf == ApplyPrepaid::NEVER) {
 | 
					 | 
				
			||||||
            return "never";
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
        if (m_prepaidIf == ApplyPrepaid::ALWAYS) {
 | 
					 | 
				
			||||||
            return "always";
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
        if (m_prepaidIf == ApplyPrepaid::MATCH_PREV_DAY) {
 | 
					 | 
				
			||||||
            return "match prev day";
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
        if (m_prepaidIf == ApplyPrepaid::MATCH_NEXT_DAY) {
 | 
					 | 
				
			||||||
            return "match next day";
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
        return QString("ERROR unknown prepaid application: %1").arg(static_cast<int>(m_prepaidIf));
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    friend QDebug operator<<(QDebug debug, ATBTariffPrepaid const &pp) {
 | 
					 | 
				
			||||||
        QDebugStateSaver saver(debug);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        debug.nospace()
 | 
					 | 
				
			||||||
            << "\nTariffPrepaid:\n"
 | 
					 | 
				
			||||||
            << "       week day: " << pp.m_weekDay << "\n"
 | 
					 | 
				
			||||||
            << "           date: " << pp.m_date.toString(Qt::ISODate) << "\n"
 | 
					 | 
				
			||||||
            << "             id: " << pp.m_id << "\n"
 | 
					 | 
				
			||||||
            << "          start: " << pp.m_range.m_start << "\n"
 | 
					 | 
				
			||||||
            << "            end: " << pp.m_range.m_end << "\n"
 | 
					 | 
				
			||||||
            << "       duration: " << pp.m_range.m_duration << "\n"
 | 
					 | 
				
			||||||
            << "     prepaid if: " << pp.prepaidIfStr() << endl;
 | 
					 | 
				
			||||||
        return debug;
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
};
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
// deprecated
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
struct ATBPrepaid {
 | 
					struct ATBPrepaid {
 | 
				
			||||||
 | 
					    explicit ATBPrepaid() = default;
 | 
				
			||||||
    int id;
 | 
					    int id;
 | 
				
			||||||
    bool anytime;
 | 
					    bool anytime;
 | 
				
			||||||
    bool never;
 | 
					    bool never;
 | 
				
			||||||
    QTime static_start;
 | 
					    QTime static_start;
 | 
				
			||||||
    QTime static_end;
 | 
					    QTime static_end;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    struct week {
 | 
					 | 
				
			||||||
        int day;
 | 
					 | 
				
			||||||
        QTime static_start;
 | 
					 | 
				
			||||||
        QTime static_end;
 | 
					 | 
				
			||||||
        int duration;
 | 
					 | 
				
			||||||
    } prepaid[8];
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    explicit ATBPrepaid()
 | 
					 | 
				
			||||||
      : id(-1)
 | 
					 | 
				
			||||||
      , anytime(false)
 | 
					 | 
				
			||||||
      , never(false)
 | 
					 | 
				
			||||||
      , static_start(QTime(23, 59, 59))
 | 
					 | 
				
			||||||
      , static_end(QTime(0, 0, 0)) {
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        for (int i = 0 ; i < 8; ++i) {
 | 
					 | 
				
			||||||
            prepaid[i].day = -1;
 | 
					 | 
				
			||||||
            prepaid[i].static_start = QTime(23, 59, 59);
 | 
					 | 
				
			||||||
            prepaid[i].static_end = QTime(0, 0, 0);
 | 
					 | 
				
			||||||
            prepaid[i].duration = -1;
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    friend QDebug operator<<(QDebug debug, ATBPrepaid const &pp) {
 | 
					    friend QDebug operator<<(QDebug debug, ATBPrepaid const &pp) {
 | 
				
			||||||
        QDebugStateSaver saver(debug);
 | 
					        QDebugStateSaver saver(debug);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -117,41 +20,7 @@ struct ATBPrepaid {
 | 
				
			|||||||
            << "       static_start: " << pp.static_start.toString(Qt::ISODate) << "\n"
 | 
					            << "       static_start: " << pp.static_start.toString(Qt::ISODate) << "\n"
 | 
				
			||||||
            << "         static_end: " << pp.static_end.toString(Qt::ISODate) << "\n"
 | 
					            << "         static_end: " << pp.static_end.toString(Qt::ISODate) << "\n"
 | 
				
			||||||
            << "            anytime: " << pp.anytime << "\n"
 | 
					            << "            anytime: " << pp.anytime << "\n"
 | 
				
			||||||
            << "              never: " << pp.never << "\n"
 | 
					            << "              never: " << pp.never << "\n";
 | 
				
			||||||
            << "        **** Monday **** \n"
 | 
					 | 
				
			||||||
            << "                day: " << pp.prepaid[(int)Qt::Monday].day << "\n"
 | 
					 | 
				
			||||||
            << "       static_start: " << pp.prepaid[(int)Qt::Monday].static_start.toString(Qt::ISODate) << "\n"
 | 
					 | 
				
			||||||
            << "         static_end: " << pp.prepaid[(int)Qt::Monday].static_end.toString(Qt::ISODate) << "\n"
 | 
					 | 
				
			||||||
            << "           duration: " << pp.prepaid[(int)Qt::Monday].duration << "\n"
 | 
					 | 
				
			||||||
            << "        **** Tuesday **** \n"
 | 
					 | 
				
			||||||
            << "                day: " << pp.prepaid[(int)Qt::Tuesday].day << "\n"
 | 
					 | 
				
			||||||
            << "       static_start: " << pp.prepaid[(int)Qt::Tuesday].static_start.toString(Qt::ISODate) << "\n"
 | 
					 | 
				
			||||||
            << "         static_end: " << pp.prepaid[(int)Qt::Tuesday].static_end.toString(Qt::ISODate) << "\n"
 | 
					 | 
				
			||||||
            << "           duration: " << pp.prepaid[(int)Qt::Tuesday].duration << "\n"
 | 
					 | 
				
			||||||
            << "        **** Wednesday **** \n"
 | 
					 | 
				
			||||||
            << "                day: " << pp.prepaid[(int)Qt::Wednesday].day << "\n"
 | 
					 | 
				
			||||||
            << "       static_start: " << pp.prepaid[(int)Qt::Wednesday].static_start.toString(Qt::ISODate) << "\n"
 | 
					 | 
				
			||||||
            << "         static_end: " << pp.prepaid[(int)Qt::Wednesday].static_end.toString(Qt::ISODate) << "\n"
 | 
					 | 
				
			||||||
            << "           duration: " << pp.prepaid[(int)Qt::Wednesday].duration << "\n"
 | 
					 | 
				
			||||||
            << "        **** Thursday **** \n"
 | 
					 | 
				
			||||||
            << "                day: " << pp.prepaid[(int)Qt::Thursday].day << "\n"
 | 
					 | 
				
			||||||
            << "       static_start: " << pp.prepaid[(int)Qt::Thursday].static_start.toString(Qt::ISODate) << "\n"
 | 
					 | 
				
			||||||
            << "         static_end: " << pp.prepaid[(int)Qt::Thursday].static_end.toString(Qt::ISODate) << "\n"
 | 
					 | 
				
			||||||
            << "           duration: " << pp.prepaid[(int)Qt::Thursday].duration << "\n"
 | 
					 | 
				
			||||||
            << "        **** Friday **** \n"
 | 
					 | 
				
			||||||
            << "                day: " << pp.prepaid[(int)Qt::Friday].day << "\n"
 | 
					 | 
				
			||||||
            << "       static_start: " << pp.prepaid[(int)Qt::Friday].static_start.toString(Qt::ISODate) << "\n"
 | 
					 | 
				
			||||||
            << "         static_end: " << pp.prepaid[(int)Qt::Friday].static_end.toString(Qt::ISODate) << "\n"
 | 
					 | 
				
			||||||
            << "        **** Saturday **** \n"
 | 
					 | 
				
			||||||
            << "                day: " << pp.prepaid[(int)Qt::Saturday].day << "\n"
 | 
					 | 
				
			||||||
            << "       static_start: " << pp.prepaid[(int)Qt::Saturday].static_start.toString(Qt::ISODate) << "\n"
 | 
					 | 
				
			||||||
            << "         static_end: " << pp.prepaid[(int)Qt::Saturday].static_end.toString(Qt::ISODate) << "\n"
 | 
					 | 
				
			||||||
            << "           duration: " << pp.prepaid[(int)Qt::Saturday].duration << "\n"
 | 
					 | 
				
			||||||
            << "        **** Sunday **** \n"
 | 
					 | 
				
			||||||
            << "                day: " << pp.prepaid[(int)Qt::Sunday].day << "\n"
 | 
					 | 
				
			||||||
            << "       static_start: " << pp.prepaid[(int)Qt::Sunday].static_start.toString(Qt::ISODate) << "\n"
 | 
					 | 
				
			||||||
            << "         static_end: " << pp.prepaid[(int)Qt::Sunday].static_end.toString(Qt::ISODate) << "\n"
 | 
					 | 
				
			||||||
            << "           duration: " << pp.prepaid[(int)Qt::Sunday].duration << "\n";
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
        return debug;
 | 
					        return debug;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,81 +0,0 @@
 | 
				
			|||||||
#ifndef TARIFF_SERVICE_H_INCLUDED
 | 
					 | 
				
			||||||
#define TARIFF_SERVICE_H_INCLUDED
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#include <QDateTime>
 | 
					 | 
				
			||||||
#include <QString>
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#include "time_range.h"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
enum class ApplyService {
 | 
					 | 
				
			||||||
    NEVER = 0,
 | 
					 | 
				
			||||||
    MATCH_PREV_DAY = 1,
 | 
					 | 
				
			||||||
    MATCH_NEXT_DAY = 2,
 | 
					 | 
				
			||||||
    ALWAYS = 3
 | 
					 | 
				
			||||||
};
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
struct ATBTariffService {
 | 
					 | 
				
			||||||
    int m_id;
 | 
					 | 
				
			||||||
    QString m_weekDay;
 | 
					 | 
				
			||||||
    QDate m_date;
 | 
					 | 
				
			||||||
    TimeRange m_range;
 | 
					 | 
				
			||||||
    ApplyService m_serviceIf;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    explicit ATBTariffService()
 | 
					 | 
				
			||||||
      : m_id(-1)
 | 
					 | 
				
			||||||
      , m_serviceIf(ApplyService::NEVER) {
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    void setServiceIf(QString const &sif) {
 | 
					 | 
				
			||||||
        if (sif == "never") {
 | 
					 | 
				
			||||||
            m_serviceIf = ApplyService::NEVER;
 | 
					 | 
				
			||||||
        } else
 | 
					 | 
				
			||||||
        if (sif == "match_prev_day") {
 | 
					 | 
				
			||||||
            m_serviceIf = ApplyService::MATCH_PREV_DAY;
 | 
					 | 
				
			||||||
        } else
 | 
					 | 
				
			||||||
        if (sif == "match_next_day") {
 | 
					 | 
				
			||||||
            m_serviceIf = ApplyService::MATCH_NEXT_DAY;
 | 
					 | 
				
			||||||
        } else
 | 
					 | 
				
			||||||
        if (sif == "always") {
 | 
					 | 
				
			||||||
            m_serviceIf = ApplyService::ALWAYS;
 | 
					 | 
				
			||||||
        } else {
 | 
					 | 
				
			||||||
           qCritical() << "ERROR unknown servcie application" << sif;
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    ApplyService serviceIf() const {
 | 
					 | 
				
			||||||
        return m_serviceIf;
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    QString serviceIfStr() const {
 | 
					 | 
				
			||||||
        if (m_serviceIf == ApplyService::NEVER) {
 | 
					 | 
				
			||||||
            return "never";
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
        if (m_serviceIf == ApplyService::ALWAYS) {
 | 
					 | 
				
			||||||
            return "always";
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
        if (m_serviceIf == ApplyService::MATCH_PREV_DAY) {
 | 
					 | 
				
			||||||
            return "match prev day";
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
        if (m_serviceIf == ApplyService::MATCH_NEXT_DAY) {
 | 
					 | 
				
			||||||
            return "match next day";
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
        return QString("ERROR unknown service application: %1").arg(static_cast<int>(m_serviceIf));
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    friend QDebug operator<<(QDebug debug, ATBTariffService const &ts) {
 | 
					 | 
				
			||||||
        QDebugStateSaver saver(debug);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        debug.nospace()
 | 
					 | 
				
			||||||
            << "\nTariffService:\n"
 | 
					 | 
				
			||||||
            << "       week day: " << ts.m_weekDay << "\n"
 | 
					 | 
				
			||||||
            << "           date: " << ts.m_date.toString(Qt::ISODate) << "\n"
 | 
					 | 
				
			||||||
            << "             id: " << ts.m_id << "\n"
 | 
					 | 
				
			||||||
            << "          start: " << ts.m_range.m_start << "\n"
 | 
					 | 
				
			||||||
            << "            end: " << ts.m_range.m_end << "\n"
 | 
					 | 
				
			||||||
            << "       duration: " << ts.m_range.m_duration << "\n"
 | 
					 | 
				
			||||||
            << "     prepaid if: " << ts.serviceIfStr() << endl;
 | 
					 | 
				
			||||||
        return debug;
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
};
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#endif // TARIFF_SERVICE_H_INCLUDED
 | 
					 | 
				
			||||||
@@ -1,40 +0,0 @@
 | 
				
			|||||||
#ifndef ATB_TARIFF_SETTINGS_H_INCLUDED
 | 
					 | 
				
			||||||
#define ATB_TARIFF_SETTINGS_H_INCLUDED
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#include <QDebug>
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
struct ATBTariffSettings {
 | 
					 | 
				
			||||||
    int m_max_price;
 | 
					 | 
				
			||||||
    int m_min_price;
 | 
					 | 
				
			||||||
    int m_max_time;
 | 
					 | 
				
			||||||
    int m_min_time;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    explicit ATBTariffSettings()
 | 
					 | 
				
			||||||
      : m_max_price(0)
 | 
					 | 
				
			||||||
      , m_min_price(0)
 | 
					 | 
				
			||||||
      , m_max_time(0)
 | 
					 | 
				
			||||||
      , m_min_time(0) {
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    explicit ATBTariffSettings(int max_price, int min_price, int max_time, int min_time)
 | 
					 | 
				
			||||||
      : m_max_price(max_price)
 | 
					 | 
				
			||||||
      , m_min_price(min_price)
 | 
					 | 
				
			||||||
      , m_max_time(max_time)
 | 
					 | 
				
			||||||
      , m_min_time(min_time) {
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    friend QDebug operator<<(QDebug debug, ATBTariffSettings const &ts) {
 | 
					 | 
				
			||||||
        QDebugStateSaver saver(debug);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        debug.nospace()
 | 
					 | 
				
			||||||
            << "                max_price: " << ts.m_max_price << "\n"
 | 
					 | 
				
			||||||
            << "                min_price: " << ts.m_min_price << "\n"
 | 
					 | 
				
			||||||
            << "                 max_time: " << ts.m_max_time << "\n"
 | 
					 | 
				
			||||||
            << "                 min_time: " << ts.m_min_time << endl;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        return debug;
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
};
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#endif // ATB_TARIFF_SETTINGS_H_INCLUDED
 | 
					 | 
				
			||||||
@@ -1,39 +1,12 @@
 | 
				
			|||||||
#ifndef TIME_RANGE_H_INCLUDED
 | 
					#ifndef TIME_RANGE_H_INCLUDED
 | 
				
			||||||
#define TIME_RANGE_H_INCLUDED
 | 
					#define TIME_RANGE_H_INCLUDED
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "atb_time.h"
 | 
					#include "time_range_header.h"
 | 
				
			||||||
 | 
					 | 
				
			||||||
#include <QString>
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
struct TimeRange {
 | 
					struct TimeRange {
 | 
				
			||||||
    ATBTime m_start;
 | 
					public:
 | 
				
			||||||
    ATBTime m_end;
 | 
						bool IsActive;
 | 
				
			||||||
    int m_duration;
 | 
						ATBTimeRange TimeRangeStructure;
 | 
				
			||||||
 | 
					 | 
				
			||||||
    explicit TimeRange() = default;
 | 
					 | 
				
			||||||
    explicit TimeRange(QString const &start, QString const &end, int duration)
 | 
					 | 
				
			||||||
      : m_start(start)
 | 
					 | 
				
			||||||
      , m_end(end)
 | 
					 | 
				
			||||||
      , m_duration(duration) {
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
    explicit TimeRange(ATBTime const &start, ATBTime const &end, int duration)
 | 
					 | 
				
			||||||
      : m_start(start)
 | 
					 | 
				
			||||||
      , m_end(end)
 | 
					 | 
				
			||||||
      , m_duration(duration) {
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    explicit TimeRange(TimeRange const &timeRange) {
 | 
					 | 
				
			||||||
      m_start = timeRange.m_start;
 | 
					 | 
				
			||||||
      m_end = timeRange.m_end;
 | 
					 | 
				
			||||||
      m_duration = timeRange.m_duration;
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    TimeRange &operator=(TimeRange && timeRange) {
 | 
					 | 
				
			||||||
        m_start = std::move(timeRange.m_start);
 | 
					 | 
				
			||||||
        m_end = std::move(timeRange.m_end);
 | 
					 | 
				
			||||||
        m_duration = timeRange.m_duration;
 | 
					 | 
				
			||||||
        return *this;
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#endif // TIME_RANGE_H_INCLUDED
 | 
					#endif // TIME_RANGE_H_INCLUDED
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,57 +1,10 @@
 | 
				
			|||||||
#include "tariff_settings.h"
 | 
					#pragma once
 | 
				
			||||||
#include "tariff_carryover_settings.h"
 | 
					#include <string>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include <QString>
 | 
					class ATBWeekDays
 | 
				
			||||||
#include <Qt>
 | 
					{
 | 
				
			||||||
#include <QDate>
 | 
					public:
 | 
				
			||||||
 | 
						int pdiw_id;
 | 
				
			||||||
struct ATBWeekDay {
 | 
						std::string pdiw_label;
 | 
				
			||||||
    enum WeekDayType {USUAL_WEEKDAY=0, HOLIDAY=1};
 | 
						int pdiw_index;
 | 
				
			||||||
 | 
					 | 
				
			||||||
    Qt::DayOfWeek m_id;
 | 
					 | 
				
			||||||
    QString m_name;
 | 
					 | 
				
			||||||
    QDate m_date;
 | 
					 | 
				
			||||||
    WeekDayType m_type;
 | 
					 | 
				
			||||||
    ATBTariffSettings m_tariffSettings;
 | 
					 | 
				
			||||||
    ATBTariffCarryOverSettings m_tariffCarryOverSettings;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    explicit ATBWeekDay()
 | 
					 | 
				
			||||||
        : m_id(Qt::Monday)
 | 
					 | 
				
			||||||
        , m_name("")
 | 
					 | 
				
			||||||
        , m_date(QDate())
 | 
					 | 
				
			||||||
        , m_type(USUAL_WEEKDAY)
 | 
					 | 
				
			||||||
        , m_tariffSettings()
 | 
					 | 
				
			||||||
        , m_tariffCarryOverSettings() {}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    explicit ATBWeekDay(Qt::DayOfWeek id, QString const &name, WeekDayType type,
 | 
					 | 
				
			||||||
                        QDate const &date,
 | 
					 | 
				
			||||||
                        ATBTariffSettings const &tariffSettings,
 | 
					 | 
				
			||||||
                        ATBTariffCarryOverSettings const &tariffCarryOverSettings)
 | 
					 | 
				
			||||||
        : m_id(id)
 | 
					 | 
				
			||||||
        , m_name(name)
 | 
					 | 
				
			||||||
        , m_date(date)
 | 
					 | 
				
			||||||
        , m_type(type)
 | 
					 | 
				
			||||||
        , m_tariffSettings(tariffSettings)
 | 
					 | 
				
			||||||
        , m_tariffCarryOverSettings(tariffCarryOverSettings) {}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    ATBTariffCarryOverSettings &getTariffCarryOverSettings() { return m_tariffCarryOverSettings; }
 | 
					 | 
				
			||||||
    ATBTariffCarryOverSettings const &getTariffCarryOverSettings() const { return m_tariffCarryOverSettings; }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    ATBTariffSettings &getTariffSettings() { return m_tariffSettings; }
 | 
					 | 
				
			||||||
    ATBTariffSettings const &getTariffSettings() const { return m_tariffSettings; }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    friend QDebug operator<<(QDebug debug, ATBWeekDay const &wd) {
 | 
					 | 
				
			||||||
        QDebugStateSaver saver(debug);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        debug.nospace()
 | 
					 | 
				
			||||||
            << "                       id: " << (int)wd.m_id << "\n"
 | 
					 | 
				
			||||||
            << "                     name: " << wd.m_name << "\n"
 | 
					 | 
				
			||||||
            << "                     type: " << (int)wd.m_type << "\n\n"
 | 
					 | 
				
			||||||
            << "          tariff settings: " << "\n"
 | 
					 | 
				
			||||||
                                             << wd.m_tariffSettings << "\n"
 | 
					 | 
				
			||||||
            << "tariff carryover settings: " << "\n"
 | 
					 | 
				
			||||||
                                             << wd.m_tariffCarryOverSettings << endl;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        return debug;
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
@@ -35,8 +35,7 @@ SOURCES += \
 | 
				
			|||||||
    src/tariff_log.cpp \
 | 
					    src/tariff_log.cpp \
 | 
				
			||||||
    src/calculate_price.cpp \
 | 
					    src/calculate_price.cpp \
 | 
				
			||||||
    src/ticket.cpp \
 | 
					    src/ticket.cpp \
 | 
				
			||||||
    src/tariff_global_defines.cpp \
 | 
					    src/tariff_global_defines.cpp
 | 
				
			||||||
    src/atb_time.cpp
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
HEADERS += \
 | 
					HEADERS += \
 | 
				
			||||||
	include/mobilisis/calculator_functions.h \
 | 
						include/mobilisis/calculator_functions.h \
 | 
				
			||||||
@@ -90,10 +89,7 @@ HEADERS += \
 | 
				
			|||||||
    include/mobilisis/tariff_interpolation.h \
 | 
					    include/mobilisis/tariff_interpolation.h \
 | 
				
			||||||
    include/mobilisis/tariff_prepaid.h \
 | 
					    include/mobilisis/tariff_prepaid.h \
 | 
				
			||||||
    include/mobilisis/tariff_carryover.h \
 | 
					    include/mobilisis/tariff_carryover.h \
 | 
				
			||||||
    include/mobilisis/tariff_global_defines.h \
 | 
					    include/mobilisis/tariff_global_defines.h
 | 
				
			||||||
    include/mobilisis/atb_time.h \
 | 
					 | 
				
			||||||
    include/mobilisis/tariff_service.h \
 | 
					 | 
				
			||||||
    include/mobilisis/tariff_out_of_service.h
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
OTHER_FILES += src/main.cpp \
 | 
					OTHER_FILES += src/main.cpp \
 | 
				
			||||||
    ../tariffs/tariff_korneuburg.json \
 | 
					    ../tariffs/tariff_korneuburg.json \
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,151 +0,0 @@
 | 
				
			|||||||
#include "atb_time.h"
 | 
					 | 
				
			||||||
#include <QDebugStateSaver>
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
QDateTime const ATBTime::m_end(QDateTime::fromString("1970-01-02T00:00:00", Qt::ISODate));
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
ATBTime::ATBTime()
 | 
					 | 
				
			||||||
    : m_time(QDateTime::fromString("1970-01-01T00:00:00", Qt::ISODate)) {
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
ATBTime::ATBTime(int h, int m, int /*s*/, int /*ms*/)
 | 
					 | 
				
			||||||
    : m_time(QDateTime::fromString("1970-01-01T00:00:00", Qt::ISODate)) {
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    if (h == 24 && m == 0) {
 | 
					 | 
				
			||||||
        m_time = m_end;
 | 
					 | 
				
			||||||
    } else {
 | 
					 | 
				
			||||||
        QTime const t(h, m, 0, 0);
 | 
					 | 
				
			||||||
        m_time.setTime(t);
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
ATBTime::ATBTime(QString const &t)
 | 
					 | 
				
			||||||
    : m_time(QDateTime::fromString("1970-01-01T00:00:00")) {
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    if (t == "24:00:00") {
 | 
					 | 
				
			||||||
        m_time = m_end;
 | 
					 | 
				
			||||||
    } else {
 | 
					 | 
				
			||||||
        QTime tmp = QTime::fromString(t, Qt::ISODate);
 | 
					 | 
				
			||||||
        if (tmp.isValid()) {
 | 
					 | 
				
			||||||
            m_time.setTime(tmp);
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
ATBTime::ATBTime(QTime const &t)
 | 
					 | 
				
			||||||
    : m_time(QDateTime::fromString("1970-01-01T00:00:00")) {
 | 
					 | 
				
			||||||
    m_time.setTime(t);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
QTime ATBTime::addMSecs(int ms) const {
 | 
					 | 
				
			||||||
    return m_time.time().addMSecs(ms);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
QTime ATBTime::addMSecs(int ms)  {
 | 
					 | 
				
			||||||
    QTime t = m_time.time();
 | 
					 | 
				
			||||||
    t = t.addMSecs(ms);
 | 
					 | 
				
			||||||
    m_time.setTime(t);
 | 
					 | 
				
			||||||
    return t;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
QTime ATBTime::addSecs(int s) const {
 | 
					 | 
				
			||||||
    return m_time.time().addSecs(s);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
QTime ATBTime::addSecs(int s)  {
 | 
					 | 
				
			||||||
    QTime t = m_time.time();
 | 
					 | 
				
			||||||
    t = t.addSecs(s);
 | 
					 | 
				
			||||||
    m_time.setTime(t);
 | 
					 | 
				
			||||||
    return t;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
constexpr QTime ATBTime::fromMSecsSinceStartOfDay(int msecs) {
 | 
					 | 
				
			||||||
    return QTime::fromMSecsSinceStartOfDay(msecs);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
QTime ATBTime::fromString(QString const &string, Qt::DateFormat format) {
 | 
					 | 
				
			||||||
    return QTime::fromString(string, format);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
QTime ATBTime::fromString(QString const &string, QString const &format) {
 | 
					 | 
				
			||||||
    return QTime::fromString(string, format);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
bool ATBTime::isValid(int h, int m, int s, int ms) {
 | 
					 | 
				
			||||||
    return QTime(h, m, s, ms).isValid();
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
int ATBTime::msecsSinceStartOfDay() const {
 | 
					 | 
				
			||||||
    return m_time.time().msecsSinceStartOfDay();
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
bool ATBTime::setHMS(int h, int m, int s, int ms) {
 | 
					 | 
				
			||||||
    if (isValid(h, m, s, ms)) {
 | 
					 | 
				
			||||||
        QTime t(h, m, s, ms);
 | 
					 | 
				
			||||||
        m_time.setTime(t);
 | 
					 | 
				
			||||||
        return true;
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
    return false;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
QString ATBTime::toString(Qt::DateFormat format) const {
 | 
					 | 
				
			||||||
    if (m_time == m_end) {
 | 
					 | 
				
			||||||
        return "24:00:00";
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
    return m_time.time().toString(format);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
bool operator!=(const ATBTime &lhs, const ATBTime &rhs) noexcept {
 | 
					 | 
				
			||||||
    return lhs.m_time.time() != rhs.m_time.time();
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
bool operator<=(const ATBTime &lhs, const ATBTime &rhs) noexcept {
 | 
					 | 
				
			||||||
    if (rhs.m_time == rhs.m_end) {
 | 
					 | 
				
			||||||
        return true;
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
    return lhs.m_time.time() <= rhs.m_time.time();
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
bool operator>=(const ATBTime &lhs, const ATBTime &rhs) noexcept {
 | 
					 | 
				
			||||||
    return lhs.m_time.time() >= rhs.m_time.time();
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
bool operator<(const ATBTime &lhs, const ATBTime &rhs) noexcept {
 | 
					 | 
				
			||||||
    if (rhs.m_time == rhs.m_end) {
 | 
					 | 
				
			||||||
        return true;
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
    return lhs.m_time.time() < rhs.m_time.time();
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
bool operator>(const ATBTime &lhs, const ATBTime &rhs) noexcept {
 | 
					 | 
				
			||||||
    return lhs.m_time.time() > rhs.m_time.time();
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
bool operator==(const ATBTime &lhs, const ATBTime &rhs) noexcept {
 | 
					 | 
				
			||||||
    return lhs.m_time.time() == rhs.m_time.time();
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
QDebug &operator<<(QDebug &debug, ATBTime const &time) {
 | 
					 | 
				
			||||||
    QDebugStateSaver saver(debug);
 | 
					 | 
				
			||||||
    if (time.m_time == time.m_end) {
 | 
					 | 
				
			||||||
        debug.nospace() << QString("24:00:00");
 | 
					 | 
				
			||||||
    } else {
 | 
					 | 
				
			||||||
        debug.nospace() << time.m_time.time().toString(Qt::ISODate);
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
    return debug;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
QDataStream &operator<<(QDataStream &out, ATBTime const &time) {
 | 
					 | 
				
			||||||
    if (time.m_time == time.m_end) {
 | 
					 | 
				
			||||||
        out << QString("24:00:00");
 | 
					 | 
				
			||||||
    } else {
 | 
					 | 
				
			||||||
        out << time.m_time.time();
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
    return out;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
QDataStream &operator>>(QDataStream &in, ATBTime &time) {
 | 
					 | 
				
			||||||
    QTime t;
 | 
					 | 
				
			||||||
    in >> t;
 | 
					 | 
				
			||||||
    time.m_time.setTime(t);
 | 
					 | 
				
			||||||
    return in;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
@@ -26,7 +26,6 @@ QString const CalcState::BELOW_MIN_PARKING_PRICE = "BELOW_MIN_PARKING_PRICE";
 | 
				
			|||||||
QString const CalcState::ABOVE_MAX_PARKING_PRICE = "ABOVE_MAX_PARKING_PRICE";
 | 
					QString const CalcState::ABOVE_MAX_PARKING_PRICE = "ABOVE_MAX_PARKING_PRICE";
 | 
				
			||||||
QString const CalcState::OVERPAID = "OVERPAID";
 | 
					QString const CalcState::OVERPAID = "OVERPAID";
 | 
				
			||||||
QString const CalcState::OUTSIDE_ALLOWED_PARKING_TIME = "OUTSIDE_ALLOWED_PARKING_TIME";
 | 
					QString const CalcState::OUTSIDE_ALLOWED_PARKING_TIME = "OUTSIDE_ALLOWED_PARKING_TIME";
 | 
				
			||||||
QString const CalcState::SUCCESS_MAXPRICE = "SUCCESS_MAXPRICE";
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
QList<int> CALCULATE_LIBRARY_API get_time_steps(Configuration *cfg) {
 | 
					QList<int> CALCULATE_LIBRARY_API get_time_steps(Configuration *cfg) {
 | 
				
			||||||
    return Calculator::GetInstance().GetTimeSteps(cfg);
 | 
					    return Calculator::GetInstance().GetTimeSteps(cfg);
 | 
				
			||||||
@@ -37,13 +36,11 @@ int CALCULATE_LIBRARY_API get_minimal_parkingtime(Configuration const *cfg,
 | 
				
			|||||||
                                                  int paymentOptionIndex) {
 | 
					                                                  int paymentOptionIndex) {
 | 
				
			||||||
    int minTime = 0;
 | 
					    int minTime = 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    paymentOptionIndex = getPaymentOptionIndex(*cfg);
 | 
					    qCritical() << __func__ << __LINE__ << "permit" << PermitType(permitType).toString();
 | 
				
			||||||
    if (paymentOptionIndex == -1) {
 | 
					
 | 
				
			||||||
    paymentOptionIndex = cfg->getPaymentOptionIndex(permitType);
 | 
					    paymentOptionIndex = cfg->getPaymentOptionIndex(permitType);
 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
    qCritical() << __func__ << __LINE__ << "paymentOptionIndex" << paymentOptionIndex;
 | 
					    qCritical() << __func__ << __LINE__ << "paymentOptionIndex" << paymentOptionIndex;
 | 
				
			||||||
    qCritical() << __func__ << __LINE__ << "permit" << PermitType(permitType).toString();
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
    switch(permitType) {
 | 
					    switch(permitType) {
 | 
				
			||||||
    case PERMIT_TYPE::SHORT_TERM_PARKING: { // e.g. szeged (customer_281)
 | 
					    case PERMIT_TYPE::SHORT_TERM_PARKING: { // e.g. szeged (customer_281)
 | 
				
			||||||
@@ -73,11 +70,7 @@ int CALCULATE_LIBRARY_API get_maximal_parkingtime(Configuration const *cfg,
 | 
				
			|||||||
                                                  PERMIT_TYPE permitType,
 | 
					                                                  PERMIT_TYPE permitType,
 | 
				
			||||||
                                                  int paymentOptionIndex) {
 | 
					                                                  int paymentOptionIndex) {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    paymentOptionIndex = getPaymentOptionIndex(*cfg);
 | 
					 | 
				
			||||||
    if (paymentOptionIndex == -1) {
 | 
					 | 
				
			||||||
    paymentOptionIndex = cfg->getPaymentOptionIndex(permitType);
 | 
					    paymentOptionIndex = cfg->getPaymentOptionIndex(permitType);
 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    int maxTime = 0;
 | 
					    int maxTime = 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    switch(permitType) {
 | 
					    switch(permitType) {
 | 
				
			||||||
@@ -102,10 +95,7 @@ int CALCULATE_LIBRARY_API get_minimal_parkingprice(Configuration *cfg,
 | 
				
			|||||||
                                                   int paymentOptionIndex,
 | 
					                                                   int paymentOptionIndex,
 | 
				
			||||||
                                                   QDateTime const &start) {
 | 
					                                                   QDateTime const &start) {
 | 
				
			||||||
    int minPrice = -1;
 | 
					    int minPrice = -1;
 | 
				
			||||||
 | 
					 | 
				
			||||||
    if ((paymentOptionIndex = getPaymentOptionIndex(*cfg, start)) == -1) {
 | 
					 | 
				
			||||||
    paymentOptionIndex = cfg->getPaymentOptionIndex(permitType);
 | 
					    paymentOptionIndex = cfg->getPaymentOptionIndex(permitType);
 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
    int payment_method_id = cfg->getPaymentOptions(paymentOptionIndex).pop_payment_method_id;
 | 
					    int payment_method_id = cfg->getPaymentOptions(paymentOptionIndex).pop_payment_method_id;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -332,18 +322,13 @@ int CALCULATE_LIBRARY_API get_maximal_parkingprice(Configuration *cfg,
 | 
				
			|||||||
    int maxPrice = -1;
 | 
					    int maxPrice = -1;
 | 
				
			||||||
    static const PaymentMethod paymentMethodId = Utilities::getPaymentMethodId(cfg);
 | 
					    static const PaymentMethod paymentMethodId = Utilities::getPaymentMethodId(cfg);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if ((paymentOptionIndex = getPaymentOptionIndex(*cfg)) == -1) {
 | 
					 | 
				
			||||||
    paymentOptionIndex = cfg->getPaymentOptionIndex(permitType);
 | 
					    paymentOptionIndex = cfg->getPaymentOptionIndex(permitType);
 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
    switch(permitType) {
 | 
					    switch(permitType) {
 | 
				
			||||||
    case PERMIT_TYPE::SHORT_TERM_PARKING: { // e.g. szeged (customer_281)
 | 
					    case PERMIT_TYPE::SHORT_TERM_PARKING: { // e.g. szeged (customer_281)
 | 
				
			||||||
        if (paymentMethodId == PaymentMethod::Progressive
 | 
					        if (paymentMethodId == PaymentMethod::Progressive || paymentMethodId == PaymentMethod::Steps) {
 | 
				
			||||||
         || paymentMethodId == PaymentMethod::Steps
 | 
					            paymentOptionIndex = cfg->getPaymentOptionIndex(permitType);
 | 
				
			||||||
         || paymentMethodId == PaymentMethod::Unified) {
 | 
					            maxPrice = cfg->getPaymentOptions(paymentOptionIndex).pop_max_price;
 | 
				
			||||||
            //maxPrice = Utilities::getMaximalParkingPrice(cfg, paymentMethodId);
 | 
					 | 
				
			||||||
            ATBPaymentOption const &po = cfg->getPaymentOptions(paymentOptionIndex);
 | 
					 | 
				
			||||||
            maxPrice = po.pop_max_price; // maxTime is given in minutes
 | 
					 | 
				
			||||||
        } else { // PaymentMethod::Linear -> e.g. szeged
 | 
					        } else { // PaymentMethod::Linear -> e.g. szeged
 | 
				
			||||||
            int const key = cfg->getPaymentOptions(paymentOptionIndex).pop_id;
 | 
					            int const key = cfg->getPaymentOptions(paymentOptionIndex).pop_id;
 | 
				
			||||||
            int const maxTime = cfg->getPaymentOptions(paymentOptionIndex).pop_max_time; // maxTime is given in minutes
 | 
					            int const maxTime = cfg->getPaymentOptions(paymentOptionIndex).pop_max_time; // maxTime is given in minutes
 | 
				
			||||||
@@ -484,15 +469,6 @@ int CALCULATE_LIBRARY_API compute_next_timestep(parking_tariff_t *tariff, int cu
 | 
				
			|||||||
    qCritical() << __LINE__ << "compute_next_timestep()     currentTimeMinutes: " << currentTimeMinutes;
 | 
					    qCritical() << __LINE__ << "compute_next_timestep()     currentTimeMinutes: " << currentTimeMinutes;
 | 
				
			||||||
    qCritical() << __LINE__ << "compute_next_timestep() up/down (1=up, 0=down): " << UpDown;
 | 
					    qCritical() << __LINE__ << "compute_next_timestep() up/down (1=up, 0=down): " << UpDown;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (UpDown == 1) {
 | 
					 | 
				
			||||||
        if (Calculator::GetInstance().timeLimitReached()) {
 | 
					 | 
				
			||||||
            qCritical() << __LINE__ << "compute_next_timestep() time limit reached";
 | 
					 | 
				
			||||||
            Calculator::GetInstance().setTimeLimitReached(false);
 | 
					 | 
				
			||||||
            Calculator::GetInstance().resetCostAtTimeLimit();
 | 
					 | 
				
			||||||
            return currentTimeMinutes;
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    // FIXME
 | 
					    // FIXME
 | 
				
			||||||
    //std::optional<ATBPaymentOption> paymentOption = tariff->getPaymentOptionForKey(permitType.get());
 | 
					    //std::optional<ATBPaymentOption> paymentOption = tariff->getPaymentOptionForKey(permitType.get());
 | 
				
			||||||
    //if (!paymentOption.has_value()) {
 | 
					    //if (!paymentOption.has_value()) {
 | 
				
			||||||
@@ -500,11 +476,7 @@ int CALCULATE_LIBRARY_API compute_next_timestep(parking_tariff_t *tariff, int cu
 | 
				
			|||||||
    //    return currentTimeMinutes;
 | 
					    //    return currentTimeMinutes;
 | 
				
			||||||
    //}
 | 
					    //}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    int paymentOptionIndex = getPaymentOptionIndex(*tariff);
 | 
					    int const paymentOptionIndex = tariff->getPaymentOptionIndex(permitType);
 | 
				
			||||||
    if (paymentOptionIndex == -1) {
 | 
					 | 
				
			||||||
        paymentOptionIndex = tariff->getPaymentOptionIndex(permitType);
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    int const &pop_plus_steps = tariff->getPaymentOptions(paymentOptionIndex).pop_plus_steps;
 | 
					    int const &pop_plus_steps = tariff->getPaymentOptions(paymentOptionIndex).pop_plus_steps;
 | 
				
			||||||
    int const &pop_minus_steps = tariff->getPaymentOptions(paymentOptionIndex).pop_minus_steps;
 | 
					    int const &pop_minus_steps = tariff->getPaymentOptions(paymentOptionIndex).pop_minus_steps;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -529,9 +501,6 @@ int CALCULATE_LIBRARY_API compute_next_timestep(parking_tariff_t *tariff, int cu
 | 
				
			|||||||
    case PaymentMethod::Steps:
 | 
					    case PaymentMethod::Steps:
 | 
				
			||||||
        qCritical() << __LINE__ << "compute_next_timestep() paymentMethodId: Steps";
 | 
					        qCritical() << __LINE__ << "compute_next_timestep() paymentMethodId: Steps";
 | 
				
			||||||
        break;
 | 
					        break;
 | 
				
			||||||
    case PaymentMethod::Unified:
 | 
					 | 
				
			||||||
        qCritical() << __LINE__ << "compute_next_timestep() paymentMethodId: Unified";
 | 
					 | 
				
			||||||
        break;
 | 
					 | 
				
			||||||
    case PaymentMethod::Undefined:
 | 
					    case PaymentMethod::Undefined:
 | 
				
			||||||
        qCritical() << __LINE__ << "compute_next_timestep() paymentMethodId: Undefined";
 | 
					        qCritical() << __LINE__ << "compute_next_timestep() paymentMethodId: Undefined";
 | 
				
			||||||
        break;
 | 
					        break;
 | 
				
			||||||
@@ -542,8 +511,6 @@ int CALCULATE_LIBRARY_API compute_next_timestep(parking_tariff_t *tariff, int cu
 | 
				
			|||||||
    if ((paymentMethodId == PaymentMethod::Steps) ||
 | 
					    if ((paymentMethodId == PaymentMethod::Steps) ||
 | 
				
			||||||
        // progressive tariff: e.g. Neuhauser, Kirchdorf (743)
 | 
					        // progressive tariff: e.g. Neuhauser, Kirchdorf (743)
 | 
				
			||||||
        (paymentMethodId == PaymentMethod::Progressive) ||
 | 
					        (paymentMethodId == PaymentMethod::Progressive) ||
 | 
				
			||||||
        // unified tariff: starting with Bad Neuenahr (249), Tariff for Zone5
 | 
					 | 
				
			||||||
        (paymentMethodId == PaymentMethod::Unified) ||
 | 
					 | 
				
			||||||
        // degressive tariff: e.g. Fuchs Technik (500)
 | 
					        // degressive tariff: e.g. Fuchs Technik (500)
 | 
				
			||||||
        (paymentMethodId == PaymentMethod::Degressive))
 | 
					        (paymentMethodId == PaymentMethod::Degressive))
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
@@ -574,7 +541,7 @@ int CALCULATE_LIBRARY_API compute_next_timestep(parking_tariff_t *tariff, int cu
 | 
				
			|||||||
                }
 | 
					                }
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
            // max. tolerance set to 3 minutes
 | 
					            // max. tolerance set to 3 minutes
 | 
				
			||||||
            // unsigned const tolerance = std::min(minimalDistance, (unsigned)(3));
 | 
					            unsigned const tolerance = std::min(minimalDistance, (unsigned)(3));
 | 
				
			||||||
            if (j != -1) {
 | 
					            if (j != -1) {
 | 
				
			||||||
                stepList[j] = currentTimeMinutes;
 | 
					                stepList[j] = currentTimeMinutes;
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
@@ -689,21 +656,7 @@ CalcState CALCULATE_LIBRARY_API compute_price_for_parking_ticket(
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    CalcState calcState;
 | 
					    CalcState calcState;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    QDate const d(1970, 1, 1);
 | 
					    int const paymentOptionIndex = tariff->getPaymentOptionIndex(permitType.get());
 | 
				
			||||||
    QTime const t(0, 0, 0);
 | 
					 | 
				
			||||||
    QDateTime start(d, t, Qt::UTC);
 | 
					 | 
				
			||||||
    start = start.toLocalTime().addSecs(start_parking_time * 60);
 | 
					 | 
				
			||||||
    QDateTime end(start);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    int paymentOptionIndex = getPaymentOptionIndex(*tariff, start);
 | 
					 | 
				
			||||||
    if (paymentOptionIndex == -1) {
 | 
					 | 
				
			||||||
        paymentOptionIndex = tariff->getPaymentOptionIndex(permitType.get());
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    qCritical() << __func__ << ":" << __LINE__ << "pop_max_price" << tariff->getPaymentOptions(paymentOptionIndex).pop_max_price;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    tariff->getPaymentOptions(paymentOptionIndex).pop_max_price
 | 
					 | 
				
			||||||
        = tariff->getPaymentOptions(paymentOptionIndex).pop_max_price_save;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
    double minMin = tariff->PaymentOption.find(tariff->getPaymentOptions(paymentOptionIndex).pop_payment_method_id)->second.pop_min_time;
 | 
					    double minMin = tariff->PaymentOption.find(tariff->getPaymentOptions(paymentOptionIndex).pop_payment_method_id)->second.pop_min_time;
 | 
				
			||||||
    double maxMin = tariff->PaymentOption.find(tariff->getPaymentOptions(paymentOptionIndex).pop_payment_method_id)->second.pop_max_time;
 | 
					    double maxMin = tariff->PaymentOption.find(tariff->getPaymentOptions(paymentOptionIndex).pop_payment_method_id)->second.pop_max_time;
 | 
				
			||||||
@@ -731,11 +684,11 @@ CalcState CALCULATE_LIBRARY_API compute_price_for_parking_ticket(
 | 
				
			|||||||
        return calcState.set(CalcState::State::SUCCESS);
 | 
					        return calcState.set(CalcState::State::SUCCESS);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    //QDate const d(1970, 1, 1);
 | 
					    QDate const d(1970, 1, 1);
 | 
				
			||||||
    //QTime const t(0, 0, 0);
 | 
					    QTime const t(0, 0, 0);
 | 
				
			||||||
    //QDateTime start(d, t, Qt::UTC);
 | 
					    QDateTime start(d, t, Qt::UTC);
 | 
				
			||||||
    //start = start.toLocalTime().addSecs(start_parking_time * 60);
 | 
					    start = start.toLocalTime().addSecs(start_parking_time * 60);
 | 
				
			||||||
    //QDateTime end(start);
 | 
					    QDateTime end(start);
 | 
				
			||||||
    if (start.isValid()) {
 | 
					    if (start.isValid()) {
 | 
				
			||||||
        double cost = Calculator::GetInstance().GetCostFromDuration(
 | 
					        double cost = Calculator::GetInstance().GetCostFromDuration(
 | 
				
			||||||
                    tariff,
 | 
					                    tariff,
 | 
				
			||||||
@@ -764,33 +717,34 @@ CalcState CALCULATE_LIBRARY_API compute_price_for_parking_ticket(
 | 
				
			|||||||
        QDateTime &end_parking_time,
 | 
					        QDateTime &end_parking_time,
 | 
				
			||||||
        struct price_t *price,
 | 
					        struct price_t *price,
 | 
				
			||||||
        PermitType permitType,
 | 
					        PermitType permitType,
 | 
				
			||||||
        bool prepaid)
 | 
					        bool prepaid) {
 | 
				
			||||||
{
 | 
					 | 
				
			||||||
    CalcState calcState;
 | 
					    CalcState calcState;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    QDateTime start_parking_time(start_parking_time_);
 | 
					    QDateTime start_parking_time(start_parking_time_);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    int paymentOptionIndex = getPaymentOptionIndex(*tariff, start_parking_time);
 | 
					    int paymentOptionIndex = tariff->getPaymentOptionIndex(permitType);
 | 
				
			||||||
    if (paymentOptionIndex == -1) {
 | 
					 | 
				
			||||||
        paymentOptionIndex = tariff->getPaymentOptionIndex(permitType);
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
    tariff->getPaymentOptions(paymentOptionIndex).pop_max_price
 | 
					    QList<int> tlist = Calculator::GetInstance().GetTimeSteps(tariff, paymentOptionIndex, start_parking_time);
 | 
				
			||||||
        = tariff->getPaymentOptions(paymentOptionIndex).pop_max_price_save;
 | 
					    //Q_UNUSED(tlist);
 | 
				
			||||||
 | 
					    qCritical() << __func__ << __LINE__ << tlist;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    double minMin = tariff->getPaymentOptions(paymentOptionIndex).pop_min_time;
 | 
					    double minMin = tariff->getPaymentOptions(paymentOptionIndex).pop_min_time;
 | 
				
			||||||
    double maxMin = tariff->getPaymentOptions(paymentOptionIndex).pop_max_time;
 | 
					    double maxMin = tariff->getPaymentOptions(paymentOptionIndex).pop_max_time;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    // DEBUG
 | 
					    // netto_parking_time = minMin;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    //if (DBG_LEVEL >= DBG_DEBUG) {
 | 
				
			||||||
        qCritical() << "compute_price_for_parking_ticket() " << endl
 | 
					        qCritical() << "compute_price_for_parking_ticket() " << endl
 | 
				
			||||||
                    << "          paymentOptionIndex: " << paymentOptionIndex << endl
 | 
					                    << "          paymentOptionIndex: " << paymentOptionIndex << endl
 | 
				
			||||||
                    << "          start_parking_time: " << start_parking_time << endl
 | 
					                    << "          start_parking_time: " << start_parking_time << endl
 | 
				
			||||||
 | 
					                    << "         start_parking_time_: " << start_parking_time_ << endl
 | 
				
			||||||
                    << "          netto_parking_time: " << netto_parking_time << endl
 | 
					                    << "          netto_parking_time: " << netto_parking_time << endl
 | 
				
			||||||
                    << "               start + netto: " << start_parking_time.addSecs(netto_parking_time * 60) << endl
 | 
					                    << "               start + netto: " << start_parking_time.addSecs(netto_parking_time * 60) << endl
 | 
				
			||||||
                    << "                      minMin: " << minMin << endl
 | 
					                    << "                      minMin: " << minMin << endl
 | 
				
			||||||
                << "                      maxMin: " << maxMin
 | 
					                    << "                      maxMin: " << maxMin << endl
 | 
				
			||||||
                << "                     prepaid: " << prepaid
 | 
					                    << "                     prepaid: " << prepaid << endl
 | 
				
			||||||
                    << "                  permitType: " << permitType.toString();
 | 
					                    << "                  permitType: " << permitType.toString();
 | 
				
			||||||
 | 
					    //}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (netto_parking_time < 0) {
 | 
					    if (netto_parking_time < 0) {
 | 
				
			||||||
        calcState.setDesc(QString("end=%1, start=%2")
 | 
					        calcState.setDesc(QString("end=%1, start=%2")
 | 
				
			||||||
@@ -798,14 +752,17 @@ CalcState CALCULATE_LIBRARY_API compute_price_for_parking_ticket(
 | 
				
			|||||||
                               start_parking_time.toString(Qt::ISODate)));
 | 
					                               start_parking_time.toString(Qt::ISODate)));
 | 
				
			||||||
        return calcState.set(CalcState::State::NEGATIVE_PARKING_TIME);
 | 
					        return calcState.set(CalcState::State::NEGATIVE_PARKING_TIME);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (netto_parking_time > maxMin) {
 | 
					    if (netto_parking_time > maxMin) {
 | 
				
			||||||
        calcState.setDesc(QString("duration=%1, maxMin=%2").arg(netto_parking_time).arg(maxMin));
 | 
					        calcState.setDesc(QString("duration=%1, maxMin=%2").arg(netto_parking_time).arg(maxMin));
 | 
				
			||||||
        return calcState.set(CalcState::State::ABOVE_MAX_PARKING_TIME);
 | 
					        return calcState.set(CalcState::State::ABOVE_MAX_PARKING_TIME);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (netto_parking_time < minMin) {
 | 
					    if (netto_parking_time < minMin) {
 | 
				
			||||||
        calcState.setDesc(QString("duration=%1, minMin=%2").arg(netto_parking_time).arg(minMin));
 | 
					        calcState.setDesc(QString("duration=%1, minMin=%2").arg(netto_parking_time).arg(minMin));
 | 
				
			||||||
        return calcState.set(CalcState::State::BELOW_MIN_PARKING_TIME);
 | 
					        return calcState.set(CalcState::State::BELOW_MIN_PARKING_TIME);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (netto_parking_time == 0) {
 | 
					    if (netto_parking_time == 0) {
 | 
				
			||||||
        return calcState.set(CalcState::State::SUCCESS);
 | 
					        return calcState.set(CalcState::State::SUCCESS);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
@@ -823,105 +780,48 @@ CalcState CALCULATE_LIBRARY_API compute_price_for_parking_ticket(
 | 
				
			|||||||
                return calcState;
 | 
					                return calcState;
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            QList<int> tlist = Calculator::GetInstance().GetTimeSteps(tariff);
 | 
					 | 
				
			||||||
            Q_UNUSED(tlist);
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
            // compute cost (price)
 | 
					            // compute cost (price)
 | 
				
			||||||
            cost = Calculator::GetInstance().GetCostFromDuration(tariff, start_parking_time, netto_parking_time, paymentOptionIndex);
 | 
					            cost = Calculator::GetInstance().GetCostFromDuration(tariff, start_parking_time, netto_parking_time, paymentOptionIndex);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            int weekDay = start_parking_time.date().dayOfWeek();
 | 
					            int weekDay = start_parking_time.date().dayOfWeek();
 | 
				
			||||||
            int pop_carry_over_option_id = tariff->getPaymentOptions(paymentOptionIndex).pop_carry_over_option_id;
 | 
					            int pop_carry_over_option_id = tariff->getPaymentOptions(paymentOptionIndex).pop_carry_over_option_id;
 | 
				
			||||||
            int pop_prepaid_option_id = tariff->getPaymentOptions(paymentOptionIndex).pop_prepaid_option_id;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
            std::optional<ATBPeriodYear> yperiod = Utilities::GetYearPeriodActive(tariff, start_parking_time);
 | 
					            std::optional<ATBPeriodYear> yperiod = Utilities::GetYearPeriodActive(tariff, start_parking_time);
 | 
				
			||||||
            int period_id = -1;
 | 
					 | 
				
			||||||
            if (yperiod.has_value()) {
 | 
					            if (yperiod.has_value()) {
 | 
				
			||||||
                ATBPeriodYear const &period = yperiod.value();
 | 
					                ATBPeriodYear const &period = yperiod.value();
 | 
				
			||||||
                period_id = period.pye_id;
 | 
					 | 
				
			||||||
                pop_carry_over_option_id = period.pye_id;
 | 
					                pop_carry_over_option_id = period.pye_id;
 | 
				
			||||||
                pop_prepaid_option_id = period.pye_id;
 | 
					                //qCritical() << __func__ << __LINE__ << "re-computed carry-over-id" << pop_carry_over_option_id;
 | 
				
			||||||
                qCritical() << __func__ << ":" << __LINE__ << "re-computed carry-over-id" << pop_carry_over_option_id;
 | 
					 | 
				
			||||||
                qCritical() << __func__ << ":" << __LINE__ << "   re-computed prepaid-id" << pop_prepaid_option_id;
 | 
					 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            QTime carryOverStart = tariff->TariffCarryOverOptions.find(pop_carry_over_option_id)->second.carryover[weekDay].static_start;
 | 
					            QTime const carryOverStart = tariff->TariffCarryOverOptions.find(pop_carry_over_option_id)->second.carryover[weekDay].static_start;
 | 
				
			||||||
            int carryOverDuration = tariff->TariffCarryOverOptions.find(pop_carry_over_option_id)->second.carryover[weekDay].duration;
 | 
					            int const carryOverDuration = tariff->TariffCarryOverOptions.find(pop_carry_over_option_id)->second.carryover[weekDay].duration;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            qCritical() << __func__ << ":" << __LINE__ << "   carryOverStart" << carryOverStart.toString(Qt::ISODate);
 | 
					            //qCritical() << __func__ << __LINE__ << "carryOverStart" << carryOverStart.toString(Qt::ISODate);
 | 
				
			||||||
            qCritical() << __func__ << ":" << __LINE__ << "carryOverDuration" << carryOverDuration;
 | 
					            //qCritical() << __func__ << __LINE__ << "carryOverDuration" << carryOverDuration;
 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
            QDateTime effectiveStartTime(start_parking_time);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
            // handle special days
 | 
					 | 
				
			||||||
            int const specialDayId = tariff->specialDayId(start_parking_time);
 | 
					 | 
				
			||||||
            if (specialDayId > 0) { // found special day
 | 
					 | 
				
			||||||
                for (auto[itr, rangeEnd] = tariff->SpecialDaysWorktime.equal_range(specialDayId); itr != rangeEnd; ++itr) {
 | 
					 | 
				
			||||||
                    ATBSpecialDaysWorktime const &wt = itr->second;
 | 
					 | 
				
			||||||
                    switch(period_id) {
 | 
					 | 
				
			||||||
                    case 1: // summer term
 | 
					 | 
				
			||||||
                        if ((wt.pedwt_paid & 1) == 0) {
 | 
					 | 
				
			||||||
                            // does not have to be paid, move to next midnight
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                            // better: start of next day (falls kein vorkauf besteht)
 | 
					 | 
				
			||||||
                            effectiveStartTime = effectiveStartTime.addDays(1);
 | 
					 | 
				
			||||||
                            effectiveStartTime.setTime(QTime(0, 0, 0));
 | 
					 | 
				
			||||||
                        }
 | 
					 | 
				
			||||||
                        break;
 | 
					 | 
				
			||||||
                    case 2: // winter term
 | 
					 | 
				
			||||||
                        if ((wt.pedwt_paid & 2) == 0) {
 | 
					 | 
				
			||||||
                            // does not have to be paid, move to next midnight
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                            // better: start of next day (falls kein vorkauf besteht)
 | 
					 | 
				
			||||||
                            effectiveStartTime = effectiveStartTime.addDays(1);
 | 
					 | 
				
			||||||
                            effectiveStartTime.setTime(QTime(0, 0, 0));
 | 
					 | 
				
			||||||
                        }
 | 
					 | 
				
			||||||
                        break;
 | 
					 | 
				
			||||||
                    default:;
 | 
					 | 
				
			||||||
                    }
 | 
					 | 
				
			||||||
                }
 | 
					 | 
				
			||||||
            }
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
            // handle prepaid option
 | 
					            // handle prepaid option
 | 
				
			||||||
 | 
					            QDateTime effectiveStartTime(start_parking_time);
 | 
				
			||||||
            int const prepaid_option_id = tariff->getPaymentOptions(paymentOptionIndex).pop_prepaid_option_id;
 | 
					            int const prepaid_option_id = tariff->getPaymentOptions(paymentOptionIndex).pop_prepaid_option_id;
 | 
				
			||||||
            std::optional<ATBPrepaid> prepaidOption = tariff->getPrepaidType(prepaid_option_id);
 | 
					            std::optional<ATBPrepaid> prepaidOption = tariff->getPrepaidType(prepaid_option_id);
 | 
				
			||||||
            if (prepaidOption.has_value()) {
 | 
					            if (prepaidOption.has_value()) {
 | 
				
			||||||
                ATBPrepaid const &p = prepaidOption.value();
 | 
					                ATBPrepaid const &p = prepaidOption.value();
 | 
				
			||||||
                if (p.never) {
 | 
					                if (p.never) {
 | 
				
			||||||
                    qCritical() << __func__ << ":" << __LINE__ << "prepaid: no";
 | 
					                    qCritical() << __func__ << __LINE__ << "prepaid: no";
 | 
				
			||||||
                } else {
 | 
					                } else {
 | 
				
			||||||
                    qCritical() << __func__ << ":" << __LINE__ << "    prepaidStart" << p.prepaid[weekDay].static_start.toString(Qt::ISODate);
 | 
					                    if (start_parking_time.time() < p.static_end) {     // static_end: e.g. 08:00:00
 | 
				
			||||||
                    qCritical() << __func__ << ":" << __LINE__ << "      prepaidEnd" << p.prepaid[weekDay].static_end.toString(Qt::ISODate);
 | 
					                        effectiveStartTime.setTime(p.static_end);
 | 
				
			||||||
                    qCritical() << __func__ << ":" << __LINE__ << "prepaid duration" << p.prepaid[weekDay].duration;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                    if (start_parking_time.time() < p.prepaid[weekDay].static_end) {     // static_end: e.g. 08:00:00
 | 
					 | 
				
			||||||
                        effectiveStartTime.setTime(p.prepaid[weekDay].static_end);
 | 
					 | 
				
			||||||
                    } else
 | 
					                    } else
 | 
				
			||||||
                    if (start_parking_time.time() > p.prepaid[weekDay].static_start) {   // static_start: e.g. 22:00:00
 | 
					                    if (start_parking_time.time() > p.static_start) {   // static_start: e.g. 22:00:00
 | 
				
			||||||
                        effectiveStartTime.setTime(p.prepaid[weekDay].static_start);
 | 
					                        effectiveStartTime.setTime(p.static_start);
 | 
				
			||||||
 | 
					                        effectiveStartTime == effectiveStartTime.addSecs(carryOverDuration * 60);
 | 
				
			||||||
                    }
 | 
					                    }
 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            effectiveStartTime.setTime(QTime(effectiveStartTime.time().hour(),
 | 
					 | 
				
			||||||
                                             effectiveStartTime.time().minute(), 0));
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
            qCritical() << __func__ << ":" << __LINE__ << "effectiveStartTime:" << effectiveStartTime.toString(Qt::ISODate);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
            int const carryOver = tariff->getPaymentOptions(paymentOptionIndex).pop_carry_over;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
            qCritical() << __func__ << ":" << __LINE__ << "   carryOver flag" << carryOver;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
            if (carryOver == 1) {
 | 
					 | 
				
			||||||
                QTime carryOverStart = tariff->TariffCarryOverOptions.find(pop_carry_over_option_id)->second.carryover[weekDay].static_start;
 | 
					 | 
				
			||||||
                int carryOverDuration = tariff->TariffCarryOverOptions.find(pop_carry_over_option_id)->second.carryover[weekDay].duration;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                qCritical() << __func__ << ":" << __LINE__ << "   carryOverStart" << carryOverStart.toString(Qt::ISODate);
 | 
					 | 
				
			||||||
                qCritical() << __func__ << ":" << __LINE__ << "carryOverDuration" << carryOverDuration;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
            // handle carry over
 | 
					            // handle carry over
 | 
				
			||||||
            int minutesUntilCarryOver = effectiveStartTime.time().secsTo(carryOverStart) / 60;
 | 
					            int minutesUntilCarryOver = effectiveStartTime.time().secsTo(carryOverStart) / 60;
 | 
				
			||||||
                if ((minutesUntilCarryOver > 0) && (netto_parking_time > minutesUntilCarryOver)) {
 | 
					            if (netto_parking_time >= minutesUntilCarryOver) {
 | 
				
			||||||
                int const rest = netto_parking_time - minutesUntilCarryOver;
 | 
					                int const rest = netto_parking_time - minutesUntilCarryOver;
 | 
				
			||||||
                QDateTime s(effectiveStartTime);
 | 
					                QDateTime s(effectiveStartTime);
 | 
				
			||||||
                s = s.addSecs(minutesUntilCarryOver * 60);
 | 
					                s = s.addSecs(minutesUntilCarryOver * 60);
 | 
				
			||||||
@@ -931,68 +831,6 @@ CalcState CALCULATE_LIBRARY_API compute_price_for_parking_ticket(
 | 
				
			|||||||
                end_parking_time = effectiveStartTime.addSecs(netto_parking_time*60);
 | 
					                end_parking_time = effectiveStartTime.addSecs(netto_parking_time*60);
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                qCritical() << __func__ << ":" << __LINE__ << "end-parking-time:" << end_parking_time.toString(Qt::ISODate);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                weekDay = end_parking_time.date().dayOfWeek();
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                // musste man in einer schleife machen
 | 
					 | 
				
			||||||
                carryOverStart = tariff->TariffCarryOverOptions.find(pop_carry_over_option_id)->second.carryover[weekDay].static_start;
 | 
					 | 
				
			||||||
                carryOverDuration = tariff->TariffCarryOverOptions.find(pop_carry_over_option_id)->second.carryover[weekDay].duration;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                if (end_parking_time.time() > carryOverStart) {
 | 
					 | 
				
			||||||
                    end_parking_time = end_parking_time.addSecs(carryOverDuration * 60);
 | 
					 | 
				
			||||||
                } else
 | 
					 | 
				
			||||||
                if (end_parking_time.time() == carryOverStart) {
 | 
					 | 
				
			||||||
                    qCritical() << __func__ << ":" << __LINE__ << "end-parking-time:" << end_parking_time.toString(Qt::ISODate);
 | 
					 | 
				
			||||||
                    qCritical() << __func__ << ":" << __LINE__ << "   carryOverStart" << carryOverStart.toString(Qt::ISODate);
 | 
					 | 
				
			||||||
                    ATBPaymentOption const &po = tariff->getPaymentOptions(paymentOptionIndex);
 | 
					 | 
				
			||||||
                    if (po.pop_apply_carry_over_to_ticket_endtime) {
 | 
					 | 
				
			||||||
                        end_parking_time = end_parking_time.addSecs(carryOverDuration * 60);
 | 
					 | 
				
			||||||
                        qCritical() << __func__ << ":" << __LINE__ << "end-parking-time:" << end_parking_time.toString(Qt::ISODate);
 | 
					 | 
				
			||||||
                    }
 | 
					 | 
				
			||||||
                }
 | 
					 | 
				
			||||||
            } else {
 | 
					 | 
				
			||||||
                qCritical() << __func__ << ":" << __LINE__ << "NO carryOver configured";
 | 
					 | 
				
			||||||
                end_parking_time = effectiveStartTime.addSecs(netto_parking_time*60);
 | 
					 | 
				
			||||||
            }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
            end_parking_time.setTime(QTime(end_parking_time.time().hour(),
 | 
					 | 
				
			||||||
                                           end_parking_time.time().minute(), 0));
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
            qCritical() << __func__ << ":" << __LINE__ << "end-parking-time:" << end_parking_time.toString(Qt::ISODate);
 | 
					 | 
				
			||||||
            qCritical() << __func__ << ":" << __LINE__ << "        week-day:" << weekDay;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
            for (auto[itr, rangeEnd] = tariff->WeekDays.equal_range((Qt::DayOfWeek)weekDay); itr != rangeEnd; ++itr) {
 | 
					 | 
				
			||||||
                ATBWeekDay const &wd = itr->second;
 | 
					 | 
				
			||||||
                bool const parkTimeLimitViolated = wd.getTariffCarryOverSettings().parkingTimeLimitExceeded(effectiveStartTime,
 | 
					 | 
				
			||||||
                                                                                                            end_parking_time,
 | 
					 | 
				
			||||||
                                                                                                            paymentOptionIndex);
 | 
					 | 
				
			||||||
                if (parkTimeLimitViolated) {
 | 
					 | 
				
			||||||
                    //QTime const &tlimit = wd.getTariffCarryOverSettings().parkingTimeLimit();
 | 
					 | 
				
			||||||
                    //end_parking_time.setTime(tlimit);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                    // max_price neu berechnen
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                    calcState.setDesc(QString("line=%1 endTime=%2: park-time-limit violated").arg(__LINE__)
 | 
					 | 
				
			||||||
                                        .arg(end_parking_time.time().toString(Qt::ISODate)));
 | 
					 | 
				
			||||||
                    return calcState.set(CalcState::State::ABOVE_MAX_PARKING_TIME);
 | 
					 | 
				
			||||||
                }
 | 
					 | 
				
			||||||
            }
 | 
					 | 
				
			||||||
        } else
 | 
					 | 
				
			||||||
        if (tariff->getPaymentOptions(0).pop_payment_method_id == PaymentMethod::Unified) {
 | 
					 | 
				
			||||||
            std::pair<CalcState, std::optional<int>> p =
 | 
					 | 
				
			||||||
                Calculator::GetInstance().ComputeCostFromDuration(tariff, start_parking_time, end_parking_time, netto_parking_time);
 | 
					 | 
				
			||||||
            CalcState const cs = p.first;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
            if ((cs.getStatus() == CalcState::State::SUCCESS ||
 | 
					 | 
				
			||||||
                 cs.getStatus() == CalcState::State::SUCCESS_MAXPRICE ||
 | 
					 | 
				
			||||||
                 cs.getStatus() == CalcState::State::OVERPAID)) {
 | 
					 | 
				
			||||||
                if (p.second.has_value()) {
 | 
					 | 
				
			||||||
                    cost = p.second.value();
 | 
					 | 
				
			||||||
                }
 | 
					 | 
				
			||||||
            } else {
 | 
					 | 
				
			||||||
                return cs;
 | 
					 | 
				
			||||||
            }
 | 
					 | 
				
			||||||
        } else {
 | 
					        } else {
 | 
				
			||||||
            cost = Calculator::GetInstance().GetCostFromDuration(
 | 
					            cost = Calculator::GetInstance().GetCostFromDuration(
 | 
				
			||||||
                        tariff,
 | 
					                        tariff,
 | 
				
			||||||
@@ -1002,7 +840,7 @@ CalcState CALCULATE_LIBRARY_API compute_price_for_parking_ticket(
 | 
				
			|||||||
                        netto_parking_time,         // minutes, netto
 | 
					                        netto_parking_time,         // minutes, netto
 | 
				
			||||||
                        false, prepaid);
 | 
					                        false, prepaid);
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					        // qCritical() << __func__ << __LINE__;
 | 
				
			||||||
        double minCost = tariff->getPaymentOptions(paymentOptionIndex).pop_min_price;
 | 
					        double minCost = tariff->getPaymentOptions(paymentOptionIndex).pop_min_price;
 | 
				
			||||||
        if (cost < minCost) {
 | 
					        if (cost < minCost) {
 | 
				
			||||||
            calcState.setDesc(QString("line=%1 minCost=%2, cost=%3").arg(__LINE__).arg(minCost).arg(cost));
 | 
					            calcState.setDesc(QString("line=%1 minCost=%2, cost=%3").arg(__LINE__).arg(minCost).arg(cost));
 | 
				
			||||||
@@ -1011,7 +849,7 @@ CalcState CALCULATE_LIBRARY_API compute_price_for_parking_ticket(
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        // DEBUG
 | 
					        // DEBUG
 | 
				
			||||||
        // qCritical() << __LINE__ << "            end_parking_time: " << end_parking_time;
 | 
					        // qCritical() << __LINE__ << "            end_parking_time: " << end_parking_time;
 | 
				
			||||||
        //qCritical() << __LINE__ << "  -> calculated cost (netto): " << cost;
 | 
					        qCritical() << __LINE__ << "  -> calculated cost (netto): " << cost;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        price->brutto = price->vat = price->vat_percentage = 0;
 | 
					        price->brutto = price->vat = price->vat_percentage = 0;
 | 
				
			||||||
        price->units = cost;
 | 
					        price->units = cost;
 | 
				
			||||||
@@ -1025,6 +863,7 @@ CalcState CALCULATE_LIBRARY_API compute_price_for_parking_ticket(
 | 
				
			|||||||
        end_parking_time = end_parking_time.addDays(-1);
 | 
					        end_parking_time = end_parking_time.addDays(-1);
 | 
				
			||||||
        end_parking_time.setTime(QTime(23, 59, 0));
 | 
					        end_parking_time.setTime(QTime(23, 59, 0));
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    qCritical() << __func__ << __LINE__ << "end_parking_time" << end_parking_time.toString(Qt::ISODate);
 | 
					    qCritical() << __func__ << __LINE__ << "end_parking_time" << end_parking_time.toString(Qt::ISODate);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    return calcState.set(CalcState::State::SUCCESS);
 | 
					    return calcState.set(CalcState::State::SUCCESS);
 | 
				
			||||||
@@ -1036,10 +875,6 @@ CalcState CALCULATE_LIBRARY_API compute_duration_for_parking_ticket(
 | 
				
			|||||||
        double price,
 | 
					        double price,
 | 
				
			||||||
        QString &duration,
 | 
					        QString &duration,
 | 
				
			||||||
        PermitType permitType) {
 | 
					        PermitType permitType) {
 | 
				
			||||||
 | 
					 | 
				
			||||||
    tariff->getPaymentOptions(0).pop_max_price
 | 
					 | 
				
			||||||
        = tariff->getPaymentOptions(0).pop_max_price_save;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    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);
 | 
				
			||||||
@@ -1049,12 +884,7 @@ CalcState CALCULATE_LIBRARY_API compute_duration_for_parking_ticket(
 | 
				
			|||||||
        QString cs = start.toString(Qt::ISODate);
 | 
					        QString cs = start.toString(Qt::ISODate);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        bool prepaid = true;
 | 
					        bool prepaid = true;
 | 
				
			||||||
        int paymentOptionIndex = getPaymentOptionIndex(*tariff, start);
 | 
					        int paymentOptionIndex = tariff->getPaymentOptionIndex(permitType);
 | 
				
			||||||
        qCritical() << " payment option index: " << paymentOptionIndex;
 | 
					 | 
				
			||||||
        if (paymentOptionIndex == -1) {
 | 
					 | 
				
			||||||
            paymentOptionIndex = tariff->getPaymentOptionIndex(permitType);
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        int prepaid_option_id = tariff->getPaymentOptions(paymentOptionIndex).pop_prepaid_option_id;
 | 
					        int prepaid_option_id = tariff->getPaymentOptions(paymentOptionIndex).pop_prepaid_option_id;
 | 
				
			||||||
        if (prepaid_option_id == 2) { // see tariff03.json for 502: 2 means no prepaid-option
 | 
					        if (prepaid_option_id == 2) { // see tariff03.json for 502: 2 means no prepaid-option
 | 
				
			||||||
            prepaid = false;
 | 
					            prepaid = false;
 | 
				
			||||||
@@ -1068,14 +898,10 @@ CalcState CALCULATE_LIBRARY_API compute_duration_for_parking_ticket(
 | 
				
			|||||||
        qCritical() << "           start (cs): " << cs;
 | 
					        qCritical() << "           start (cs): " << cs;
 | 
				
			||||||
        qCritical() << "                price: " << price;
 | 
					        qCritical() << "                price: " << price;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        std::pair<std::string, QDateTime> p_duration
 | 
					        duration = Calculator::GetInstance().GetDurationFromCost(tariff,
 | 
				
			||||||
                = Calculator::GetInstance().GetDurationFromCost(tariff,
 | 
					 | 
				
			||||||
                                                  tariff->getPaymentOptions(paymentOptionIndex).pop_payment_method_id,
 | 
					                                                  tariff->getPaymentOptions(paymentOptionIndex).pop_payment_method_id,
 | 
				
			||||||
                                                  cs.toLocal8Bit().constData(),
 | 
					                                                  cs.toLocal8Bit().constData(),
 | 
				
			||||||
                                              price, permitType, nextDay, prepaid);
 | 
					                                                  price, permitType, nextDay, prepaid).c_str();
 | 
				
			||||||
        duration = p_duration.first.c_str();
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        QDateTime d = QDateTime::fromString(duration, Qt::ISODate);
 | 
					        QDateTime d = QDateTime::fromString(duration, Qt::ISODate);
 | 
				
			||||||
        if (!d.isValid()) {
 | 
					        if (!d.isValid()) {
 | 
				
			||||||
            calcState.setDesc(QString("ticketEndTime=%1").arg(duration));
 | 
					            calcState.setDesc(QString("ticketEndTime=%1").arg(duration));
 | 
				
			||||||
@@ -1095,23 +921,11 @@ CalcState CALCULATE_LIBRARY_API compute_duration_for_parking_ticket(
 | 
				
			|||||||
        QDateTime &ticketEndTime,
 | 
					        QDateTime &ticketEndTime,
 | 
				
			||||||
        PermitType permitType)
 | 
					        PermitType permitType)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    tariff->getPaymentOptions(0).pop_max_price
 | 
					 | 
				
			||||||
        = tariff->getPaymentOptions(0).pop_max_price_save;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    CalcState calcState;
 | 
					    CalcState calcState;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    bool prepaid = true;
 | 
					    bool prepaid = true;
 | 
				
			||||||
 | 
					    int paymentOptionIndex = tariff->getPaymentOptionIndex(permitType);
 | 
				
			||||||
    int paymentOptionIndex = getPaymentOptionIndex(*tariff, start_parking_time);
 | 
					 | 
				
			||||||
    qCritical() << __func__ << ":" << __LINE__ << "payment option index: " << paymentOptionIndex;
 | 
					 | 
				
			||||||
    if (paymentOptionIndex == -1) {
 | 
					 | 
				
			||||||
        paymentOptionIndex = tariff->getPaymentOptionIndex(permitType);
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    qCritical() << __func__ << ":" << __LINE__ << " payment option index: " << paymentOptionIndex;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    int prepaid_option_id = tariff->getPaymentOptions(paymentOptionIndex).pop_prepaid_option_id;
 | 
					    int prepaid_option_id = tariff->getPaymentOptions(paymentOptionIndex).pop_prepaid_option_id;
 | 
				
			||||||
 | 
					 | 
				
			||||||
    if (prepaid_option_id == 2) {
 | 
					    if (prepaid_option_id == 2) {
 | 
				
			||||||
        prepaid = false;
 | 
					        prepaid = false;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
@@ -1126,57 +940,16 @@ CalcState CALCULATE_LIBRARY_API compute_duration_for_parking_ticket(
 | 
				
			|||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (start_parking_time.isValid()) {
 | 
					    if (start_parking_time.isValid()) {
 | 
				
			||||||
 | 
					        QString cs = start_parking_time.toString(Qt::ISODate);
 | 
				
			||||||
        int const pop_time_step_config = tariff->getPaymentOptions(paymentOptionIndex).pop_time_step_config;
 | 
					        QString endTime = Calculator::GetInstance().GetDurationFromCost(
 | 
				
			||||||
        if (pop_time_step_config == (int)ATBTimeStepConfig::TimeStepConfig::STATIC) {
 | 
					 | 
				
			||||||
            // handle prepaid option
 | 
					 | 
				
			||||||
            QDateTime effectiveStartTime(start_parking_time);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
            effectiveStartTime.setTime(QTime(effectiveStartTime.time().hour(),
 | 
					 | 
				
			||||||
                                             effectiveStartTime.time().minute(), 0));
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
            int const prepaid_option_id = tariff->getPaymentOptions(paymentOptionIndex).pop_prepaid_option_id;
 | 
					 | 
				
			||||||
            std::optional<ATBPrepaid> prepaidOption = tariff->getPrepaidType(prepaid_option_id);
 | 
					 | 
				
			||||||
            if (prepaidOption.has_value()) {
 | 
					 | 
				
			||||||
                ATBPrepaid const &p = prepaidOption.value();
 | 
					 | 
				
			||||||
                if (p.never) {
 | 
					 | 
				
			||||||
                    qCritical() << __func__ << __LINE__ << "prepaid: no";
 | 
					 | 
				
			||||||
                } else {
 | 
					 | 
				
			||||||
                    if (start_parking_time.time() < p.static_end) {     // static_end: e.g. 08:00:00
 | 
					 | 
				
			||||||
                        effectiveStartTime.setTime(p.static_end);
 | 
					 | 
				
			||||||
                    } else
 | 
					 | 
				
			||||||
                    if (start_parking_time.time() > p.static_start) {   // static_start: e.g. 22:00:00
 | 
					 | 
				
			||||||
                        effectiveStartTime.setTime(p.static_start);
 | 
					 | 
				
			||||||
                    }
 | 
					 | 
				
			||||||
                }
 | 
					 | 
				
			||||||
            }
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
        QDateTime start(start_parking_time);
 | 
					 | 
				
			||||||
        start.setTime(QTime(start.time().hour(), start.time().minute(), 0));
 | 
					 | 
				
			||||||
        QString cs = start.toString(Qt::ISODate);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        std::pair<std::string, QDateTime> p_endTime
 | 
					 | 
				
			||||||
                = Calculator::GetInstance().GetDurationFromCost(
 | 
					 | 
				
			||||||
                    tariff,
 | 
					                    tariff,
 | 
				
			||||||
                    tariff->getPaymentOptions().pop_payment_method_id,
 | 
					                    tariff->getPaymentOptions().pop_payment_method_id,
 | 
				
			||||||
                    cs.toLocal8Bit().constData(),
 | 
					                    cs.toLocal8Bit().constData(),
 | 
				
			||||||
                    price, permitType, nextDay, prepaid);
 | 
					                    price, permitType, nextDay, prepaid).c_str();
 | 
				
			||||||
 | 
					 | 
				
			||||||
        QString endTime = p_endTime.first.c_str();
 | 
					 | 
				
			||||||
        ticketEndTime = p_endTime.second;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        qCritical() << __func__ << ":" << __LINE__ << endTime;
 | 
					 | 
				
			||||||
        qCritical() << __func__ << ":" << __LINE__ << ticketEndTime.toString(Qt::ISODate);
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
        if (endTime == CalcState::SUCCESS) {
 | 
					        if (endTime == CalcState::SUCCESS) {
 | 
				
			||||||
            calcState.setDesc(QString("SUCCESS"));
 | 
					            calcState.setDesc(QString("SUCCESS"));
 | 
				
			||||||
            calcState.setStatus(endTime);
 | 
					            calcState.setStatus(endTime);
 | 
				
			||||||
            qCritical() << __func__ << ":" << __LINE__ << "SUCCESS";
 | 
					 | 
				
			||||||
        } else
 | 
					 | 
				
			||||||
        if (endTime == CalcState::SUCCESS_MAXPRICE) {
 | 
					 | 
				
			||||||
            calcState.setDesc(QString("SUCCESS_MAXPRICE"));
 | 
					 | 
				
			||||||
            calcState.setStatus(endTime);
 | 
					 | 
				
			||||||
            qCritical() << __func__ << ":" << __LINE__ << "SUCCESS_MAXPRICE";
 | 
					 | 
				
			||||||
        } else
 | 
					        } else
 | 
				
			||||||
        if (endTime == CalcState::ERROR_PARSING_ZONE_NR) {
 | 
					        if (endTime == CalcState::ERROR_PARSING_ZONE_NR) {
 | 
				
			||||||
            calcState.setStatus(endTime);
 | 
					            calcState.setStatus(endTime);
 | 
				
			||||||
@@ -1234,200 +1007,33 @@ CalcState CALCULATE_LIBRARY_API compute_duration_for_parking_ticket(
 | 
				
			|||||||
        } else {
 | 
					        } else {
 | 
				
			||||||
            ticketEndTime = QDateTime::fromString(endTime,Qt::ISODate);
 | 
					            ticketEndTime = QDateTime::fromString(endTime,Qt::ISODate);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            ticketEndTime.setTime(QTime(ticketEndTime.time().hour(),
 | 
					 | 
				
			||||||
                                        ticketEndTime.time().minute(), 0));
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
            int netto_parking_time = start_parking_time.secsTo(ticketEndTime) / 60;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
            qCritical() << __func__ << ":" << __LINE__ << "ticketEndTime:" << ticketEndTime.toString(Qt::ISODate);
 | 
					 | 
				
			||||||
            qCritical() << __func__ << ":" << __LINE__ << "step-config:" << pop_time_step_config;
 | 
					 | 
				
			||||||
            qCritical() << __func__ << ":" << __LINE__ << "netto-parking-time" << netto_parking_time;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
            if (!ticketEndTime.isValid()) {
 | 
					            if (!ticketEndTime.isValid()) {
 | 
				
			||||||
                calcState.setDesc(QString("ticketEndTime=%1").arg(endTime));
 | 
					                calcState.setDesc(QString("ticketEndTime=%1").arg(endTime));
 | 
				
			||||||
                return calcState.set(CalcState::State::WRONG_ISO_TIME_FORMAT);
 | 
					                return calcState.set(CalcState::State::WRONG_ISO_TIME_FORMAT);
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            if (tariff->getPaymentOptions().pop_payment_method_id != PaymentMethod::Unified) {
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                if (pop_time_step_config == (int)ATBTimeStepConfig::TimeStepConfig::STATIC) {
 | 
					 | 
				
			||||||
                    // handle carry over for ticket-end-time
 | 
					 | 
				
			||||||
                    qCritical() << __func__ << ":" << __LINE__ << "ticketEndTime:" << ticketEndTime.toString(Qt::ISODate);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                    int weekDay = start_parking_time.date().dayOfWeek();
 | 
					 | 
				
			||||||
                    int pop_carry_over_option_id = tariff->getPaymentOptions(paymentOptionIndex).pop_carry_over_option_id;
 | 
					 | 
				
			||||||
                    qCritical() << __func__ << ":" << __LINE__ << "configured carry-over-id" << pop_carry_over_option_id;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                    std::optional<ATBPeriodYear> yperiod = Utilities::GetYearPeriodActive(tariff, start_parking_time);
 | 
					 | 
				
			||||||
                    if (yperiod.has_value()) {
 | 
					 | 
				
			||||||
                        ATBPeriodYear const &period = yperiod.value();
 | 
					 | 
				
			||||||
                        pop_carry_over_option_id = period.pye_id;
 | 
					 | 
				
			||||||
                        qCritical() << __func__ << ":" << __LINE__ << "re-computed carry-over-id" << pop_carry_over_option_id;
 | 
					 | 
				
			||||||
                    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                    QTime carryOverStart;
 | 
					 | 
				
			||||||
                    QTime carryOverEnd;
 | 
					 | 
				
			||||||
                    int carryOverDuration = -1;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                    // using TariffCarryOverType = std::multimap<int, ATBCarryOver>;
 | 
					 | 
				
			||||||
                    std::multimap<int, ATBCarryOver>::const_iterator it;
 | 
					 | 
				
			||||||
                    if ((it = tariff->TariffCarryOverOptions.find(pop_carry_over_option_id)) !=
 | 
					 | 
				
			||||||
                        tariff->TariffCarryOverOptions.cend()) {
 | 
					 | 
				
			||||||
                        carryOverStart = it->second.carryover[weekDay].static_start;
 | 
					 | 
				
			||||||
                        carryOverEnd = it->second.carryover[weekDay].static_end;
 | 
					 | 
				
			||||||
                        carryOverDuration = it->second.carryover[weekDay].duration;
 | 
					 | 
				
			||||||
                    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                    if (carryOverStart.isValid() && carryOverEnd.isValid()) {
 | 
					 | 
				
			||||||
                        qCritical() << __func__ << ":" << __LINE__ << "carryOverStart" << carryOverStart.toString(Qt::ISODate);
 | 
					 | 
				
			||||||
                        qCritical() << __func__ << ":" << __LINE__ << "carryOverEnd" << carryOverEnd.toString(Qt::ISODate);
 | 
					 | 
				
			||||||
                        qCritical() << __func__ << ":" << __LINE__ << "carryOverDuration" << carryOverDuration;
 | 
					 | 
				
			||||||
                    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                    if (carryOverStart.isValid() && carryOverEnd.isValid() && carryOverDuration != -1) {
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                        // note: in such a case (direct coins) carry-over has been handled
 | 
					 | 
				
			||||||
                        // already in GetDurationFromCost()
 | 
					 | 
				
			||||||
                        netto_parking_time -= carryOverDuration;
 | 
					 | 
				
			||||||
                        qCritical() << __func__ << ":" << __LINE__ << "netto-parking-time" << netto_parking_time;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                        // qCritical() << __func__ << __LINE__ << "ticketEndTime.time():" << ticketEndTime.time().toString(Qt::ISODate);
 | 
					 | 
				
			||||||
                        if (ticketEndTime.time() > carryOverStart) {
 | 
					 | 
				
			||||||
                            // qCritical() << __func__ << __LINE__ << "ticketEndTime.time():" << ticketEndTime.time().toString(Qt::ISODate);
 | 
					 | 
				
			||||||
                            ticketEndTime = ticketEndTime.addSecs(carryOverDuration * 60);
 | 
					 | 
				
			||||||
                        } else
 | 
					 | 
				
			||||||
                        if (ticketEndTime.time() == carryOverStart) {
 | 
					 | 
				
			||||||
                            qCritical() << __func__ << __LINE__ << "ticketEndTime.time():" << ticketEndTime.time().toString(Qt::ISODate);
 | 
					 | 
				
			||||||
                            qCritical() << __func__ << ":" << __LINE__ << "   carryOverStart" << carryOverStart.toString(Qt::ISODate);
 | 
					 | 
				
			||||||
                            ATBPaymentOption const &po = tariff->getPaymentOptions(paymentOptionIndex);
 | 
					 | 
				
			||||||
                            if (po.pop_apply_carry_over_to_ticket_endtime) {
 | 
					 | 
				
			||||||
                                ticketEndTime = ticketEndTime.addSecs(carryOverDuration * 60);
 | 
					 | 
				
			||||||
                                qCritical() << __func__ << __LINE__ << "ticketEndTime.time():" << ticketEndTime.time().toString(Qt::ISODate);
 | 
					 | 
				
			||||||
                            }
 | 
					 | 
				
			||||||
                        } else {
 | 
					 | 
				
			||||||
                            // qCritical() << __func__ << __LINE__ << "ticketEndTime.time():" << ticketEndTime.time().toString(Qt::ISODate);
 | 
					 | 
				
			||||||
                            if (ticketEndTime.time() < carryOverEnd) {
 | 
					 | 
				
			||||||
                                // qCritical() << __func__ << __LINE__ << "ticketEndTime.time():" << ticketEndTime.time().toString(Qt::ISODate);
 | 
					 | 
				
			||||||
                                ticketEndTime = ticketEndTime.addSecs(carryOverDuration * 60);
 | 
					 | 
				
			||||||
                            }
 | 
					 | 
				
			||||||
                        }
 | 
					 | 
				
			||||||
                    } else {
 | 
					 | 
				
			||||||
                        qCritical() << __func__ << ":" << __LINE__ << "WARNING: wrong carry-over-settings";
 | 
					 | 
				
			||||||
                    }
 | 
					 | 
				
			||||||
                }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                qCritical() << __func__ << ":" << __LINE__ << "ticketEndTime:" << ticketEndTime.toString(Qt::ISODate);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                for (auto[itr, rangeEnd] = tariff->WeekDays.equal_range((Qt::DayOfWeek)(ticketEndTime.date().dayOfWeek()));
 | 
					 | 
				
			||||||
                     itr != rangeEnd;
 | 
					 | 
				
			||||||
                     ++itr) {
 | 
					 | 
				
			||||||
                    ATBWeekDay const &wd = itr->second;
 | 
					 | 
				
			||||||
                    bool parkTimeLimitViolated = wd.getTariffCarryOverSettings().parkingTimeLimitExceeded(start_parking_time,
 | 
					 | 
				
			||||||
                                                                                                          ticketEndTime,
 | 
					 | 
				
			||||||
                                                                                                          paymentOptionIndex);
 | 
					 | 
				
			||||||
                    if (parkTimeLimitViolated) {
 | 
					 | 
				
			||||||
                        //QTime const &tlimit = wd.getTariffCarryOverSettings().parkingTimeLimit();
 | 
					 | 
				
			||||||
                        //ticketEndTime.setTime(tlimit);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                        QList<int> const &stepList = Calculator::GetInstance().GetTimeSteps(tariff, paymentOptionIndex);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                        QDateTime newTicketEndTime = ticketEndTime;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                        qCritical() << __func__ << ":" << __LINE__ << "PARK-TIME VIOLATED";
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                        for (int i = stepList.size() - 1; i > 0; --i) {
 | 
					 | 
				
			||||||
                            // qCritical() << __func__ << ":" << __LINE__ << "step[" << i << "]" << stepList.at(i);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                            if (netto_parking_time > 0 && stepList.at(i) <= netto_parking_time) {
 | 
					 | 
				
			||||||
                                int const diff = stepList.at(i-1) - stepList.at(i);
 | 
					 | 
				
			||||||
                                newTicketEndTime = newTicketEndTime.addSecs(diff * 60);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                                // qCritical() << __func__ << ":" << __LINE__ << "new-ticket-end-time" << newTicketEndTime.toString(Qt::ISODate);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                                parkTimeLimitViolated
 | 
					 | 
				
			||||||
                                    = wd.getTariffCarryOverSettings()
 | 
					 | 
				
			||||||
                                        .parkingTimeLimitExceeded(start_parking_time, newTicketEndTime, paymentOptionIndex);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                                if (!parkTimeLimitViolated) {
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                                    qCritical() << __func__ << ":" << __LINE__
 | 
					 | 
				
			||||||
                                                << "PARK-TIME NOT VIOLATED FOR" << newTicketEndTime.toString(Qt::ISODate);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                                    int duration = stepList.at(i-1);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                                    // qCritical() << __func__ << ":" << __LINE__ << "duration" << duration;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                                    std::multimap<int, ATBDuration>::const_iterator it;
 | 
					 | 
				
			||||||
                                    for (it = tariff->Duration.cbegin();
 | 
					 | 
				
			||||||
                                         it != tariff->Duration.cend();
 | 
					 | 
				
			||||||
                                         ++it) {
 | 
					 | 
				
			||||||
                                        if (duration == it->second.pun_duration) {
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                                            // qCritical() << __func__ << ":" << __LINE__ << "duration" << duration;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                                            ATBPaymentOption &po = tariff->getPaymentOptions(paymentOptionIndex);
 | 
					 | 
				
			||||||
                                            int const pop_id = po.pop_id;
 | 
					 | 
				
			||||||
                                            for (auto[itr, rangeEnd] = tariff->PaymentRate.equal_range(pop_id); itr != rangeEnd; ++itr) {
 | 
					 | 
				
			||||||
                                                int const durationId = itr->second.pra_payment_unit_id;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                                                // qCritical() << __func__ << ":" << __LINE__ << "durationId" << durationId << it->second.pun_id;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                                                // note: for this to work, Duration and PaymentRate must have
 | 
					 | 
				
			||||||
                                                // exactly the same structure
 | 
					 | 
				
			||||||
                                                if (durationId == it->second.pun_id) {
 | 
					 | 
				
			||||||
                                                    int const pra_price = itr->second.pra_price;
 | 
					 | 
				
			||||||
                                                    po.pop_max_price = pra_price;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                                                    qCritical() << __func__ << ":" << __LINE__ << "new max-price" << po.pop_max_price;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                                                    // note: ABOVE_MAX_PARKING_TIME would also be possible
 | 
					 | 
				
			||||||
                                                    // but here max-parking-time is dynamic. And for
 | 
					 | 
				
			||||||
                                                    // this dynamic value, opverpaid is actually correct
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                                                    calcState.setDesc(CalcState::OVERPAID);
 | 
					 | 
				
			||||||
                                                    calcState.setStatus(CalcState::OVERPAID);
 | 
					 | 
				
			||||||
                                                    return calcState;
 | 
					 | 
				
			||||||
                                                }
 | 
					 | 
				
			||||||
                                            }
 | 
					 | 
				
			||||||
                                        }
 | 
					 | 
				
			||||||
                                    }
 | 
					 | 
				
			||||||
                                }
 | 
					 | 
				
			||||||
                            }
 | 
					 | 
				
			||||||
                        }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                        calcState.setDesc(QString("line=%1 endTime=%2: park-time-limit violated").arg(__LINE__)
 | 
					 | 
				
			||||||
                                          .arg(ticketEndTime.time().toString(Qt::ISODate)));
 | 
					 | 
				
			||||||
                        return calcState.set(CalcState::State::ABOVE_MAX_PARKING_TIME);
 | 
					 | 
				
			||||||
                    }
 | 
					 | 
				
			||||||
                }
 | 
					 | 
				
			||||||
            }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
            if (ticketEndTime.time().hour() == 0 && ticketEndTime.time().minute() == 0) {
 | 
					            if (ticketEndTime.time().hour() == 0 && ticketEndTime.time().minute() == 0) {
 | 
				
			||||||
                ticketEndTime = ticketEndTime.addDays(-1);
 | 
					                ticketEndTime = ticketEndTime.addDays(-1);
 | 
				
			||||||
                ticketEndTime.setTime(QTime(23, 59, 0));
 | 
					                ticketEndTime.setTime(QTime(23, 59, 0));
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            // DEBUG
 | 
					            // DEBUG
 | 
				
			||||||
            qCritical() << __func__ << ":" << __LINE__ << "      endTime:" << endTime;
 | 
					            qCritical() << "compute_duration_for_parking_ticket(): ";
 | 
				
			||||||
            qCritical() << __func__ << ":" << __LINE__ << "ticketEndTime:" << ticketEndTime.toString(Qt::ISODate);
 | 
					            qCritical() << "                 endTime: " << endTime;
 | 
				
			||||||
 | 
					            qCritical() << "           ticketEndTime: " << ticketEndTime;
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
    } else {
 | 
					    } else {
 | 
				
			||||||
        return calcState.set(CalcState::State::INVALID_START_DATE);
 | 
					        return calcState.set(CalcState::State::INVALID_START_DATE);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    //return calcState.set(CalcState::State::SUCCESS);
 | 
					    return calcState.set(CalcState::State::SUCCESS);
 | 
				
			||||||
    qCritical() << __func__ << ":" << __LINE__ << "  calcState" << calcState.toString();
 | 
					 | 
				
			||||||
    return calcState;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
CalcState CALCULATE_LIBRARY_API compute_duration_for_daily_ticket(parking_tariff_t *tariff,
 | 
					CalcState CALCULATE_LIBRARY_API compute_duration_for_daily_ticket(parking_tariff_t *tariff,
 | 
				
			||||||
                                                                  QDateTime const &start_parking_time,
 | 
					                                                                  QDateTime const &start_parking_time,
 | 
				
			||||||
                                                                  QDateTime &ticketEndTime,
 | 
					                                                                  QDateTime &ticketEndTime,
 | 
				
			||||||
                                                                  PermitType /* PermitType */)
 | 
					                                                                  PermitType PermitType)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    tariff->getPaymentOptions(0).pop_max_price
 | 
					 | 
				
			||||||
        = tariff->getPaymentOptions(0).pop_max_price_save;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    CalcState calcState;
 | 
					    CalcState calcState;
 | 
				
			||||||
    if (start_parking_time.isValid()) {
 | 
					    if (start_parking_time.isValid()) {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -1459,12 +1065,9 @@ CalcState CALCULATE_LIBRARY_API compute_price_for_daily_ticket(
 | 
				
			|||||||
                                    QDateTime &endDatetime,
 | 
					                                    QDateTime &endDatetime,
 | 
				
			||||||
                                    PERMIT_TYPE permitType,
 | 
					                                    PERMIT_TYPE permitType,
 | 
				
			||||||
                                    struct price_t *price) {// return value
 | 
					                                    struct price_t *price) {// return value
 | 
				
			||||||
 | 
					 | 
				
			||||||
    tariff->getPaymentOptions(0).pop_max_price
 | 
					 | 
				
			||||||
        = tariff->getPaymentOptions(0).pop_max_price_save;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    CalcState calcState;
 | 
					    CalcState calcState;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (startDatetime.isValid()) {
 | 
					    if (startDatetime.isValid()) {
 | 
				
			||||||
        if (std::optional<struct price_t> p =
 | 
					        if (std::optional<struct price_t> p =
 | 
				
			||||||
            Calculator::GetInstance().GetDailyTicketPrice(tariff,
 | 
					            Calculator::GetInstance().GetDailyTicketPrice(tariff,
 | 
				
			||||||
 
 | 
				
			|||||||
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							@@ -8,11 +8,6 @@
 | 
				
			|||||||
#include "tariff_global_defines.h"
 | 
					#include "tariff_global_defines.h"
 | 
				
			||||||
#include "tariff_carryover.h"
 | 
					#include "tariff_carryover.h"
 | 
				
			||||||
#include "tariff_global_defines.h"
 | 
					#include "tariff_global_defines.h"
 | 
				
			||||||
#include "tariff_settings.h"
 | 
					 | 
				
			||||||
#include "tariff_carryover_settings.h"
 | 
					 | 
				
			||||||
#include "atb_time.h"
 | 
					 | 
				
			||||||
#include "tariff_prepaid.h"
 | 
					 | 
				
			||||||
#include "tariff_carryover.h"
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include <QString>
 | 
					#include <QString>
 | 
				
			||||||
#include <QDebug>
 | 
					#include <QDebug>
 | 
				
			||||||
@@ -26,13 +21,7 @@ MemberType Configuration::IdentifyJsonMember(const char* member_name)
 | 
				
			|||||||
    if (strcmp(member_name, "PaymentRate") == 0) return MemberType::PaymentRateType;
 | 
					    if (strcmp(member_name, "PaymentRate") == 0) return MemberType::PaymentRateType;
 | 
				
			||||||
    if (strcmp(member_name, "PaymentOption") == 0) return MemberType::PaymentOptionType;
 | 
					    if (strcmp(member_name, "PaymentOption") == 0) return MemberType::PaymentOptionType;
 | 
				
			||||||
    if (strcmp(member_name, "Duration") == 0) return MemberType::DurationType;
 | 
					    if (strcmp(member_name, "Duration") == 0) return MemberType::DurationType;
 | 
				
			||||||
    if (strcmp(member_name, "Monday") == 0) return MemberType::WeekDaysType;
 | 
					    //if (strcmp(member_name, "WeekDays") == 0) return MemberType::WeekDaysType;
 | 
				
			||||||
    if (strcmp(member_name, "Tuesday") == 0) return MemberType::WeekDaysType;
 | 
					 | 
				
			||||||
    if (strcmp(member_name, "Wednesday") == 0) return MemberType::WeekDaysType;
 | 
					 | 
				
			||||||
    if (strcmp(member_name, "Thursday") == 0) return MemberType::WeekDaysType;
 | 
					 | 
				
			||||||
    if (strcmp(member_name, "Friday") == 0) return MemberType::WeekDaysType;
 | 
					 | 
				
			||||||
    if (strcmp(member_name, "Saturday") == 0) return MemberType::WeekDaysType;
 | 
					 | 
				
			||||||
    if (strcmp(member_name, "Sunday") == 0) return MemberType::WeekDaysType;
 | 
					 | 
				
			||||||
    if (strcmp(member_name, "WeekDaysWorktime") == 0) return MemberType::WeekDaysWorkTimeType;
 | 
					    if (strcmp(member_name, "WeekDaysWorktime") == 0) return MemberType::WeekDaysWorkTimeType;
 | 
				
			||||||
    if (strcmp(member_name, "SpecialDaysWorktime") == 0) return MemberType::SpecialDaysWorktimeType;
 | 
					    if (strcmp(member_name, "SpecialDaysWorktime") == 0) return MemberType::SpecialDaysWorktimeType;
 | 
				
			||||||
    if (strcmp(member_name, "SpecialDays") == 0) return MemberType::SpecialDaysType;
 | 
					    if (strcmp(member_name, "SpecialDays") == 0) return MemberType::SpecialDaysType;
 | 
				
			||||||
@@ -49,697 +38,6 @@ MemberType Configuration::IdentifyJsonMember(const char* member_name)
 | 
				
			|||||||
    else return MemberType::UnknownType;
 | 
					    else return MemberType::UnknownType;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
ATBWeekDay parseWeekDay(Configuration &cfg,
 | 
					 | 
				
			||||||
                        rapidjson::GenericMemberIterator<false,
 | 
					 | 
				
			||||||
                                                         rapidjson::UTF8<char>,
 | 
					 | 
				
			||||||
                                                         rapidjson::MemoryPoolAllocator<rapidjson::CrtAllocator>> k,
 | 
					 | 
				
			||||||
                        QString const &innerObjName,
 | 
					 | 
				
			||||||
                        Qt::DayOfWeek weekDay,
 | 
					 | 
				
			||||||
                        QString const &weekDayName) {
 | 
					 | 
				
			||||||
    int max_price = 0;
 | 
					 | 
				
			||||||
    int min_price = 0;
 | 
					 | 
				
			||||||
    int min_time = 0;
 | 
					 | 
				
			||||||
    int max_time = 0;
 | 
					 | 
				
			||||||
    int duration = 0;
 | 
					 | 
				
			||||||
    ATBWeekDay WeekDay;
 | 
					 | 
				
			||||||
    QTime start, end, parking_time_limit, about_to_exceed_limit;
 | 
					 | 
				
			||||||
    ATBTariffCarryOverSettings::ParkingTimeLimitChecker parkTimeLimitChecker;
 | 
					 | 
				
			||||||
    QDate const &d = QDate::fromString(innerObjName, Qt::ISODate);
 | 
					 | 
				
			||||||
    if (innerObjName == QString("default") ||
 | 
					 | 
				
			||||||
       (!d.isNull() && d.isValid())) { // special day, given in date-format
 | 
					 | 
				
			||||||
        // start with new implementation of tariff-calculator
 | 
					 | 
				
			||||||
        // see for instance: bad neuenahr (249), Zone5
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        // qCritical() << __func__ << ":" << __LINE__ << innerObjName;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        if (k->value.IsObject()) {
 | 
					 | 
				
			||||||
            auto obj = k->value.GetObject();
 | 
					 | 
				
			||||||
            for (auto m = obj.MemberBegin(); m != obj.MemberEnd(); ++m) {
 | 
					 | 
				
			||||||
                QString const &name = m->name.GetString();
 | 
					 | 
				
			||||||
                if (name == "payment_settings") {
 | 
					 | 
				
			||||||
                    if (m->value.IsArray()) {
 | 
					 | 
				
			||||||
                        auto payment = m->value.GetArray();
 | 
					 | 
				
			||||||
                        if (payment.Size() == 0) {
 | 
					 | 
				
			||||||
                            qCritical() << __func__ << ":" << __LINE__ << "no payment settings for" << weekDayName;
 | 
					 | 
				
			||||||
                        } else {
 | 
					 | 
				
			||||||
                            for (rapidjson::SizeType j = 0; j < payment.Size(); ++j) {
 | 
					 | 
				
			||||||
                                if (payment[j].IsObject()) {
 | 
					 | 
				
			||||||
                                    auto paymentSetting = payment[j].GetObject();
 | 
					 | 
				
			||||||
                                    for (auto n = paymentSetting.MemberBegin(); n != paymentSetting.MemberEnd(); ++n) {
 | 
					 | 
				
			||||||
                                        QString const &name = QString::fromStdString(n->name.GetString());
 | 
					 | 
				
			||||||
                                        if (name == "min_time") {
 | 
					 | 
				
			||||||
                                            if (n->value.IsInt()) { min_time = n->value.GetInt(); }
 | 
					 | 
				
			||||||
                                        } else if (name == "max_time") {
 | 
					 | 
				
			||||||
                                            if (n->value.IsInt()) { max_time = n->value.GetInt(); }
 | 
					 | 
				
			||||||
                                        } else if (name == "min_price") {
 | 
					 | 
				
			||||||
                                            if (n->value.IsInt()) { min_price = n->value.GetInt(); }
 | 
					 | 
				
			||||||
                                        } else if (name == "max_price") {
 | 
					 | 
				
			||||||
                                            if (n->value.IsInt()) { max_price = n->value.GetInt(); }
 | 
					 | 
				
			||||||
                                        }
 | 
					 | 
				
			||||||
                                    }
 | 
					 | 
				
			||||||
                                }
 | 
					 | 
				
			||||||
                            }
 | 
					 | 
				
			||||||
                        }
 | 
					 | 
				
			||||||
                    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                } else
 | 
					 | 
				
			||||||
                if (name == "prepaid_settings") {
 | 
					 | 
				
			||||||
                    if (m->value.IsArray()) {
 | 
					 | 
				
			||||||
                        auto prepaid = m->value.GetArray();
 | 
					 | 
				
			||||||
                        if (prepaid.Size() == 0) {
 | 
					 | 
				
			||||||
                            qCritical() << __func__ << ":" << __LINE__ << "no prepaid-settings for" << weekDayName;
 | 
					 | 
				
			||||||
                        } else {
 | 
					 | 
				
			||||||
                            ATBTariffPrepaid TariffPrepaid;
 | 
					 | 
				
			||||||
                            for (rapidjson::SizeType j = 0; j < prepaid.Size(); ++j) {
 | 
					 | 
				
			||||||
                                if (prepaid[j].IsObject()) {
 | 
					 | 
				
			||||||
                                    auto prepaidSetting = prepaid[j].GetObject();
 | 
					 | 
				
			||||||
                                    for (auto n = prepaidSetting.MemberBegin(); n != prepaidSetting.MemberEnd(); ++n) {
 | 
					 | 
				
			||||||
                                        QString const &name = QString::fromStdString(n->name.GetString());
 | 
					 | 
				
			||||||
                                        if (name == "prepaid_ranges") {
 | 
					 | 
				
			||||||
                                            if (n->value.IsArray()) {
 | 
					 | 
				
			||||||
                                                auto prepaidRanges = n->value.GetArray();
 | 
					 | 
				
			||||||
                                                if (prepaidRanges.Size() == 0) {
 | 
					 | 
				
			||||||
                                                    qCritical() << __func__ << ":" << __LINE__ << "no prepaid-ranges for" << weekDayName;
 | 
					 | 
				
			||||||
                                                } else {
 | 
					 | 
				
			||||||
                                                    QString prepaidStartStr;
 | 
					 | 
				
			||||||
                                                    QString prepaidEndStr;
 | 
					 | 
				
			||||||
                                                    QString prepaidIf;
 | 
					 | 
				
			||||||
                                                    int prepaidDuration = -1;
 | 
					 | 
				
			||||||
                                                    for (rapidjson::SizeType i = 0; i < prepaidRanges.Size(); ++i) {
 | 
					 | 
				
			||||||
                                                        if (prepaidRanges[j].IsObject()) {
 | 
					 | 
				
			||||||
                                                            auto prepaidRange = prepaidRanges[i].GetObject();
 | 
					 | 
				
			||||||
                                                            for (auto r = prepaidRange.MemberBegin(); r != prepaidRange.MemberEnd(); ++r) {
 | 
					 | 
				
			||||||
                                                                QString const &memName = QString::fromStdString(r->name.GetString());
 | 
					 | 
				
			||||||
                                                                if (memName == "prepaid_id") {
 | 
					 | 
				
			||||||
                                                                    if (r->value.IsInt()) {
 | 
					 | 
				
			||||||
                                                                        TariffPrepaid.m_id = r->value.GetInt();
 | 
					 | 
				
			||||||
                                                                    } else {
 | 
					 | 
				
			||||||
                                                                        qCritical() << __func__ << ":" << __LINE__ << "prepaidId not an integer";
 | 
					 | 
				
			||||||
                                                                    }
 | 
					 | 
				
			||||||
                                                                } else
 | 
					 | 
				
			||||||
                                                                if (memName == "prepaid_duration") {
 | 
					 | 
				
			||||||
                                                                    if (r->value.IsInt()) {
 | 
					 | 
				
			||||||
                                                                        prepaidDuration = r->value.GetInt();
 | 
					 | 
				
			||||||
                                                                    }
 | 
					 | 
				
			||||||
                                                                } else
 | 
					 | 
				
			||||||
                                                                if (memName == "prepaid_start") {
 | 
					 | 
				
			||||||
                                                                    if (r->value.IsString()) {
 | 
					 | 
				
			||||||
                                                                        prepaidStartStr = QString::fromStdString(r->value.GetString());
 | 
					 | 
				
			||||||
                                                                    }
 | 
					 | 
				
			||||||
                                                                } else
 | 
					 | 
				
			||||||
                                                                if (memName == "prepaid_end") {
 | 
					 | 
				
			||||||
                                                                    if (r->value.IsString()) {
 | 
					 | 
				
			||||||
                                                                        prepaidEndStr = QString::fromStdString(r->value.GetString());
 | 
					 | 
				
			||||||
                                                                    }
 | 
					 | 
				
			||||||
                                                                } else
 | 
					 | 
				
			||||||
                                                                if (memName == "prepaid_if") {
 | 
					 | 
				
			||||||
                                                                    if (r->value.IsString()) {
 | 
					 | 
				
			||||||
                                                                        prepaidIf = QString::fromStdString(r->value.GetString());
 | 
					 | 
				
			||||||
                                                                    }
 | 
					 | 
				
			||||||
                                                                } else {
 | 
					 | 
				
			||||||
                                                                    qCritical() << __func__ << ":" << __LINE__ << "WARNING unknown prepaid setting" << memName;
 | 
					 | 
				
			||||||
                                                                }
 | 
					 | 
				
			||||||
                                                            }
 | 
					 | 
				
			||||||
                                                        }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                                                        if (!prepaidStartStr.isEmpty() && !prepaidEndStr.isEmpty() && prepaidDuration != -1) {
 | 
					 | 
				
			||||||
                                                            ATBTime prepaidStart(prepaidStartStr);
 | 
					 | 
				
			||||||
                                                            ATBTime prepaidEnd(prepaidEndStr);
 | 
					 | 
				
			||||||
                                                            if (prepaidStart.isValid() && prepaidEnd.isValid()) {
 | 
					 | 
				
			||||||
                                                                TariffPrepaid.m_range = TimeRange(prepaidStart, prepaidEnd, prepaidDuration);
 | 
					 | 
				
			||||||
                                                                TariffPrepaid.m_weekDay = weekDayName;
 | 
					 | 
				
			||||||
                                                                if (!d.isNull() && d.isValid()) {
 | 
					 | 
				
			||||||
                                                                    TariffPrepaid.m_date = d;
 | 
					 | 
				
			||||||
                                                                }
 | 
					 | 
				
			||||||
                                                                TariffPrepaid.setPrepaidIf(prepaidIf);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                                                                qCritical() << TariffPrepaid;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                                                                cfg.TariffPrepaids.insert(std::pair<int, ATBTariffPrepaid>(weekDay, TariffPrepaid));
 | 
					 | 
				
			||||||
                                                            }
 | 
					 | 
				
			||||||
                                                        }
 | 
					 | 
				
			||||||
                                                    }
 | 
					 | 
				
			||||||
                                                }
 | 
					 | 
				
			||||||
                                            }
 | 
					 | 
				
			||||||
                                        } else {
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                                        }
 | 
					 | 
				
			||||||
                                    }
 | 
					 | 
				
			||||||
                                }
 | 
					 | 
				
			||||||
                            }
 | 
					 | 
				
			||||||
                        }
 | 
					 | 
				
			||||||
                    }
 | 
					 | 
				
			||||||
                } else
 | 
					 | 
				
			||||||
                if (name == "carry_over_settings") {
 | 
					 | 
				
			||||||
                    if (m->value.IsArray()) {
 | 
					 | 
				
			||||||
                        auto carryOver = m->value.GetArray();
 | 
					 | 
				
			||||||
                        if (carryOver.Size() == 0) {
 | 
					 | 
				
			||||||
                            qCritical() << __func__ << ":" << __LINE__ << "no carry-over-settings for" << weekDayName;
 | 
					 | 
				
			||||||
                        } else {
 | 
					 | 
				
			||||||
                            ATBTariffCarryOver TariffCarryOver;
 | 
					 | 
				
			||||||
                            for (rapidjson::SizeType j = 0; j < carryOver.Size(); ++j) {
 | 
					 | 
				
			||||||
                                if (carryOver[j].IsObject()) {
 | 
					 | 
				
			||||||
                                    auto carryOverSetting = carryOver[j].GetObject();
 | 
					 | 
				
			||||||
                                    for (auto n = carryOverSetting.MemberBegin(); n != carryOverSetting.MemberEnd(); ++n) {
 | 
					 | 
				
			||||||
                                        QString const &name = QString::fromStdString(n->name.GetString());
 | 
					 | 
				
			||||||
                                        if (name == "carry_over_ranges") {
 | 
					 | 
				
			||||||
                                            if (n->value.IsArray()) {
 | 
					 | 
				
			||||||
                                                auto carryOverRanges = n->value.GetArray();
 | 
					 | 
				
			||||||
                                                if (carryOverRanges.Size() == 0) {
 | 
					 | 
				
			||||||
                                                    qCritical() << __func__ << ":" << __LINE__ << "no carry-over-ranges for" << weekDayName;
 | 
					 | 
				
			||||||
                                                } else {
 | 
					 | 
				
			||||||
                                                    QString carryOverStartStr;
 | 
					 | 
				
			||||||
                                                    QString carryOverEndStr;
 | 
					 | 
				
			||||||
                                                    QString carryOverIf;
 | 
					 | 
				
			||||||
                                                    int carryOverDuration = -1;
 | 
					 | 
				
			||||||
                                                    for (rapidjson::SizeType i = 0; i < carryOverRanges.Size(); ++i) {
 | 
					 | 
				
			||||||
                                                        if (carryOverRanges[j].IsObject()) {
 | 
					 | 
				
			||||||
                                                            auto carryOverRange = carryOverRanges[i].GetObject();
 | 
					 | 
				
			||||||
                                                            for (auto r = carryOverRange.MemberBegin(); r != carryOverRange.MemberEnd(); ++r) {
 | 
					 | 
				
			||||||
                                                                QString const &memName = QString::fromStdString(r->name.GetString());
 | 
					 | 
				
			||||||
                                                                if (memName == "carry_over_id") {
 | 
					 | 
				
			||||||
                                                                    if (r->value.IsInt()) {
 | 
					 | 
				
			||||||
                                                                        TariffCarryOver.m_id = r->value.GetInt();
 | 
					 | 
				
			||||||
                                                                    } else {
 | 
					 | 
				
			||||||
                                                                        qCritical() << __func__ << ":" << __LINE__ << "carryOverId not an integer";
 | 
					 | 
				
			||||||
                                                                    }
 | 
					 | 
				
			||||||
                                                                } else
 | 
					 | 
				
			||||||
                                                                if (memName == "carry_over_duration") {
 | 
					 | 
				
			||||||
                                                                    if (r->value.IsInt()) {
 | 
					 | 
				
			||||||
                                                                        carryOverDuration = r->value.GetInt();
 | 
					 | 
				
			||||||
                                                                    }
 | 
					 | 
				
			||||||
                                                                } else
 | 
					 | 
				
			||||||
                                                                if (memName == "carry_over_start") {
 | 
					 | 
				
			||||||
                                                                    if (r->value.IsString()) {
 | 
					 | 
				
			||||||
                                                                        carryOverStartStr = QString::fromStdString(r->value.GetString());
 | 
					 | 
				
			||||||
                                                                    }
 | 
					 | 
				
			||||||
                                                                } else
 | 
					 | 
				
			||||||
                                                                if (memName == "carry_over_end") {
 | 
					 | 
				
			||||||
                                                                    if (r->value.IsString()) {
 | 
					 | 
				
			||||||
                                                                        carryOverEndStr = QString::fromStdString(r->value.GetString());
 | 
					 | 
				
			||||||
                                                                    }
 | 
					 | 
				
			||||||
                                                                } else
 | 
					 | 
				
			||||||
                                                                if (memName == "carry_over_if") {
 | 
					 | 
				
			||||||
                                                                    if (r->value.IsString()) {
 | 
					 | 
				
			||||||
                                                                        carryOverIf = QString::fromStdString(r->value.GetString());
 | 
					 | 
				
			||||||
                                                                    }
 | 
					 | 
				
			||||||
                                                                } else {
 | 
					 | 
				
			||||||
                                                                    qCritical() << __func__ << ":" << __LINE__ << "WARNING unknown carry-over setting" << memName;
 | 
					 | 
				
			||||||
                                                                }
 | 
					 | 
				
			||||||
                                                            }
 | 
					 | 
				
			||||||
                                                        }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                                                        if (!carryOverStartStr.isEmpty() && !carryOverEndStr.isEmpty() && carryOverDuration != -1) {
 | 
					 | 
				
			||||||
                                                            ATBTime carryOverStart(carryOverStartStr);
 | 
					 | 
				
			||||||
                                                            ATBTime carryOverEnd(carryOverEndStr);
 | 
					 | 
				
			||||||
                                                            if (carryOverStart.isValid() && carryOverEnd.isValid()) {
 | 
					 | 
				
			||||||
                                                                TariffCarryOver.m_range = TimeRange(carryOverStart, carryOverEnd, carryOverDuration);
 | 
					 | 
				
			||||||
                                                                TariffCarryOver.m_weekDay = weekDayName;
 | 
					 | 
				
			||||||
                                                                if (!d.isNull() && d.isValid()) {
 | 
					 | 
				
			||||||
                                                                    TariffCarryOver.m_date = d;
 | 
					 | 
				
			||||||
                                                                }
 | 
					 | 
				
			||||||
                                                                if (!carryOverIf.isEmpty()) {
 | 
					 | 
				
			||||||
                                                                    TariffCarryOver.setCarryOverIf(carryOverIf);
 | 
					 | 
				
			||||||
                                                                }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                                                                // qCritical() << TariffCarryOver;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                                                                cfg.TariffCarryOvers.insert(std::pair<int, ATBTariffCarryOver>(weekDay, TariffCarryOver));
 | 
					 | 
				
			||||||
                                                            }
 | 
					 | 
				
			||||||
                                                        }
 | 
					 | 
				
			||||||
                                                    }
 | 
					 | 
				
			||||||
                                                }
 | 
					 | 
				
			||||||
                                            }
 | 
					 | 
				
			||||||
                                        } else {
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                                        }
 | 
					 | 
				
			||||||
                                    }
 | 
					 | 
				
			||||||
                                }
 | 
					 | 
				
			||||||
                            }
 | 
					 | 
				
			||||||
                        }
 | 
					 | 
				
			||||||
                    }
 | 
					 | 
				
			||||||
                } else
 | 
					 | 
				
			||||||
                if (name == "service_settings") {
 | 
					 | 
				
			||||||
                    ATBTariffService TariffService;
 | 
					 | 
				
			||||||
                    if (m->value.IsArray()) {
 | 
					 | 
				
			||||||
                        auto service = m->value.GetArray();
 | 
					 | 
				
			||||||
                        if (service.Size() == 0) {
 | 
					 | 
				
			||||||
                            qCritical() << __func__ << ":" << __LINE__ << "no service settings for" << weekDayName;
 | 
					 | 
				
			||||||
                        } else {
 | 
					 | 
				
			||||||
                            for (rapidjson::SizeType j = 0; j < service.Size(); ++j) {
 | 
					 | 
				
			||||||
                                if (service[j].IsObject()) {
 | 
					 | 
				
			||||||
                                    auto serviceSetting = service[j].GetObject();
 | 
					 | 
				
			||||||
                                    for (auto n = serviceSetting.MemberBegin(); n != serviceSetting.MemberEnd(); ++n) {
 | 
					 | 
				
			||||||
                                        QString const &name = QString::fromStdString(n->name.GetString());
 | 
					 | 
				
			||||||
                                        if (name == "service_ranges") {
 | 
					 | 
				
			||||||
                                            if (n->value.IsArray()) {
 | 
					 | 
				
			||||||
                                                auto serviceRanges = n->value.GetArray();
 | 
					 | 
				
			||||||
                                                if (serviceRanges.Size() == 0) {
 | 
					 | 
				
			||||||
                                                    qCritical() << __func__ << ":" << __LINE__ << "no service ranges for" << weekDayName;
 | 
					 | 
				
			||||||
                                                } else {
 | 
					 | 
				
			||||||
                                                    QString serviceStartStr;
 | 
					 | 
				
			||||||
                                                    QString serviceEndStr;
 | 
					 | 
				
			||||||
                                                    QString serviceIf;
 | 
					 | 
				
			||||||
                                                    int serviceDuration = -1;
 | 
					 | 
				
			||||||
                                                    for (rapidjson::SizeType i = 0; i < serviceRanges.Size(); ++i) {
 | 
					 | 
				
			||||||
                                                        if (serviceRanges[j].IsObject()) {
 | 
					 | 
				
			||||||
                                                            auto serviceRange = serviceRanges[i].GetObject();
 | 
					 | 
				
			||||||
                                                            for (auto r = serviceRange.MemberBegin(); r != serviceRange.MemberEnd(); ++r) {
 | 
					 | 
				
			||||||
                                                                QString const &memName = QString::fromStdString(r->name.GetString());
 | 
					 | 
				
			||||||
                                                                if (memName == "service_id") {
 | 
					 | 
				
			||||||
                                                                    if (r->value.IsInt()) {
 | 
					 | 
				
			||||||
                                                                        TariffService.m_id = r->value.GetInt();
 | 
					 | 
				
			||||||
                                                                    } else {
 | 
					 | 
				
			||||||
                                                                        qCritical() << __func__ << ":" << __LINE__ << "serviceId not an integer";
 | 
					 | 
				
			||||||
                                                                    }
 | 
					 | 
				
			||||||
                                                                } else
 | 
					 | 
				
			||||||
                                                                if (memName == "service_duration") {
 | 
					 | 
				
			||||||
                                                                    if (r->value.IsInt()) {
 | 
					 | 
				
			||||||
                                                                        serviceDuration = r->value.GetInt();
 | 
					 | 
				
			||||||
                                                                    }
 | 
					 | 
				
			||||||
                                                                } else
 | 
					 | 
				
			||||||
                                                                if (memName == "service_start") {
 | 
					 | 
				
			||||||
                                                                    if (r->value.IsString()) {
 | 
					 | 
				
			||||||
                                                                        serviceStartStr = QString::fromStdString(r->value.GetString());
 | 
					 | 
				
			||||||
                                                                    }
 | 
					 | 
				
			||||||
                                                                } else
 | 
					 | 
				
			||||||
                                                                if (memName == "service_end") {
 | 
					 | 
				
			||||||
                                                                    if (r->value.IsString()) {
 | 
					 | 
				
			||||||
                                                                        serviceEndStr = QString::fromStdString(r->value.GetString());
 | 
					 | 
				
			||||||
                                                                    }
 | 
					 | 
				
			||||||
                                                                } else
 | 
					 | 
				
			||||||
                                                                if (memName == "service_if") {
 | 
					 | 
				
			||||||
                                                                    if (r->value.IsString()) {
 | 
					 | 
				
			||||||
                                                                        serviceIf = QString::fromStdString(r->value.GetString());
 | 
					 | 
				
			||||||
                                                                    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                                                                } else {
 | 
					 | 
				
			||||||
                                                                    qCritical() << __func__ << ":" << __LINE__ << "WARNING unknown service setting" << memName;
 | 
					 | 
				
			||||||
                                                                }
 | 
					 | 
				
			||||||
                                                            }
 | 
					 | 
				
			||||||
                                                        }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                                                        if (!serviceStartStr.isEmpty() && !serviceEndStr.isEmpty() && serviceDuration != -1) {
 | 
					 | 
				
			||||||
                                                            ATBTime serviceStart(serviceStartStr);
 | 
					 | 
				
			||||||
                                                            ATBTime serviceEnd(serviceEndStr);
 | 
					 | 
				
			||||||
                                                            if (serviceStart.isValid() && serviceEnd.isValid()) {
 | 
					 | 
				
			||||||
                                                                TariffService.m_range = TimeRange(serviceStart, serviceEnd, serviceDuration);
 | 
					 | 
				
			||||||
                                                                TariffService.m_weekDay = weekDayName;
 | 
					 | 
				
			||||||
                                                                if (!d.isNull() && d.isValid()) {
 | 
					 | 
				
			||||||
                                                                    TariffService.m_date = d;
 | 
					 | 
				
			||||||
                                                                }
 | 
					 | 
				
			||||||
                                                                if (!serviceIf.isEmpty()) {
 | 
					 | 
				
			||||||
                                                                    TariffService.setServiceIf(serviceIf);
 | 
					 | 
				
			||||||
                                                                }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                                                                // qCritical() << TariffService;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                                                                cfg.TariffServices.insert(std::pair<int, ATBTariffService>(weekDay, TariffService));
 | 
					 | 
				
			||||||
                                                            }
 | 
					 | 
				
			||||||
                                                        }
 | 
					 | 
				
			||||||
                                                    }
 | 
					 | 
				
			||||||
                                                }
 | 
					 | 
				
			||||||
                                            }
 | 
					 | 
				
			||||||
                                        } else {
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                                        }
 | 
					 | 
				
			||||||
                                    }
 | 
					 | 
				
			||||||
                                }
 | 
					 | 
				
			||||||
                            }
 | 
					 | 
				
			||||||
                        }
 | 
					 | 
				
			||||||
                    }
 | 
					 | 
				
			||||||
                } else
 | 
					 | 
				
			||||||
                if (name == "out_of_service_settings") {
 | 
					 | 
				
			||||||
                    ATBTariffOutOfService TariffOutOfService;
 | 
					 | 
				
			||||||
                    if (m->value.IsArray()) {
 | 
					 | 
				
			||||||
                        auto outOfService = m->value.GetArray();
 | 
					 | 
				
			||||||
                        if (outOfService.Size() == 0) {
 | 
					 | 
				
			||||||
                            qCritical() << __func__ << ":" << __LINE__ << "no out of service settings for" << weekDayName;
 | 
					 | 
				
			||||||
                        } else {
 | 
					 | 
				
			||||||
                            for (rapidjson::SizeType j = 0; j < outOfService.Size(); ++j) {
 | 
					 | 
				
			||||||
                                if (outOfService[j].IsObject()) {
 | 
					 | 
				
			||||||
                                    auto outOfServiceSetting = outOfService[j].GetObject();
 | 
					 | 
				
			||||||
                                    for (auto n = outOfServiceSetting.MemberBegin(); n != outOfServiceSetting.MemberEnd(); ++n) {
 | 
					 | 
				
			||||||
                                        QString const &name = QString::fromStdString(n->name.GetString());
 | 
					 | 
				
			||||||
                                        if (name == "out_of_service_ranges") {
 | 
					 | 
				
			||||||
                                            if (n->value.IsArray()) {
 | 
					 | 
				
			||||||
                                                auto outOfServiceRanges = n->value.GetArray();
 | 
					 | 
				
			||||||
                                                if (outOfServiceRanges.Size() == 0) {
 | 
					 | 
				
			||||||
                                                    qCritical() << __func__ << ":" << __LINE__ << "no out of service ranges for" << weekDayName;
 | 
					 | 
				
			||||||
                                                } else {
 | 
					 | 
				
			||||||
                                                    QString outOfServiceStartStr;
 | 
					 | 
				
			||||||
                                                    QString outOfServiceEndStr;
 | 
					 | 
				
			||||||
                                                    QString outOfServiceIf;
 | 
					 | 
				
			||||||
                                                    int outOfServiceDuration = -1;
 | 
					 | 
				
			||||||
                                                    for (rapidjson::SizeType i = 0; i < outOfServiceRanges.Size(); ++i) {
 | 
					 | 
				
			||||||
                                                        if (outOfServiceRanges[j].IsObject()) {
 | 
					 | 
				
			||||||
                                                            auto outOfServiceRange = outOfServiceRanges[i].GetObject();
 | 
					 | 
				
			||||||
                                                            for (auto r = outOfServiceRange.MemberBegin(); r != outOfServiceRange.MemberEnd(); ++r) {
 | 
					 | 
				
			||||||
                                                                QString const &memName = QString::fromStdString(r->name.GetString());
 | 
					 | 
				
			||||||
                                                                if (memName == "out_of_service_id") {
 | 
					 | 
				
			||||||
                                                                    if (r->value.IsInt()) {
 | 
					 | 
				
			||||||
                                                                        TariffOutOfService.m_id = r->value.GetInt();
 | 
					 | 
				
			||||||
                                                                    } else {
 | 
					 | 
				
			||||||
                                                                        qCritical() << __func__ << ":" << __LINE__ << "outOfServiceId not an integer";
 | 
					 | 
				
			||||||
                                                                    }
 | 
					 | 
				
			||||||
                                                                } else
 | 
					 | 
				
			||||||
                                                                if (memName == "out_of_service_duration") {
 | 
					 | 
				
			||||||
                                                                    if (r->value.IsInt()) {
 | 
					 | 
				
			||||||
                                                                        outOfServiceDuration = r->value.GetInt();
 | 
					 | 
				
			||||||
                                                                    }
 | 
					 | 
				
			||||||
                                                                } else
 | 
					 | 
				
			||||||
                                                                if (memName == "out_of_service_start") {
 | 
					 | 
				
			||||||
                                                                    if (r->value.IsString()) {
 | 
					 | 
				
			||||||
                                                                        outOfServiceStartStr = QString::fromStdString(r->value.GetString());
 | 
					 | 
				
			||||||
                                                                    }
 | 
					 | 
				
			||||||
                                                                } else
 | 
					 | 
				
			||||||
                                                                if (memName == "out_of_service_end") {
 | 
					 | 
				
			||||||
                                                                    if (r->value.IsString()) {
 | 
					 | 
				
			||||||
                                                                        outOfServiceEndStr = QString::fromStdString(r->value.GetString());
 | 
					 | 
				
			||||||
                                                                    }
 | 
					 | 
				
			||||||
                                                                } else
 | 
					 | 
				
			||||||
                                                                if (memName == "out_of_service_if") {
 | 
					 | 
				
			||||||
                                                                    if (r->value.IsString()) {
 | 
					 | 
				
			||||||
                                                                        outOfServiceIf = QString::fromStdString(r->value.GetString());
 | 
					 | 
				
			||||||
                                                                    }
 | 
					 | 
				
			||||||
                                                                } else {
 | 
					 | 
				
			||||||
                                                                    qCritical() << __func__ << ":" << __LINE__ << "WARNING unknown out of service setting" << memName;
 | 
					 | 
				
			||||||
                                                                }
 | 
					 | 
				
			||||||
                                                            }
 | 
					 | 
				
			||||||
                                                        }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                                                        if (!outOfServiceStartStr.isEmpty() && !outOfServiceEndStr.isEmpty() && outOfServiceDuration != -1) {
 | 
					 | 
				
			||||||
                                                            ATBTime outOfServiceStart(outOfServiceStartStr);
 | 
					 | 
				
			||||||
                                                            ATBTime outOfServiceEnd(outOfServiceEndStr);
 | 
					 | 
				
			||||||
                                                            if (outOfServiceStart.isValid() && outOfServiceEnd.isValid()) {
 | 
					 | 
				
			||||||
                                                                TariffOutOfService.m_range = TimeRange(outOfServiceStart, outOfServiceEnd, outOfServiceDuration);
 | 
					 | 
				
			||||||
                                                                TariffOutOfService.m_weekDay = weekDayName;
 | 
					 | 
				
			||||||
                                                                if (!d.isNull() && d.isValid()) {
 | 
					 | 
				
			||||||
                                                                    TariffOutOfService.m_date = d;
 | 
					 | 
				
			||||||
                                                                }
 | 
					 | 
				
			||||||
                                                                if (!outOfServiceIf.isEmpty()) {
 | 
					 | 
				
			||||||
                                                                    TariffOutOfService.setOutOfServiceIf(outOfServiceIf);
 | 
					 | 
				
			||||||
                                                                }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                                                                // qCritical() << TariffOutOfService;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                                                                cfg.TariffOutOfServices.insert(std::pair<int, ATBTariffOutOfService>(weekDay, TariffOutOfService));
 | 
					 | 
				
			||||||
                                                            }
 | 
					 | 
				
			||||||
                                                        }
 | 
					 | 
				
			||||||
                                                    }
 | 
					 | 
				
			||||||
                                                }
 | 
					 | 
				
			||||||
                                            }
 | 
					 | 
				
			||||||
                                        } else {
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                                        }
 | 
					 | 
				
			||||||
                                    }
 | 
					 | 
				
			||||||
                                }
 | 
					 | 
				
			||||||
                            }
 | 
					 | 
				
			||||||
                        }
 | 
					 | 
				
			||||||
                    }
 | 
					 | 
				
			||||||
                } else {
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                }
 | 
					 | 
				
			||||||
            }
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
    } else
 | 
					 | 
				
			||||||
    if (innerObjName == QString("week_day_default")) {
 | 
					 | 
				
			||||||
        if (k->value.IsObject()) {
 | 
					 | 
				
			||||||
            auto obj = k->value.GetObject();
 | 
					 | 
				
			||||||
            for (auto m = obj.MemberBegin(); m != obj.MemberEnd(); ++m) {
 | 
					 | 
				
			||||||
                QString const &name = m->name.GetString();
 | 
					 | 
				
			||||||
                if (name == "week_day_type") {
 | 
					 | 
				
			||||||
                    //
 | 
					 | 
				
			||||||
                } else
 | 
					 | 
				
			||||||
                if (name == "tariff_settings") {
 | 
					 | 
				
			||||||
                    if (m->value.IsObject()) {
 | 
					 | 
				
			||||||
                        auto obj = m->value.GetObject();
 | 
					 | 
				
			||||||
                        for (auto n = obj.MemberBegin(); n != obj.MemberEnd(); ++n) {
 | 
					 | 
				
			||||||
                            QString const &name = QString::fromStdString(n->name.GetString());
 | 
					 | 
				
			||||||
                            if (name == "min_time") {
 | 
					 | 
				
			||||||
                                if (n->value.IsInt()) { min_time = n->value.GetInt(); }
 | 
					 | 
				
			||||||
                            } else if (name == "max_time") {
 | 
					 | 
				
			||||||
                                if (n->value.IsInt()) { max_time = n->value.GetInt(); }
 | 
					 | 
				
			||||||
                            } else if (name == "min_price") {
 | 
					 | 
				
			||||||
                                if (n->value.IsInt()) { min_price = n->value.GetInt(); }
 | 
					 | 
				
			||||||
                            } else if (name == "max_price") {
 | 
					 | 
				
			||||||
                                if (n->value.IsInt()) { max_price = n->value.GetInt(); }
 | 
					 | 
				
			||||||
                            }
 | 
					 | 
				
			||||||
                        }
 | 
					 | 
				
			||||||
                    }
 | 
					 | 
				
			||||||
                } else
 | 
					 | 
				
			||||||
                if (name == "carry_over_settings") {
 | 
					 | 
				
			||||||
                    if (m->value.IsObject()) {
 | 
					 | 
				
			||||||
                        auto obj = m->value.GetObject();
 | 
					 | 
				
			||||||
                        for (auto n = obj.MemberBegin(); n != obj.MemberEnd(); ++n) {
 | 
					 | 
				
			||||||
                            QString const &name = QString::fromStdString(n->name.GetString());
 | 
					 | 
				
			||||||
                            if (name == "duration") {
 | 
					 | 
				
			||||||
                                if (n->value.IsInt()) {
 | 
					 | 
				
			||||||
                                    duration = n->value.GetInt();
 | 
					 | 
				
			||||||
                                }
 | 
					 | 
				
			||||||
                            } else
 | 
					 | 
				
			||||||
                            if (name == "start") {
 | 
					 | 
				
			||||||
                                if (n->value.IsString()) {
 | 
					 | 
				
			||||||
                                    start = QTime::fromString(QString::fromStdString(n->value.GetString()), Qt::ISODate);
 | 
					 | 
				
			||||||
                                }
 | 
					 | 
				
			||||||
                            } else
 | 
					 | 
				
			||||||
                            if (name == "end") {
 | 
					 | 
				
			||||||
                                if (n->value.IsString()) {
 | 
					 | 
				
			||||||
                                    end = QTime::fromString(QString::fromStdString(n->value.GetString()), Qt::ISODate);
 | 
					 | 
				
			||||||
                                }
 | 
					 | 
				
			||||||
                            } else
 | 
					 | 
				
			||||||
                            if (name == "parking_time_limit") {
 | 
					 | 
				
			||||||
                                if (n->value.IsObject()) {
 | 
					 | 
				
			||||||
                                    auto o = n->value.GetObject();
 | 
					 | 
				
			||||||
                                    for (auto l = o.MemberBegin(); l != o.MemberEnd(); ++l) {
 | 
					 | 
				
			||||||
                                        if (l->name.IsString()) {
 | 
					 | 
				
			||||||
                                            QString const &member = QString::fromStdString(l->name.GetString());
 | 
					 | 
				
			||||||
                                            if (member == "prev_day_sunday?") {
 | 
					 | 
				
			||||||
                                                if (l->value.IsArray()) {
 | 
					 | 
				
			||||||
                                                    auto limits = l->value.GetArray();
 | 
					 | 
				
			||||||
                                                    if (limits.Size() >= 2) {
 | 
					 | 
				
			||||||
                                                        about_to_exceed_limit = QTime::fromString(QString::fromStdString(limits[0].GetString()), Qt::ISODate);
 | 
					 | 
				
			||||||
                                                        parking_time_limit = QTime::fromString(QString::fromStdString(limits[1].GetString()), Qt::ISODate);
 | 
					 | 
				
			||||||
                                                    }
 | 
					 | 
				
			||||||
                                                    parkTimeLimitChecker = [&cfg, weekDay, weekDayName](ATBTariffCarryOverSettings const& cs,
 | 
					 | 
				
			||||||
                                                                                                        QDateTime const &startTime,
 | 
					 | 
				
			||||||
                                                                                                        QDateTime const &endTime,
 | 
					 | 
				
			||||||
                                                                                                        int paymentOptionIndex) {
 | 
					 | 
				
			||||||
                                                        if (startTime.date() < endTime.date()) { // start end end on different days
 | 
					 | 
				
			||||||
                                                            if (endTime.date().dayOfWeek() == (int)weekDay) {
 | 
					 | 
				
			||||||
                                                                if (endTime.time() > cs.m_parking_time_limit) {
 | 
					 | 
				
			||||||
                                                                    qCritical() << __func__ << ":" << __LINE__
 | 
					 | 
				
			||||||
                                                                                << QString("ERROR time limit for end-time violated: [%1, %2 end-time=%3], but time-limit=%4")
 | 
					 | 
				
			||||||
                                                                                        .arg(weekDayName)
 | 
					 | 
				
			||||||
                                                                                        .arg(endTime.date().toString(Qt::ISODate))
 | 
					 | 
				
			||||||
                                                                                        .arg(endTime.time().toString(Qt::ISODate))
 | 
					 | 
				
			||||||
                                                                                        .arg(cs.m_parking_time_limit.toString(Qt::ISODate));
 | 
					 | 
				
			||||||
                                                                    return true;
 | 
					 | 
				
			||||||
                                                                }
 | 
					 | 
				
			||||||
                                                                if (endTime.time() >= cs.m_about_to_exceed_parking_time_limit) {
 | 
					 | 
				
			||||||
                                                                    cfg.getPaymentOptions(paymentOptionIndex).pop_plus_steps = 1;
 | 
					 | 
				
			||||||
                                                                } else {
 | 
					 | 
				
			||||||
                                                                    cfg.getPaymentOptions(paymentOptionIndex).pop_plus_steps =
 | 
					 | 
				
			||||||
                                                                        cfg.getPaymentOptions(paymentOptionIndex).pop_plus_steps_saved;
 | 
					 | 
				
			||||||
                                                                }
 | 
					 | 
				
			||||||
                                                            }
 | 
					 | 
				
			||||||
                                                        }
 | 
					 | 
				
			||||||
                                                        return false;
 | 
					 | 
				
			||||||
                                                    };
 | 
					 | 
				
			||||||
                                                }
 | 
					 | 
				
			||||||
                                            } else
 | 
					 | 
				
			||||||
                                            if (member == "prev_day_holiday?") {
 | 
					 | 
				
			||||||
                                                if (l->value.IsArray()) {
 | 
					 | 
				
			||||||
                                                    auto limits = l->value.GetArray();
 | 
					 | 
				
			||||||
                                                    if (limits.Size() >= 2) {
 | 
					 | 
				
			||||||
                                                        about_to_exceed_limit = QTime::fromString(QString::fromStdString(limits[0].GetString()), Qt::ISODate);
 | 
					 | 
				
			||||||
                                                        parking_time_limit = QTime::fromString(QString::fromStdString(limits[1].GetString()), Qt::ISODate);
 | 
					 | 
				
			||||||
                                                    }
 | 
					 | 
				
			||||||
                                                    parkTimeLimitChecker = [&cfg, weekDayName](ATBTariffCarryOverSettings const& cs,
 | 
					 | 
				
			||||||
                                                                                               QDateTime const &startTime,
 | 
					 | 
				
			||||||
                                                                                               QDateTime const &endTime,
 | 
					 | 
				
			||||||
                                                                                               int paymentOptionIndex) {
 | 
					 | 
				
			||||||
                                                        if (startTime.date() < endTime.date()) { // start end end on different days
 | 
					 | 
				
			||||||
                                                            if (previousDayHoliday(cfg, endTime)) {
 | 
					 | 
				
			||||||
                                                                if (endTime.time() > cs.m_parking_time_limit) {
 | 
					 | 
				
			||||||
                                                                    qCritical() << __func__ << ":" << __LINE__
 | 
					 | 
				
			||||||
                                                                                << QString("ERROR time limit for end-time violated: [%1, %2, end-time=%3], but time-limit=%4")
 | 
					 | 
				
			||||||
                                                                                        .arg(weekDayName)
 | 
					 | 
				
			||||||
                                                                                        .arg(endTime.date().toString(Qt::ISODate))
 | 
					 | 
				
			||||||
                                                                                        .arg(endTime.time().toString(Qt::ISODate))
 | 
					 | 
				
			||||||
                                                                                        .arg(cs.m_parking_time_limit.toString(Qt::ISODate));
 | 
					 | 
				
			||||||
                                                                    return true;
 | 
					 | 
				
			||||||
                                                                }
 | 
					 | 
				
			||||||
                                                                if (endTime.time() >= cs.m_about_to_exceed_parking_time_limit) {
 | 
					 | 
				
			||||||
                                                                    cfg.getPaymentOptions(paymentOptionIndex).pop_plus_steps = 1;
 | 
					 | 
				
			||||||
                                                                } else {
 | 
					 | 
				
			||||||
                                                                    cfg.getPaymentOptions(paymentOptionIndex).pop_plus_steps =
 | 
					 | 
				
			||||||
                                                                        cfg.getPaymentOptions(paymentOptionIndex).pop_plus_steps_saved;
 | 
					 | 
				
			||||||
                                                                }
 | 
					 | 
				
			||||||
                                                            }
 | 
					 | 
				
			||||||
                                                        }
 | 
					 | 
				
			||||||
                                                        return false;
 | 
					 | 
				
			||||||
                                                    };
 | 
					 | 
				
			||||||
                                                }
 | 
					 | 
				
			||||||
                                            }
 | 
					 | 
				
			||||||
                                        }
 | 
					 | 
				
			||||||
                                    }
 | 
					 | 
				
			||||||
                                }
 | 
					 | 
				
			||||||
                            }
 | 
					 | 
				
			||||||
                        }
 | 
					 | 
				
			||||||
                    }
 | 
					 | 
				
			||||||
                }
 | 
					 | 
				
			||||||
            }
 | 
					 | 
				
			||||||
            ATBTariffSettings ts(max_price, min_price, max_time, min_time);
 | 
					 | 
				
			||||||
            ATBTariffCarryOverSettings cs(duration, start, end, parking_time_limit, about_to_exceed_limit,
 | 
					 | 
				
			||||||
                                          parkTimeLimitChecker);
 | 
					 | 
				
			||||||
            WeekDay = ATBWeekDay(weekDay, weekDayName, ATBWeekDay::USUAL_WEEKDAY, QDate(), ts, cs);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        } // if (k->value.IsObject()) {
 | 
					 | 
				
			||||||
    } else {
 | 
					 | 
				
			||||||
        QDate date(QDate::fromString(innerObjName, Qt::ISODate));
 | 
					 | 
				
			||||||
        if (date.isValid()) {
 | 
					 | 
				
			||||||
            if (k->value.IsObject()) {
 | 
					 | 
				
			||||||
                auto obj = k->value.GetObject();
 | 
					 | 
				
			||||||
                for (auto m = obj.MemberBegin(); m != obj.MemberEnd(); ++m) {
 | 
					 | 
				
			||||||
                    QString const &name = m->name.GetString();
 | 
					 | 
				
			||||||
                    if (name == "week_day_type") {
 | 
					 | 
				
			||||||
                        // TODO
 | 
					 | 
				
			||||||
                    } else
 | 
					 | 
				
			||||||
                    if (name == "tariff_settings") {
 | 
					 | 
				
			||||||
                        if (m->value.IsObject()) {
 | 
					 | 
				
			||||||
                            auto obj = m->value.GetObject();
 | 
					 | 
				
			||||||
                            for (auto n = obj.MemberBegin(); n != obj.MemberEnd(); ++n) {
 | 
					 | 
				
			||||||
                                QString const &name = QString::fromStdString(n->name.GetString());
 | 
					 | 
				
			||||||
                                if (name == "min_time") {
 | 
					 | 
				
			||||||
                                    if (n->value.IsInt()) { min_time = n->value.GetInt(); }
 | 
					 | 
				
			||||||
                                } else if (name == "max_time") {
 | 
					 | 
				
			||||||
                                    if (n->value.IsInt()) { max_time = n->value.GetInt(); }
 | 
					 | 
				
			||||||
                                } else if (name == "min_price") {
 | 
					 | 
				
			||||||
                                    if (n->value.IsInt()) { min_price = n->value.GetInt(); }
 | 
					 | 
				
			||||||
                                } else if (name == "max_price") {
 | 
					 | 
				
			||||||
                                    if (n->value.IsInt()) { max_price = n->value.GetInt(); }
 | 
					 | 
				
			||||||
                                }
 | 
					 | 
				
			||||||
                            }
 | 
					 | 
				
			||||||
                        }
 | 
					 | 
				
			||||||
                    } else
 | 
					 | 
				
			||||||
                    if (name == "carry_over_settings") {
 | 
					 | 
				
			||||||
                        if (m->value.IsObject()) {
 | 
					 | 
				
			||||||
                            auto obj = m->value.GetObject();
 | 
					 | 
				
			||||||
                            for (auto n = obj.MemberBegin(); n != obj.MemberEnd(); ++n) {
 | 
					 | 
				
			||||||
                                QString const &name = QString::fromStdString(n->name.GetString());
 | 
					 | 
				
			||||||
                                if (name == "duration") {
 | 
					 | 
				
			||||||
                                    if (n->value.IsInt()) {
 | 
					 | 
				
			||||||
                                        duration = n->value.GetInt();
 | 
					 | 
				
			||||||
                                    }
 | 
					 | 
				
			||||||
                                } else
 | 
					 | 
				
			||||||
                                if (name == "start") {
 | 
					 | 
				
			||||||
                                    if (n->value.IsString()) {
 | 
					 | 
				
			||||||
                                        start = QTime::fromString(QString::fromStdString(n->value.GetString()), Qt::ISODate);
 | 
					 | 
				
			||||||
                                    }
 | 
					 | 
				
			||||||
                                } else
 | 
					 | 
				
			||||||
                                if (name == "end") {
 | 
					 | 
				
			||||||
                                    if (n->value.IsString()) {
 | 
					 | 
				
			||||||
                                        end = QTime::fromString(QString::fromStdString(n->value.GetString()), Qt::ISODate);
 | 
					 | 
				
			||||||
                                    }
 | 
					 | 
				
			||||||
                                } else
 | 
					 | 
				
			||||||
                                if (name == "parking_time_limit") {
 | 
					 | 
				
			||||||
                                    if (n->value.IsObject()) {
 | 
					 | 
				
			||||||
                                        auto o = n->value.GetObject();
 | 
					 | 
				
			||||||
                                        for (auto l = o.MemberBegin(); l != o.MemberEnd(); ++l) {
 | 
					 | 
				
			||||||
                                            if (l->name.IsString()) {
 | 
					 | 
				
			||||||
                                                QString const &member = QString::fromStdString(l->name.GetString());
 | 
					 | 
				
			||||||
                                                if (member == "default") {
 | 
					 | 
				
			||||||
                                                    if (l->value.IsArray()) {
 | 
					 | 
				
			||||||
                                                        auto limits = l->value.GetArray();
 | 
					 | 
				
			||||||
                                                        if (limits.Size() >= 2) {
 | 
					 | 
				
			||||||
                                                            about_to_exceed_limit = QTime::fromString(QString::fromStdString(limits[0].GetString()), Qt::ISODate);
 | 
					 | 
				
			||||||
                                                            parking_time_limit = QTime::fromString(QString::fromStdString(limits[1].GetString()), Qt::ISODate);
 | 
					 | 
				
			||||||
                                                        }
 | 
					 | 
				
			||||||
                                                    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                                                    parkTimeLimitChecker = [&cfg, weekDay](ATBTariffCarryOverSettings const& cs,
 | 
					 | 
				
			||||||
                                                                                           QDateTime const &startTime,
 | 
					 | 
				
			||||||
                                                                                           QDateTime const &endTime,
 | 
					 | 
				
			||||||
                                                                                           int paymentOptionIndex) {
 | 
					 | 
				
			||||||
                                                        if (startTime.date() < endTime.date()) { // start end end on different days
 | 
					 | 
				
			||||||
                                                            if (endTime.date().dayOfWeek() == (int)weekDay) {
 | 
					 | 
				
			||||||
                                                                if (endTime.time() > cs.m_parking_time_limit) {
 | 
					 | 
				
			||||||
                                                                    qCritical() << __func__ << ":" << __LINE__
 | 
					 | 
				
			||||||
                                                                                << QString("ERROR time limit for end-time violated: end-time=%1, but time-limit=%2")
 | 
					 | 
				
			||||||
                                                                                        .arg(endTime.time().toString(Qt::ISODate))
 | 
					 | 
				
			||||||
                                                                                        .arg(cs.m_parking_time_limit.toString(Qt::ISODate));
 | 
					 | 
				
			||||||
                                                                    return true;
 | 
					 | 
				
			||||||
                                                                }
 | 
					 | 
				
			||||||
                                                                if (endTime.time() >= cs.m_about_to_exceed_parking_time_limit) {
 | 
					 | 
				
			||||||
                                                                    cfg.getPaymentOptions(paymentOptionIndex).pop_plus_steps = 1;
 | 
					 | 
				
			||||||
                                                                } else {
 | 
					 | 
				
			||||||
                                                                    cfg.getPaymentOptions(paymentOptionIndex).pop_plus_steps =
 | 
					 | 
				
			||||||
                                                                        cfg.getPaymentOptions(paymentOptionIndex).pop_plus_steps_saved;
 | 
					 | 
				
			||||||
                                                                }
 | 
					 | 
				
			||||||
                                                            }
 | 
					 | 
				
			||||||
                                                        }
 | 
					 | 
				
			||||||
                                                        return false;
 | 
					 | 
				
			||||||
                                                    };
 | 
					 | 
				
			||||||
                                                } else
 | 
					 | 
				
			||||||
                                                if (member == "prev_day_holiday?") {
 | 
					 | 
				
			||||||
                                                    if (l->value.IsArray()) {
 | 
					 | 
				
			||||||
                                                        auto limits = l->value.GetArray();
 | 
					 | 
				
			||||||
                                                        if (limits.Size() >= 2) {
 | 
					 | 
				
			||||||
                                                            about_to_exceed_limit = QTime::fromString(QString::fromStdString(limits[0].GetString()), Qt::ISODate);
 | 
					 | 
				
			||||||
                                                            parking_time_limit = QTime::fromString(QString::fromStdString(limits[1].GetString()), Qt::ISODate);
 | 
					 | 
				
			||||||
                                                        }
 | 
					 | 
				
			||||||
                                                    }
 | 
					 | 
				
			||||||
                                                    parkTimeLimitChecker = [&cfg](ATBTariffCarryOverSettings const& cs,
 | 
					 | 
				
			||||||
                                                                                  QDateTime const &startTime,
 | 
					 | 
				
			||||||
                                                                                  QDateTime const &endTime,
 | 
					 | 
				
			||||||
                                                                                  int paymentOptionIndex) {
 | 
					 | 
				
			||||||
                                                        if (startTime.date() < endTime.date()) { // start end end on different days
 | 
					 | 
				
			||||||
                                                            if (previousDayHoliday(cfg, endTime)) {
 | 
					 | 
				
			||||||
                                                                if (endTime.time() > cs.m_parking_time_limit) {
 | 
					 | 
				
			||||||
                                                                    qCritical() << __func__ << ":" << __LINE__
 | 
					 | 
				
			||||||
                                                                                << QString("ERROR time limit for end-time violated: end-time=%1, but time-limit=%2")
 | 
					 | 
				
			||||||
                                                                                        .arg(endTime.time().toString(Qt::ISODate))
 | 
					 | 
				
			||||||
                                                                                        .arg(cs.m_parking_time_limit.toString(Qt::ISODate));
 | 
					 | 
				
			||||||
                                                                    return true;
 | 
					 | 
				
			||||||
                                                                }
 | 
					 | 
				
			||||||
                                                                if (endTime.time() >= cs.m_about_to_exceed_parking_time_limit) {
 | 
					 | 
				
			||||||
                                                                    cfg.getPaymentOptions(paymentOptionIndex).pop_plus_steps = 1;
 | 
					 | 
				
			||||||
                                                                } else {
 | 
					 | 
				
			||||||
                                                                    cfg.getPaymentOptions(paymentOptionIndex).pop_plus_steps =
 | 
					 | 
				
			||||||
                                                                        cfg.getPaymentOptions(paymentOptionIndex).pop_plus_steps_saved;
 | 
					 | 
				
			||||||
                                                                }
 | 
					 | 
				
			||||||
                                                            }
 | 
					 | 
				
			||||||
                                                        }
 | 
					 | 
				
			||||||
                                                        return false;
 | 
					 | 
				
			||||||
                                                    };
 | 
					 | 
				
			||||||
                                                }
 | 
					 | 
				
			||||||
                                            }
 | 
					 | 
				
			||||||
                                        }
 | 
					 | 
				
			||||||
                                    }
 | 
					 | 
				
			||||||
                                }
 | 
					 | 
				
			||||||
                            }
 | 
					 | 
				
			||||||
                        }
 | 
					 | 
				
			||||||
                    }
 | 
					 | 
				
			||||||
                }
 | 
					 | 
				
			||||||
                ATBTariffSettings ts(max_price, min_price, max_time, min_time);
 | 
					 | 
				
			||||||
                ATBTariffCarryOverSettings cs(duration, start, end, parking_time_limit,
 | 
					 | 
				
			||||||
                                              about_to_exceed_limit, parkTimeLimitChecker);
 | 
					 | 
				
			||||||
                WeekDay = ATBWeekDay(weekDay, weekDayName, ATBWeekDay::HOLIDAY, date, ts, cs);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
            } else {// if (k->value.IsObject()) {
 | 
					 | 
				
			||||||
                qCritical() << __func__ << ":" << __LINE__ << "ERROR: no object";
 | 
					 | 
				
			||||||
            }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        } else {
 | 
					 | 
				
			||||||
            qCritical() << __func__ << __LINE__
 | 
					 | 
				
			||||||
                        << "ERROR: invalid date for" << weekDayName << "," << innerObjName;
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    return WeekDay;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/// <inheritdoc/>
 | 
					/// <inheritdoc/>
 | 
				
			||||||
bool Configuration::ParseJson(Configuration* cfg, const char* json)
 | 
					bool Configuration::ParseJson(Configuration* cfg, const char* json)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
@@ -798,7 +96,7 @@ bool Configuration::ParseJson(Configuration* cfg, const char* json)
 | 
				
			|||||||
            ATBPaymentRate PaymentRate;
 | 
					            ATBPaymentRate PaymentRate;
 | 
				
			||||||
            ATBSpecialDaysWorktime SpecialDaysWorktime;
 | 
					            ATBSpecialDaysWorktime SpecialDaysWorktime;
 | 
				
			||||||
            ATBSpecialDays SpecialDays;
 | 
					            ATBSpecialDays SpecialDays;
 | 
				
			||||||
            //ATBWeekDay WeekDay;
 | 
					            ATBWeekDays  WeekDays;
 | 
				
			||||||
            ATBWeekDaysWorktime  WeekDaysWorktime;
 | 
					            ATBWeekDaysWorktime  WeekDaysWorktime;
 | 
				
			||||||
            ATBPeriodYear YearPeriod;
 | 
					            ATBPeriodYear YearPeriod;
 | 
				
			||||||
            ATBDailyTicket DailyTicket;
 | 
					            ATBDailyTicket DailyTicket;
 | 
				
			||||||
@@ -873,36 +171,6 @@ bool Configuration::ParseJson(Configuration* cfg, const char* json)
 | 
				
			|||||||
                    {
 | 
					                    {
 | 
				
			||||||
                    case MemberType::UnknownType:
 | 
					                    case MemberType::UnknownType:
 | 
				
			||||||
                        break;
 | 
					                        break;
 | 
				
			||||||
                    case MemberType::WeekDaysType: {
 | 
					 | 
				
			||||||
                        ATBWeekDay WeekDay;
 | 
					 | 
				
			||||||
                        if (QString(mb_name) == "Monday") {
 | 
					 | 
				
			||||||
                            WeekDay = parseWeekDay(*cfg, k, inner_obj_name, Qt::Monday, mb_name);
 | 
					 | 
				
			||||||
                        } else
 | 
					 | 
				
			||||||
                        if (QString(mb_name) == "Tuesday") {
 | 
					 | 
				
			||||||
                            WeekDay = parseWeekDay(*cfg, k, inner_obj_name, Qt::Tuesday, mb_name);
 | 
					 | 
				
			||||||
                        } else
 | 
					 | 
				
			||||||
                        if (QString(mb_name) == "Wednesday") {
 | 
					 | 
				
			||||||
                            WeekDay = parseWeekDay(*cfg, k, inner_obj_name, Qt::Wednesday, mb_name);
 | 
					 | 
				
			||||||
                        } else
 | 
					 | 
				
			||||||
                        if (QString(mb_name) == "Thursday") {
 | 
					 | 
				
			||||||
                            WeekDay = parseWeekDay(*cfg, k, inner_obj_name, Qt::Thursday, mb_name);
 | 
					 | 
				
			||||||
                        } else
 | 
					 | 
				
			||||||
                        if (QString(mb_name) == "Friday") {
 | 
					 | 
				
			||||||
                            WeekDay = parseWeekDay(*cfg, k, inner_obj_name, Qt::Friday, mb_name);
 | 
					 | 
				
			||||||
                        } else
 | 
					 | 
				
			||||||
                        if (QString(mb_name) == "Saturday") {
 | 
					 | 
				
			||||||
                            WeekDay = parseWeekDay(*cfg, k, inner_obj_name, Qt::Saturday, mb_name);
 | 
					 | 
				
			||||||
                        } else
 | 
					 | 
				
			||||||
                        if (QString(mb_name) == "Sunday") {
 | 
					 | 
				
			||||||
                            WeekDay = parseWeekDay(*cfg, k, inner_obj_name, Qt::Sunday, mb_name);
 | 
					 | 
				
			||||||
                        } else {
 | 
					 | 
				
			||||||
                            qCritical() << "ERROR: unknown week day" << mb_name;
 | 
					 | 
				
			||||||
                        }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                        cfg->WeekDays.insert(pair<Qt::DayOfWeek, ATBWeekDay>(WeekDay.m_id, WeekDay));
 | 
					 | 
				
			||||||
                        // qCritical() << WeekDay;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                    } break;
 | 
					 | 
				
			||||||
                    case MemberType::CarryOverType: {
 | 
					                    case MemberType::CarryOverType: {
 | 
				
			||||||
                        if (QString(inner_obj_name) == QString("carry_over_id")) {
 | 
					                        if (QString(inner_obj_name) == QString("carry_over_id")) {
 | 
				
			||||||
                            if (k->value.IsInt()) {
 | 
					                            if (k->value.IsInt()) {
 | 
				
			||||||
@@ -993,49 +261,6 @@ bool Configuration::ParseJson(Configuration* cfg, const char* json)
 | 
				
			|||||||
                                QTime const &t = QTime::fromString(k->value.GetString(), Qt::ISODate);
 | 
					                                QTime const &t = QTime::fromString(k->value.GetString(), Qt::ISODate);
 | 
				
			||||||
                                TariffPrepaidOption.static_end = t;
 | 
					                                TariffPrepaidOption.static_end = t;
 | 
				
			||||||
                            }
 | 
					                            }
 | 
				
			||||||
                        } else
 | 
					 | 
				
			||||||
                        if (QString(inner_obj_name) == QString("prepaid_week")) {
 | 
					 | 
				
			||||||
                            if (k->value.IsArray()) {
 | 
					 | 
				
			||||||
                                auto days = k->value.GetArray();
 | 
					 | 
				
			||||||
                                for (rapidjson::SizeType j=0; j < days.Size(); ++j) {
 | 
					 | 
				
			||||||
                                    if (days[j].IsObject()) {
 | 
					 | 
				
			||||||
                                        auto weekday = days[j].GetObject();
 | 
					 | 
				
			||||||
                                        for (auto w = weekday.MemberBegin(); w != weekday.MemberEnd(); ++w) {
 | 
					 | 
				
			||||||
                                            int day = j+1; // 8 entries
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                                            TariffPrepaidOption.prepaid[day].day = 0;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                                            QString member(QString::fromStdString(w->name.GetString()));
 | 
					 | 
				
			||||||
                                            if (member == "prepaid_day") {
 | 
					 | 
				
			||||||
                                                if (w->value.IsInt()) {
 | 
					 | 
				
			||||||
                                                    rapidjson::SizeType const d = w->value.GetInt();
 | 
					 | 
				
			||||||
                                                    if (d != (j+1)) {
 | 
					 | 
				
			||||||
                                                        qCritical() << "ERROR: misconfigured jsonfile" << d << "!=" << (j+1);
 | 
					 | 
				
			||||||
                                                    }
 | 
					 | 
				
			||||||
                                                    TariffPrepaidOption.prepaid[day].day = day;
 | 
					 | 
				
			||||||
                                                }
 | 
					 | 
				
			||||||
                                            } else
 | 
					 | 
				
			||||||
                                            if (member == "prepaid_duration") {
 | 
					 | 
				
			||||||
                                                if (w->value.IsInt()) {
 | 
					 | 
				
			||||||
                                                    TariffPrepaidOption.prepaid[day].duration = w->value.GetInt();
 | 
					 | 
				
			||||||
                                                }
 | 
					 | 
				
			||||||
                                            } else
 | 
					 | 
				
			||||||
                                            if (member == "prepaid_static_start") {
 | 
					 | 
				
			||||||
                                                if (w->value.IsString()) {
 | 
					 | 
				
			||||||
                                                    QTime const &t = QTime::fromString(w->value.GetString(), Qt::ISODate);
 | 
					 | 
				
			||||||
                                                    TariffPrepaidOption.prepaid[day].static_start = t;
 | 
					 | 
				
			||||||
                                                }
 | 
					 | 
				
			||||||
                                            } else
 | 
					 | 
				
			||||||
                                            if (member == "prepaid_static_end") {
 | 
					 | 
				
			||||||
                                                if (w->value.IsString()) {
 | 
					 | 
				
			||||||
                                                    QTime const &t = QTime::fromString(w->value.GetString(), Qt::ISODate);
 | 
					 | 
				
			||||||
                                                    TariffPrepaidOption.prepaid[day].static_end = t;
 | 
					 | 
				
			||||||
                                                }
 | 
					 | 
				
			||||||
                                            }
 | 
					 | 
				
			||||||
                                        }
 | 
					 | 
				
			||||||
                                    }
 | 
					 | 
				
			||||||
                                }
 | 
					 | 
				
			||||||
                            }
 | 
					 | 
				
			||||||
                        }
 | 
					                        }
 | 
				
			||||||
                    } break;
 | 
					                    } break;
 | 
				
			||||||
                    case MemberType::InterpolationType: {
 | 
					                    case MemberType::InterpolationType: {
 | 
				
			||||||
@@ -1376,20 +601,11 @@ bool Configuration::ParseJson(Configuration* cfg, const char* json)
 | 
				
			|||||||
                        } else if (strcmp(inner_obj_name, "pop_plus_steps") == 0) {
 | 
					                        } else if (strcmp(inner_obj_name, "pop_plus_steps") == 0) {
 | 
				
			||||||
                            if (k->value.IsInt()) {
 | 
					                            if (k->value.IsInt()) {
 | 
				
			||||||
                                this->currentPaymentOptions.last().pop_plus_steps = k->value.GetInt();
 | 
					                                this->currentPaymentOptions.last().pop_plus_steps = k->value.GetInt();
 | 
				
			||||||
                                this->currentPaymentOptions.last().pop_plus_steps_saved = k->value.GetInt();
 | 
					 | 
				
			||||||
                            }
 | 
					                            }
 | 
				
			||||||
                        } else if (strcmp(inner_obj_name, "pop_minus_steps") == 0) {
 | 
					                        } else if (strcmp(inner_obj_name, "pop_minus_steps") == 0) {
 | 
				
			||||||
                            if (k->value.IsInt()) {
 | 
					                            if (k->value.IsInt()) {
 | 
				
			||||||
                                this->currentPaymentOptions.last().pop_minus_steps = k->value.GetInt();
 | 
					                                this->currentPaymentOptions.last().pop_minus_steps = k->value.GetInt();
 | 
				
			||||||
                            }
 | 
					                            }
 | 
				
			||||||
                        } else if (strcmp(inner_obj_name, "pop_allow_overpay") == 0) {
 | 
					 | 
				
			||||||
                            if (k->value.IsBool()) {
 | 
					 | 
				
			||||||
                                this->currentPaymentOptions.last().pop_allow_overpay = k->value.GetBool();
 | 
					 | 
				
			||||||
                            }
 | 
					 | 
				
			||||||
                        } else if (strcmp(inner_obj_name, "pop_apply_carry_over_to_ticket_endtime") == 0) {
 | 
					 | 
				
			||||||
                            if (k->value.IsBool()) {
 | 
					 | 
				
			||||||
                                this->currentPaymentOptions.last().pop_apply_carry_over_to_ticket_endtime = k->value.GetBool();
 | 
					 | 
				
			||||||
                            }
 | 
					 | 
				
			||||||
                        } else if (strcmp(inner_obj_name, "pop_payment_method_id") == 0) {
 | 
					                        } else if (strcmp(inner_obj_name, "pop_payment_method_id") == 0) {
 | 
				
			||||||
                            this->currentPaymentOptions.last().pop_payment_method_id = k->value.GetInt();
 | 
					                            this->currentPaymentOptions.last().pop_payment_method_id = k->value.GetInt();
 | 
				
			||||||
                        } else if (strcmp(inner_obj_name, "pop_day_end_time") == 0) {
 | 
					                        } else if (strcmp(inner_obj_name, "pop_day_end_time") == 0) {
 | 
				
			||||||
@@ -1402,7 +618,6 @@ bool Configuration::ParseJson(Configuration* cfg, const char* json)
 | 
				
			|||||||
                            this->currentPaymentOptions.last().pop_min_time = k->value.GetDouble();
 | 
					                            this->currentPaymentOptions.last().pop_min_time = k->value.GetDouble();
 | 
				
			||||||
                        } else if (strcmp(inner_obj_name, "pop_max_price") == 0) {
 | 
					                        } else if (strcmp(inner_obj_name, "pop_max_price") == 0) {
 | 
				
			||||||
                            this->currentPaymentOptions.last().pop_max_price = k->value.GetDouble();
 | 
					                            this->currentPaymentOptions.last().pop_max_price = k->value.GetDouble();
 | 
				
			||||||
                            this->currentPaymentOptions.last().pop_max_price_save = k->value.GetDouble();
 | 
					 | 
				
			||||||
                        } else if (strcmp(inner_obj_name, "pop_max_time") == 0) {
 | 
					                        } else if (strcmp(inner_obj_name, "pop_max_time") == 0) {
 | 
				
			||||||
                            this->currentPaymentOptions.last().pop_max_time = k->value.GetDouble();
 | 
					                            this->currentPaymentOptions.last().pop_max_time = k->value.GetDouble();
 | 
				
			||||||
                        } else if (strcmp(inner_obj_name, "pop_min_price") == 0) {
 | 
					                        } else if (strcmp(inner_obj_name, "pop_min_price") == 0) {
 | 
				
			||||||
@@ -1513,7 +728,6 @@ bool Configuration::ParseJson(Configuration* cfg, const char* json)
 | 
				
			|||||||
                        else if (strcmp(inner_obj_name, "pedwt_time_from") == 0) SpecialDaysWorktime.pedwt_time_from = k->value.GetString();
 | 
					                        else if (strcmp(inner_obj_name, "pedwt_time_from") == 0) SpecialDaysWorktime.pedwt_time_from = k->value.GetString();
 | 
				
			||||||
                        else if (strcmp(inner_obj_name, "pedwt_time_to") == 0) SpecialDaysWorktime.pedwt_time_to = k->value.GetString();
 | 
					                        else if (strcmp(inner_obj_name, "pedwt_time_to") == 0) SpecialDaysWorktime.pedwt_time_to = k->value.GetString();
 | 
				
			||||||
                        else if (strcmp(inner_obj_name, "pedwt_price") == 0) SpecialDaysWorktime.pedwt_price = k->value.GetDouble();
 | 
					                        else if (strcmp(inner_obj_name, "pedwt_price") == 0) SpecialDaysWorktime.pedwt_price = k->value.GetDouble();
 | 
				
			||||||
                        else if (strcmp(inner_obj_name, "pedwt_paid") == 0) SpecialDaysWorktime.pedwt_paid = k->value.GetInt();
 | 
					 | 
				
			||||||
                        break;
 | 
					                        break;
 | 
				
			||||||
                /*case MemberType::WeekDaysType:
 | 
					                /*case MemberType::WeekDaysType:
 | 
				
			||||||
                        if (strcmp(inner_obj_name, "pdiw_id") == 0) WeekDays.pdiw_id = k->value.GetInt();
 | 
					                        if (strcmp(inner_obj_name, "pdiw_id") == 0) WeekDays.pdiw_id = k->value.GetInt();
 | 
				
			||||||
@@ -1556,11 +770,6 @@ bool Configuration::ParseJson(Configuration* cfg, const char* json)
 | 
				
			|||||||
                switch (mb_type) {
 | 
					                switch (mb_type) {
 | 
				
			||||||
                case MemberType::UnknownType:
 | 
					                case MemberType::UnknownType:
 | 
				
			||||||
                    break;
 | 
					                    break;
 | 
				
			||||||
                case MemberType::WeekDaysType:
 | 
					 | 
				
			||||||
                    // qCritical() << "INSERT" << (int)WeekDay.m_id << WeekDay.m_date.toString(Qt::ISODate);
 | 
					 | 
				
			||||||
                    // cfg->WeekDays.insert(pair<Qt::DayOfWeek, ATBWeekDay>(WeekDay.m_id, WeekDay));
 | 
					 | 
				
			||||||
                    // qCritical() << WeekDay;
 | 
					 | 
				
			||||||
                    break;
 | 
					 | 
				
			||||||
                case MemberType::PaymentMethodType:
 | 
					                case MemberType::PaymentMethodType:
 | 
				
			||||||
                    cfg->PaymentMethod.insert(pair<int, ATBPaymentMethod>(PaymentMethod.pme_id, PaymentMethod));
 | 
					                    cfg->PaymentMethod.insert(pair<int, ATBPaymentMethod>(PaymentMethod.pme_id, PaymentMethod));
 | 
				
			||||||
                    break;
 | 
					                    break;
 | 
				
			||||||
@@ -1881,6 +1090,7 @@ bool Configuration::isDayIncludedAsSpecialDay(uint64_t businessHours, QDateTime
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    if (isSpecialDay(dt)) {
 | 
					    if (isSpecialDay(dt)) {
 | 
				
			||||||
        bool const &r = ((businessHours & BusinessHours::OFFICIAL_HOLIDAY) == BusinessHours::OFFICIAL_HOLIDAY);
 | 
					        bool const &r = ((businessHours & BusinessHours::OFFICIAL_HOLIDAY) == BusinessHours::OFFICIAL_HOLIDAY);
 | 
				
			||||||
 | 
					        qCritical() << "XXXXXXXXXXXXXXXXXX r" << r << businessHours;
 | 
				
			||||||
        return r;
 | 
					        return r;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -1970,6 +1180,7 @@ int Configuration::getPaymentOptionIndex(PERMIT_TYPE permitType) const {
 | 
				
			|||||||
    std::optional<QVector<ATBPaymentOption>> paymentOptions = getPaymentOptionsForAllKeys();
 | 
					    std::optional<QVector<ATBPaymentOption>> paymentOptions = getPaymentOptionsForAllKeys();
 | 
				
			||||||
    if (paymentOptions) {
 | 
					    if (paymentOptions) {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        QVector<ATBPaymentOption> const vec = paymentOptions.value();
 | 
					        QVector<ATBPaymentOption> const vec = paymentOptions.value();
 | 
				
			||||||
        PermitType const p(permitType);
 | 
					        PermitType const p(permitType);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -1983,73 +1194,6 @@ int Configuration::getPaymentOptionIndex(PERMIT_TYPE permitType) const {
 | 
				
			|||||||
    return 0;
 | 
					    return 0;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
int getPaymentOptionIndex(Configuration const &cfg, QDateTime const &dt) {
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    int const numOptions = cfg.getAllPaymentOptions().size();
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    // qCritical() << __func__ << ":" << __LINE__ << "numOptions" << numOptions;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    for (int opt=0; opt < numOptions; ++opt) {
 | 
					 | 
				
			||||||
        uint64_t const pop_business_hours = cfg.getPaymentOptions(opt).pop_business_hours;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        if (pop_business_hours == 0) { // 0 == 24/7
 | 
					 | 
				
			||||||
            return opt;
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        // QDateTime const dt = QDateTime::currentDateTime();
 | 
					 | 
				
			||||||
        int const dayOfWeek = dt.date().dayOfWeek();
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        // qCritical() << __func__ << ":" << __LINE__ << "dayOfWeek" << dayOfWeek;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        if (isHoliday(cfg, dt)) {
 | 
					 | 
				
			||||||
            if (pop_business_hours & BusinessHours::OFFICIAL_HOLIDAY) {
 | 
					 | 
				
			||||||
                return opt;
 | 
					 | 
				
			||||||
            }
 | 
					 | 
				
			||||||
        } else {
 | 
					 | 
				
			||||||
            switch (dayOfWeek) {
 | 
					 | 
				
			||||||
            case (int)Qt::Monday: {
 | 
					 | 
				
			||||||
                if (pop_business_hours & BusinessHours::MON) {
 | 
					 | 
				
			||||||
                    return opt;
 | 
					 | 
				
			||||||
                }
 | 
					 | 
				
			||||||
            } break;
 | 
					 | 
				
			||||||
            case (int)Qt::Tuesday: {
 | 
					 | 
				
			||||||
                if (pop_business_hours & BusinessHours::TUE) {
 | 
					 | 
				
			||||||
                    return opt;
 | 
					 | 
				
			||||||
                }
 | 
					 | 
				
			||||||
            } break;
 | 
					 | 
				
			||||||
            case (int)Qt::Wednesday: {
 | 
					 | 
				
			||||||
                if (pop_business_hours & BusinessHours::WED) {
 | 
					 | 
				
			||||||
                    return opt;
 | 
					 | 
				
			||||||
                }
 | 
					 | 
				
			||||||
            } break;
 | 
					 | 
				
			||||||
            case (int)Qt::Thursday: {
 | 
					 | 
				
			||||||
                if (pop_business_hours & BusinessHours::THU) {
 | 
					 | 
				
			||||||
                    return opt;
 | 
					 | 
				
			||||||
                }
 | 
					 | 
				
			||||||
            } break;
 | 
					 | 
				
			||||||
            case (int)Qt::Friday: {
 | 
					 | 
				
			||||||
                if (pop_business_hours & BusinessHours::FRI) {
 | 
					 | 
				
			||||||
                    return opt;
 | 
					 | 
				
			||||||
                }
 | 
					 | 
				
			||||||
            } break;
 | 
					 | 
				
			||||||
            case (int)Qt::Saturday: {
 | 
					 | 
				
			||||||
                if (pop_business_hours & BusinessHours::SAT) {
 | 
					 | 
				
			||||||
                    return opt;
 | 
					 | 
				
			||||||
                }
 | 
					 | 
				
			||||||
            } break;
 | 
					 | 
				
			||||||
            case (int)Qt::Sunday: {
 | 
					 | 
				
			||||||
                if (pop_business_hours & BusinessHours::SUN) {
 | 
					 | 
				
			||||||
        qCritical() << __func__ << ":" << __LINE__ << "opt" << opt;
 | 
					 | 
				
			||||||
                    return opt;
 | 
					 | 
				
			||||||
                }
 | 
					 | 
				
			||||||
            } break;
 | 
					 | 
				
			||||||
            }
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    return -1;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
std::optional<QVector<ATBTariffProduct>>
 | 
					std::optional<QVector<ATBTariffProduct>>
 | 
				
			||||||
Configuration::getTariffProductForProductId(PermitType permitType) const {
 | 
					Configuration::getTariffProductForProductId(PermitType permitType) const {
 | 
				
			||||||
    QString permitTypeName(permitType);
 | 
					    QString permitTypeName(permitType);
 | 
				
			||||||
@@ -2116,7 +1260,7 @@ std::optional<QDateTime> Configuration::prepaidStart(QDateTime const &start, int
 | 
				
			|||||||
    std::optional<QDateTime> value;
 | 
					    std::optional<QDateTime> value;
 | 
				
			||||||
    QDateTime s = start;
 | 
					    QDateTime s = start;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    qCritical() << "(" << __func__ << ":" << __LINE__ << ")         prepaid option id:" << prepaid_option_id;
 | 
					    // qCritical() << "(" << __func__ << ":" << __LINE__ << ")         prepaid option id:" << prepaid_option_id;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    std::optional<ATBPrepaid> prepaid_option = getPrepaidType(prepaid_option_id);
 | 
					    std::optional<ATBPrepaid> prepaid_option = getPrepaidType(prepaid_option_id);
 | 
				
			||||||
    if (prepaid_option.has_value()) {
 | 
					    if (prepaid_option.has_value()) {
 | 
				
			||||||
@@ -2304,43 +1448,3 @@ Configuration::getWeekDayWorkTime(QTime const &time, Qt::DayOfWeek dayOfWeek) {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    return value;
 | 
					    return value;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					 | 
				
			||||||
bool isHoliday(Configuration const &cfg, QDateTime const &t) {
 | 
					 | 
				
			||||||
    int const weekDay = t.date().dayOfWeek();
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    for (auto[iter, rEnd] = cfg.WeekDays.equal_range(static_cast<Qt::DayOfWeek>(weekDay));
 | 
					 | 
				
			||||||
         iter != rEnd;
 | 
					 | 
				
			||||||
         ++iter) {
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        if (iter->second.m_type == ATBWeekDay::WeekDayType::HOLIDAY) {
 | 
					 | 
				
			||||||
            QDate const &d = iter->second.m_date;
 | 
					 | 
				
			||||||
            if (!d.isNull() && d.isValid()) {
 | 
					 | 
				
			||||||
                if (t.date() == d) {
 | 
					 | 
				
			||||||
                    return true;
 | 
					 | 
				
			||||||
                }
 | 
					 | 
				
			||||||
            }
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
    return false;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
bool previousDayHoliday(Configuration const &cfg, QDateTime const &t) {
 | 
					 | 
				
			||||||
    int const weekDay = t.date().dayOfWeek();
 | 
					 | 
				
			||||||
    int const previousWeekDay = (weekDay == static_cast<int>(Qt::Monday)) ?
 | 
					 | 
				
			||||||
                static_cast<int>(Qt::Sunday) : (weekDay - 1);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    for (auto[iter, rEnd] = cfg.WeekDays.equal_range(static_cast<Qt::DayOfWeek>(previousWeekDay));
 | 
					 | 
				
			||||||
         iter != rEnd;
 | 
					 | 
				
			||||||
         ++iter) {
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        if (iter->second.m_type == ATBWeekDay::WeekDayType::HOLIDAY) {
 | 
					 | 
				
			||||||
            QDate const &d = iter->second.m_date;
 | 
					 | 
				
			||||||
            if (!d.isNull() && d.isValid()) {
 | 
					 | 
				
			||||||
                if (t.addDays(-1).date() == d) {
 | 
					 | 
				
			||||||
                    return true;
 | 
					 | 
				
			||||||
                }
 | 
					 | 
				
			||||||
            }
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
    return false;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 
 | 
				
			|||||||
@@ -207,13 +207,7 @@ bool Utilities::IsYearPeriodActive(Configuration const *cfg, QDateTime const &dt
 | 
				
			|||||||
                              dt.date().day());
 | 
					                              dt.date().day());
 | 
				
			||||||
                QDate const s(2004, year.second.pye_start_month, year.second.pye_start_day);
 | 
					                QDate const s(2004, year.second.pye_start_month, year.second.pye_start_day);
 | 
				
			||||||
                QDate const e(2004, year.second.pye_end_month, year.second.pye_end_day);
 | 
					                QDate const e(2004, year.second.pye_end_month, year.second.pye_end_day);
 | 
				
			||||||
                //qCritical() << __func__ << __LINE__ << "    d" << d.toString(Qt::ISODate);
 | 
					 | 
				
			||||||
                //qCritical() << __func__ << __LINE__ << "start" << s.toString(Qt::ISODate);
 | 
					 | 
				
			||||||
                //qCritical() << __func__ << __LINE__ << "  end" << e.toString(Qt::ISODate);
 | 
					 | 
				
			||||||
                if (s <= e) {
 | 
					 | 
				
			||||||
                return (d >= s && d <= e);
 | 
					                return (d >= s && d <= e);
 | 
				
			||||||
                }
 | 
					 | 
				
			||||||
                return (d >= s || d <= e);
 | 
					 | 
				
			||||||
            })) {
 | 
					            })) {
 | 
				
			||||||
        qCritical() << "NO VALID YEAR PERIOD";
 | 
					        qCritical() << "NO VALID YEAR PERIOD";
 | 
				
			||||||
        return false;
 | 
					        return false;
 | 
				
			||||||
@@ -427,8 +421,6 @@ PaymentMethod Utilities::getPaymentMethodId(Configuration const *cfg) {
 | 
				
			|||||||
            return PaymentMethod::Degressive;
 | 
					            return PaymentMethod::Degressive;
 | 
				
			||||||
        case PaymentMethod::Progressive:
 | 
					        case PaymentMethod::Progressive:
 | 
				
			||||||
            return PaymentMethod::Progressive;
 | 
					            return PaymentMethod::Progressive;
 | 
				
			||||||
        case PaymentMethod::Unified:
 | 
					 | 
				
			||||||
            return PaymentMethod::Unified;
 | 
					 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										334
									
								
								main/main.cpp
									
									
									
									
									
								
							
							
						
						
									
										334
									
								
								main/main.cpp
									
									
									
									
									
								
							@@ -43,7 +43,7 @@ extern "C" char* strptime(const char* s,
 | 
				
			|||||||
#define NEUHAUSER_LINSINGER_MASCHINENBAU        (0)
 | 
					#define NEUHAUSER_LINSINGER_MASCHINENBAU        (0)
 | 
				
			||||||
#define NEUHAUSER_NORDISCHES_AUSBILDUNGSZENTRUM (0)
 | 
					#define NEUHAUSER_NORDISCHES_AUSBILDUNGSZENTRUM (0)
 | 
				
			||||||
#define NEUHAUSER_BILEXA_GALTUER                (0)
 | 
					#define NEUHAUSER_BILEXA_GALTUER                (0)
 | 
				
			||||||
#define BAD_NEUENAHR_AHRWEILER                  (1)
 | 
					#define BAD_NEUENAHR_AHRWEILER                  (0)
 | 
				
			||||||
#define NEUHAUSER_CHRISTOPH_REISEN              (0)
 | 
					#define NEUHAUSER_CHRISTOPH_REISEN              (0)
 | 
				
			||||||
#define NEUHAUSER_PERNEGG_AN_DER_MUR            (0)
 | 
					#define NEUHAUSER_PERNEGG_AN_DER_MUR            (0)
 | 
				
			||||||
#define NEUHAUSER_STOCKERAU                     (0)
 | 
					#define NEUHAUSER_STOCKERAU                     (0)
 | 
				
			||||||
@@ -52,6 +52,7 @@ extern "C" char* strptime(const char* s,
 | 
				
			|||||||
#define SCHNALS_LEITER_KIRCHL                   (0)
 | 
					#define SCHNALS_LEITER_KIRCHL                   (0)
 | 
				
			||||||
#define SCHNALS_STAUMAUER                       (SCHNALS_LEITER_KIRCHL)
 | 
					#define SCHNALS_STAUMAUER                       (SCHNALS_LEITER_KIRCHL)
 | 
				
			||||||
#define VALSER_ALM                              (0)
 | 
					#define VALSER_ALM                              (0)
 | 
				
			||||||
 | 
					#define FUCHS_MUEHLBACH                         (1)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#if NEUHAUSER_KIRCHDORF==1
 | 
					#if NEUHAUSER_KIRCHDORF==1
 | 
				
			||||||
static bool test_neuhauser_kirchdorf(int step, double cost) {
 | 
					static bool test_neuhauser_kirchdorf(int step, double cost) {
 | 
				
			||||||
@@ -339,20 +340,20 @@ int main() {
 | 
				
			|||||||
    cout << endl;
 | 
					    cout << endl;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (isParsed) {
 | 
					    if (isParsed) {
 | 
				
			||||||
        //pop_min_time = get_minimal_parkingtime(&cfg);
 | 
					        pop_min_time = get_minimal_parkingtime(&cfg);
 | 
				
			||||||
        //pop_max_time = get_maximal_parkingtime(&cfg);
 | 
					        pop_max_time = get_maximal_parkingtime(&cfg);
 | 
				
			||||||
        //pop_min_price = get_minimal_parkingprice(&cfg);
 | 
					        pop_min_price = get_minimal_parkingprice(&cfg);
 | 
				
			||||||
        //pop_max_price = get_maximal_parkingprice(&cfg);
 | 
					        pop_max_price = get_maximal_parkingprice(&cfg);
 | 
				
			||||||
        //pop_daily_card_price = cfg.getPaymentOptions().pop_daily_card_price;
 | 
					        pop_daily_card_price = cfg.getPaymentOptions().pop_daily_card_price;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        //qCritical() << "        pop_min_time: " << pop_min_time;
 | 
					        qCritical() << "        pop_min_time: " << pop_min_time;
 | 
				
			||||||
        //qCritical() << "        pop_max_time: " << pop_max_time;
 | 
					        qCritical() << "        pop_max_time: " << pop_max_time;
 | 
				
			||||||
        //qCritical() << "       pop_min_price: " << pop_min_price;
 | 
					        qCritical() << "       pop_min_price: " << pop_min_price;
 | 
				
			||||||
        //qCritical() << "       pop_max_price: " << pop_max_price;
 | 
					        qCritical() << "       pop_max_price: " << pop_max_price;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        //QList<int> timeSteps = Calculator::GetInstance().GetTimeSteps(&cfg);
 | 
					        QList<int> timeSteps = Calculator::GetInstance().GetTimeSteps(&cfg);
 | 
				
			||||||
        //qCritical() << "TimeSteps" << timeSteps;
 | 
					        qCritical() << "TimeSteps" << timeSteps;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        // return 0;
 | 
					        // return 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -363,7 +364,8 @@ int main() {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        // for (int day = Qt::Monday; day <= Qt::Sunday; ++day) {
 | 
					        // for (int day = Qt::Monday; day <= Qt::Sunday; ++day) {
 | 
				
			||||||
        for (int day = Qt::Monday; day <= Qt::Monday; ++day) {
 | 
					        for (int day = Qt::Monday; day <= Qt::Monday; ++day) {
 | 
				
			||||||
            QDateTime s(QDate(2024, 8, 19 + day), QTime()); // 20: (whit) monday,..., 26: sunday
 | 
					            QDateTime s(QDate(2024, 7, 29 + day), QTime()); // 20: (whit) monday,..., 26: sunday
 | 
				
			||||||
 | 
					            QDateTime end;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            switch (day) {
 | 
					            switch (day) {
 | 
				
			||||||
            case (int)Qt::Monday:
 | 
					            case (int)Qt::Monday:
 | 
				
			||||||
@@ -389,30 +391,6 @@ int main() {
 | 
				
			|||||||
                break;
 | 
					                break;
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            QDateTime start(s);
 | 
					 | 
				
			||||||
            start.setTime(QTime(21, 30, 0));
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
            QDateTime end;
 | 
					 | 
				
			||||||
            int netto_parking_time = 14 * 60;
 | 
					 | 
				
			||||||
            struct price_t costs;
 | 
					 | 
				
			||||||
            PermitType pt(PERMIT_TYPE::SHORT_TERM_PARKING);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
            double cost = 150;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
            //cs = compute_price_for_parking_ticket(&cfg, start, netto_parking_time,
 | 
					 | 
				
			||||||
            //                                      end, &costs, pt);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
            //qCritical() << "start" << start.toString(Qt::ISODate) << "< cost" << costs.netto
 | 
					 | 
				
			||||||
            //            << "> end" << end.toString(Qt::ISODate);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
            cs = compute_duration_for_parking_ticket(&cfg, start, cost, end, PermitType(PERMIT_TYPE::SHORT_TERM_PARKING));
 | 
					 | 
				
			||||||
                        qCritical() << "start" << start.toString(Qt::ISODate) << "< cost" << cost
 | 
					 | 
				
			||||||
                                    << "> end" << end.toString(Qt::ISODate);
 | 
					 | 
				
			||||||
            //}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
            exit(0);
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
            /*
 | 
					            /*
 | 
				
			||||||
            CalcState CALCULATE_LIBRARY_API compute_price_for_parking_ticket(
 | 
					            CalcState CALCULATE_LIBRARY_API compute_price_for_parking_ticket(
 | 
				
			||||||
@@ -598,8 +576,8 @@ int main() {
 | 
				
			|||||||
    int pop_max_price;
 | 
					    int pop_max_price;
 | 
				
			||||||
    int pop_daily_card_price;
 | 
					    int pop_daily_card_price;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    //input.open("/home/linux/customer_505/etc/psa_tariff/tariff01.json");
 | 
					    input.open("/home/linux/customer_505/etc/psa_tariff/tariff01.json");
 | 
				
			||||||
    input.open("/opt/ptu5/opt/customer_505/etc/psa_tariff/tariff01.json");
 | 
					    //input.open("/opt/ptu5/opt/customer_505/etc/psa_tariff/tariff01.json");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    std::stringstream sstr;
 | 
					    std::stringstream sstr;
 | 
				
			||||||
    while(input >> sstr.rdbuf());
 | 
					    while(input >> sstr.rdbuf());
 | 
				
			||||||
@@ -611,10 +589,13 @@ int main() {
 | 
				
			|||||||
    cout << endl;
 | 
					    cout << endl;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (isParsed) {
 | 
					    if (isParsed) {
 | 
				
			||||||
        pop_min_time = get_minimal_parkingtime(&cfg);
 | 
					        //PermitType permitType(PERMIT_TYPE::SHORT_TERM_PARKING);
 | 
				
			||||||
        pop_max_time = get_maximal_parkingtime(&cfg);
 | 
					        PermitType permitType(PERMIT_TYPE::DAY_TICKET_PKW);
 | 
				
			||||||
        pop_min_price = get_minimal_parkingprice(&cfg);
 | 
					
 | 
				
			||||||
        pop_max_price = get_maximal_parkingprice(&cfg);
 | 
					        pop_min_time = get_minimal_parkingtime(&cfg, permitType);
 | 
				
			||||||
 | 
					        pop_max_time = get_maximal_parkingtime(&cfg, permitType);
 | 
				
			||||||
 | 
					        pop_min_price = get_minimal_parkingprice(&cfg, permitType);
 | 
				
			||||||
 | 
					        pop_max_price = get_maximal_parkingprice(&cfg, permitType);
 | 
				
			||||||
        pop_daily_card_price = cfg.getPaymentOptions().pop_daily_card_price;
 | 
					        pop_daily_card_price = cfg.getPaymentOptions().pop_daily_card_price;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        qCritical() << "        pop_min_time: " << pop_min_time;
 | 
					        qCritical() << "        pop_min_time: " << pop_min_time;
 | 
				
			||||||
@@ -672,10 +653,10 @@ int main() {
 | 
				
			|||||||
            }
 | 
					            }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            //for (int minutes = 0; minutes < 1440; ++minutes) {
 | 
					            //for (int minutes = 0; minutes < 1440; ++minutes) {
 | 
				
			||||||
            for (int minutes = 1020; minutes <= 1020; minutes += 1) {
 | 
					            for (int minutes = 480; minutes <= 480; minutes += 1) {
 | 
				
			||||||
                QDateTime start = s.addSecs(minutes * 60);
 | 
					                QDateTime start = s.addSecs(minutes * 60);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                qCritical() << "start" << start.toString(Qt::ISODate);
 | 
					                // qCritical() << "start" << start.toString(Qt::ISODate);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                QDateTime effectiveStart = start;
 | 
					                QDateTime effectiveStart = start;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -692,8 +673,136 @@ int main() {
 | 
				
			|||||||
                }
 | 
					                }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#if 0
 | 
					#if 0
 | 
				
			||||||
 | 
					                for (int i = 700; i <= 1400; i += 700) {
 | 
				
			||||||
 | 
					                    cost = i;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                    if ((cs = compute_duration_for_parking_ticket(&cfg, start, cost, end, permitType))) {      // return value
 | 
				
			||||||
 | 
					                    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                    if (!cs) {
 | 
				
			||||||
 | 
					                        qCritical() << "ERROR CalcState" << cs.toString() << endl;
 | 
				
			||||||
 | 
					                    } else {
 | 
				
			||||||
 | 
					//                        qCritical() << cs.toString();
 | 
				
			||||||
 | 
					                    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                    //qCritical() << "start" << start.toString(Qt::ISODate) << "< cost" << cost
 | 
				
			||||||
 | 
					                    //            << "> end" << end.toString(Qt::ISODate);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                }
 | 
				
			||||||
 | 
					#else
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                start = QDateTime::currentDateTime();
 | 
				
			||||||
 | 
					                //start.setTime(QTime(9, 57, 0));
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                for (int netto_parking_time = 60; netto_parking_time <= 60; netto_parking_time += 60) {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                    QDateTime end;
 | 
				
			||||||
 | 
					                    struct price_t price;
 | 
				
			||||||
 | 
					                    cs = compute_price_for_parking_ticket(&cfg, start, netto_parking_time, end, &price, permitType, true);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                    qCritical() << "start" << start.toString(Qt::ISODate) << "end" << end.toString(Qt::ISODate)
 | 
				
			||||||
 | 
					                                << "price" << price.netto;
 | 
				
			||||||
 | 
					                }
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
 | 
					            }
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#if FUCHS_MUEHLBACH==1
 | 
				
			||||||
 | 
					    std::ifstream input;
 | 
				
			||||||
 | 
					    int pop_min_time;
 | 
				
			||||||
 | 
					    int pop_max_time;
 | 
				
			||||||
 | 
					    int pop_min_price;
 | 
				
			||||||
 | 
					    int pop_max_price;
 | 
				
			||||||
 | 
					    int pop_daily_card_price;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    input.open("/home/linux/customer_504/etc/psa_tariff/tariff01.json");
 | 
				
			||||||
 | 
					    //input.open("/opt/ptu5/opt/customer_505/etc/psa_tariff/tariff01.json");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    std::stringstream sstr;
 | 
				
			||||||
 | 
					    while(input >> sstr.rdbuf());
 | 
				
			||||||
 | 
					    std::string json(sstr.str());
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Configuration cfg;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    bool isParsed = cfg.ParseJson(&cfg, json.c_str());
 | 
				
			||||||
 | 
					    cout << endl;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    if (isParsed) {
 | 
				
			||||||
        PermitType permitType(PERMIT_TYPE::SHORT_TERM_PARKING);
 | 
					        PermitType permitType(PERMIT_TYPE::SHORT_TERM_PARKING);
 | 
				
			||||||
                for (int i = 200; i <= 200; i += 10) {
 | 
					
 | 
				
			||||||
 | 
					        //pop_min_time = get_minimal_parkingtime(&cfg, permitType);
 | 
				
			||||||
 | 
					        //pop_max_time = get_maximal_parkingtime(&cfg, permitType);
 | 
				
			||||||
 | 
					        //pop_min_price = get_minimal_parkingprice(&cfg, permitType);
 | 
				
			||||||
 | 
					        //pop_max_price = get_maximal_parkingprice(&cfg, permitType);
 | 
				
			||||||
 | 
					        //pop_daily_card_price = cfg.getPaymentOptions().pop_daily_card_price;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        //qCritical() << "        pop_min_time: " << pop_min_time;
 | 
				
			||||||
 | 
					        //qCritical() << "        pop_max_time: " << pop_max_time;
 | 
				
			||||||
 | 
					        //qCritical() << "       pop_min_price: " << pop_min_price;
 | 
				
			||||||
 | 
					        //qCritical() << "       pop_max_price: " << pop_max_price;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        CalcState cs;
 | 
				
			||||||
 | 
					        double cost;
 | 
				
			||||||
 | 
					        int durationInMinutes = 0;
 | 
				
			||||||
 | 
					        int offsetInMinutes = 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        // for (int day = Qt::Monday; day <= Qt::Sunday; ++day) {
 | 
				
			||||||
 | 
					        for (int day = Qt::Wednesday; day <= Qt::Wednesday; ++day) {
 | 
				
			||||||
 | 
					            QDateTime s(QDate(2024, 8, 11 + day), QTime(0, 0, 0));
 | 
				
			||||||
 | 
					            QDateTime end;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            switch (day) {
 | 
				
			||||||
 | 
					            case (int)Qt::Monday:
 | 
				
			||||||
 | 
					                qCritical() << "Monday";
 | 
				
			||||||
 | 
					                break;
 | 
				
			||||||
 | 
					            case (int)Qt::Tuesday:
 | 
				
			||||||
 | 
					                qCritical() << "Tuesday";
 | 
				
			||||||
 | 
					                break;
 | 
				
			||||||
 | 
					            case (int)Qt::Wednesday:
 | 
				
			||||||
 | 
					                qCritical() << "Wednesday";
 | 
				
			||||||
 | 
					                break;
 | 
				
			||||||
 | 
					            case (int)Qt::Thursday:
 | 
				
			||||||
 | 
					                qCritical() << "Thursday";
 | 
				
			||||||
 | 
					                break;
 | 
				
			||||||
 | 
					            case (int)Qt::Friday:
 | 
				
			||||||
 | 
					                qCritical() << "Friday";
 | 
				
			||||||
 | 
					                break;
 | 
				
			||||||
 | 
					            case (int)Qt::Saturday:
 | 
				
			||||||
 | 
					                qCritical() << "Saturday";
 | 
				
			||||||
 | 
					                break;
 | 
				
			||||||
 | 
					            case (int)Qt::Sunday:
 | 
				
			||||||
 | 
					                qCritical() << "Sunday";
 | 
				
			||||||
 | 
					                break;
 | 
				
			||||||
 | 
					            }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            //for (int minutes = 0; minutes < 1440; ++minutes) {
 | 
				
			||||||
 | 
					            for (int minutes = 491; minutes <= 491; minutes += 1) {
 | 
				
			||||||
 | 
					                QDateTime start = s.addSecs(minutes * 60);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                //qCritical() << "start" << start.toString(Qt::ISODate);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                QDateTime effectiveStart = start;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                // hier sollte man auch testen was passiert, falls man ausserhalb
 | 
				
			||||||
 | 
					                // der verkaufsdaten steht
 | 
				
			||||||
 | 
					                if (start.time() < QTime(7, 0, 0)) {
 | 
				
			||||||
 | 
					                    effectiveStart.setTime(QTime(7, 0, 0));
 | 
				
			||||||
 | 
					                } else
 | 
				
			||||||
 | 
					                if (start.time() <= QTime(20, 0, 0)) {
 | 
				
			||||||
 | 
					                    effectiveStart = start;
 | 
				
			||||||
 | 
					                } else {
 | 
				
			||||||
 | 
					                    effectiveStart = start.addDays(1);
 | 
				
			||||||
 | 
					                    effectiveStart.setTime(QTime(7, 0, 0)); // next day
 | 
				
			||||||
 | 
					                }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#if 0
 | 
				
			||||||
 | 
					                qCritical() << "";
 | 
				
			||||||
 | 
					                qCritical() << "compute_duration_for_parking_ticket";
 | 
				
			||||||
 | 
					                qCritical() << "===================================";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                for (int i = 0; i <= 600; i += 10) {
 | 
				
			||||||
                    cost = i;
 | 
					                    cost = i;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                    if ((cs = compute_duration_for_parking_ticket(&cfg, start, cost, end, permitType))) {      // return value
 | 
					                    if ((cs = compute_duration_for_parking_ticket(&cfg, start, cost, end, permitType))) {      // return value
 | 
				
			||||||
@@ -710,33 +819,14 @@ int main() {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
#else
 | 
					#else
 | 
				
			||||||
                for (int i = 700; i <= 1400; i += 700) {
 | 
					                qCritical() << "";
 | 
				
			||||||
                //for (int i = 2100; i <= 2100; i += 10) {
 | 
					                qCritical() << "compute_price_for_parking_ticket";
 | 
				
			||||||
                    cost = i;
 | 
					                qCritical() << "================================";
 | 
				
			||||||
 | 
					 | 
				
			||||||
                    if ((cs = compute_duration_for_parking_ticket(&cfg, start, cost, end, PermitType(PERMIT_TYPE::SHORT_TERM_PARKING_PKW)))) {      // return value
 | 
					 | 
				
			||||||
                    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                    if (!cs) {
 | 
					 | 
				
			||||||
                        qCritical() << "ERROR CalcState" << cs.toString() << endl;
 | 
					 | 
				
			||||||
                    } else {
 | 
					 | 
				
			||||||
//                        qCritical() << cs.toString();
 | 
					 | 
				
			||||||
                    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                    qCritical() << "start" << start.toString(Qt::ISODate) << "< cost" << cost
 | 
					 | 
				
			||||||
                                << "> end" << end.toString(Qt::ISODate);
 | 
					 | 
				
			||||||
                }
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#if 0
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                start = QDateTime::currentDateTime();
 | 
					 | 
				
			||||||
                start.setTime(QTime(9, 57, 0));
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                for (int i = 66; i <= 66; i += 6) {
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                for (int netto_parking_time = 180; netto_parking_time <= (180 + 720*3); netto_parking_time += 720) {
 | 
				
			||||||
                    QDateTime end;
 | 
					                    QDateTime end;
 | 
				
			||||||
                    struct price_t price;
 | 
					                    struct price_t price;
 | 
				
			||||||
                    cs = compute_price_for_parking_ticket(&cfg, start, i, end, &price);
 | 
					                    cs = compute_price_for_parking_ticket(&cfg, start, netto_parking_time, end, &price, permitType, true);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                    qCritical() << "start" << start.toString(Qt::ISODate) << "end" << end.toString(Qt::ISODate)
 | 
					                    qCritical() << "start" << start.toString(Qt::ISODate) << "end" << end.toString(Qt::ISODate)
 | 
				
			||||||
                                << "price" << price.netto;
 | 
					                                << "price" << price.netto;
 | 
				
			||||||
@@ -755,7 +845,7 @@ int main() {
 | 
				
			|||||||
    int pop_max_price;
 | 
					    int pop_max_price;
 | 
				
			||||||
    int pop_daily_card_price;
 | 
					    int pop_daily_card_price;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    int zone = 1;
 | 
					    int zone = 3;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (zone == 1) {
 | 
					    if (zone == 1) {
 | 
				
			||||||
        input.open("/opt/ptu5/opt/customer_502/etc/psa_tariff/tariff01.json");
 | 
					        input.open("/opt/ptu5/opt/customer_502/etc/psa_tariff/tariff01.json");
 | 
				
			||||||
@@ -844,7 +934,7 @@ int main() {
 | 
				
			|||||||
            CalcState calcState;
 | 
					            CalcState calcState;
 | 
				
			||||||
            QDateTime s(QDateTime::currentDateTime());
 | 
					            QDateTime s(QDateTime::currentDateTime());
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            // s.setTime(QTime(12, 0, 0));
 | 
					            s.setTime(QTime(12, 0, 0));
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            //calcState = compute_duration_for_parking_ticket(&cfg, s,
 | 
					            //calcState = compute_duration_for_parking_ticket(&cfg, s,
 | 
				
			||||||
            //                                    (double)1200, end, PermitType(PERMIT_TYPE::SHORT_TERM_PARKING_PKW));
 | 
					            //                                    (double)1200, end, PermitType(PERMIT_TYPE::SHORT_TERM_PARKING_PKW));
 | 
				
			||||||
@@ -852,26 +942,9 @@ int main() {
 | 
				
			|||||||
            //qCritical() << calcState.toString();
 | 
					            //qCritical() << calcState.toString();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            calcState = compute_duration_for_parking_ticket(&cfg, s,
 | 
					            calcState = compute_duration_for_parking_ticket(&cfg, s,
 | 
				
			||||||
                                                (double)9000, end, PermitType(PERMIT_TYPE::SHORT_TERM_PARKING_BUS));
 | 
					                                                (double)50, end, PermitType(PERMIT_TYPE::SHORT_TERM_PARKING_BUS));
 | 
				
			||||||
            qCritical() << end.toString(Qt::ISODate);
 | 
					            qCritical() << end.toString(Qt::ISODate);
 | 
				
			||||||
            qCritical() << calcState.toString();
 | 
					            qCritical() << calcState.toString();
 | 
				
			||||||
 | 
					 | 
				
			||||||
            struct price_t costs;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
            CalcState cs;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
            for (int i = 0, j=timeSteps.size() ; i < timeSteps.size(); --j, ++i) {
 | 
					 | 
				
			||||||
                QDateTime end = start.addSecs(timeSteps.at(i)*60);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                qCritical() << "XXXXX end" << end.toString(Qt::ISODate);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                cs = compute_price_for_parking_ticket(&cfg, s, timeSteps.at(i), end, &costs,
 | 
					 | 
				
			||||||
                                                      PermitType(PERMIT_TYPE::SHORT_TERM_PARKING));
 | 
					 | 
				
			||||||
                if (cs.getStatus() != CalcState::State::SUCCESS) {
 | 
					 | 
				
			||||||
                    qCritical() << "ERROR STATUS" << costs.netto;
 | 
					 | 
				
			||||||
                    exit(-1);
 | 
					 | 
				
			||||||
                }
 | 
					 | 
				
			||||||
            }
 | 
					 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        if (zone == 2) {
 | 
					        if (zone == 2) {
 | 
				
			||||||
@@ -1397,7 +1470,7 @@ int main() {
 | 
				
			|||||||
    int pop_carry_over;
 | 
					    int pop_carry_over;
 | 
				
			||||||
    int pop_carry_over_time_range_id;
 | 
					    int pop_carry_over_time_range_id;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    for (int zone=2; zone < 3; ++zone) {
 | 
					    for (int zone=1; zone < 2; ++zone) {
 | 
				
			||||||
    //for (int t=6; t < 7; t+=20) {
 | 
					    //for (int t=6; t < 7; t+=20) {
 | 
				
			||||||
        switch (zone) {
 | 
					        switch (zone) {
 | 
				
			||||||
        case 1: {
 | 
					        case 1: {
 | 
				
			||||||
@@ -1406,10 +1479,8 @@ int main() {
 | 
				
			|||||||
            //pop_max_time = 6*60;
 | 
					            //pop_max_time = 6*60;
 | 
				
			||||||
        } break;
 | 
					        } break;
 | 
				
			||||||
        case 2: {
 | 
					        case 2: {
 | 
				
			||||||
            qCritical() << "        ZONE 2: KURZZEIT 1";
 | 
					 | 
				
			||||||
            // kuzzeit-1-tarif
 | 
					            // kuzzeit-1-tarif
 | 
				
			||||||
            //input.open("/opt/ptu5/opt/customer_249/etc/psa_tariff/tariff02.json");
 | 
					            input.open("/opt/ptu5/opt/customer_249/etc/psa_tariff/tariff02.json");
 | 
				
			||||||
            input.open("/opt/ptu5/opt/customer_249/etc/psa_tariff/tariff05.json");
 | 
					 | 
				
			||||||
            //pop_max_time = 5*60;
 | 
					            //pop_max_time = 5*60;
 | 
				
			||||||
        } break;
 | 
					        } break;
 | 
				
			||||||
        case 3: {
 | 
					        case 3: {
 | 
				
			||||||
@@ -1450,7 +1521,6 @@ int main() {
 | 
				
			|||||||
        cout << endl;
 | 
					        cout << endl;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        if (isParsed) {
 | 
					        if (isParsed) {
 | 
				
			||||||
 | 
					 | 
				
			||||||
            // test library functions
 | 
					            // test library functions
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            if (zone == 1) {
 | 
					            if (zone == 1) {
 | 
				
			||||||
@@ -1477,10 +1547,10 @@ int main() {
 | 
				
			|||||||
                static QList<int> const timeSteps = Calculator::GetInstance().GetTimeSteps(&cfg);
 | 
					                static QList<int> const timeSteps = Calculator::GetInstance().GetTimeSteps(&cfg);
 | 
				
			||||||
                qCritical() << "TimeSteps" << timeSteps;
 | 
					                qCritical() << "TimeSteps" << timeSteps;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                //if (stepsConfigured != timeSteps) {
 | 
					                if (stepsConfigured != timeSteps) {
 | 
				
			||||||
                //    qCritical() << "TIME-STEPS SHOULD BE" << stepsConfigured;
 | 
					                    qCritical() << "TIME-STEPS SHOULD BE" << stepsConfigured;
 | 
				
			||||||
                //    return -1;
 | 
					                    return -1;
 | 
				
			||||||
                //}
 | 
					                }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                QDateTime start = QDateTime::currentDateTime();
 | 
					                QDateTime start = QDateTime::currentDateTime();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -1488,8 +1558,7 @@ int main() {
 | 
				
			|||||||
                double price1 = 0;
 | 
					                double price1 = 0;
 | 
				
			||||||
                double price2 = 0;
 | 
					                double price2 = 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                //for (int m=0; m < 1440; ++m) {
 | 
					                for (int m=0; m < 1440; ++m) {
 | 
				
			||||||
                for (int m=480; m < 481; ++m) {
 | 
					 | 
				
			||||||
                    start.setTime(QTime(0, 0, 0));
 | 
					                    start.setTime(QTime(0, 0, 0));
 | 
				
			||||||
                    start = start.addSecs(m*60);
 | 
					                    start = start.addSecs(m*60);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -1506,7 +1575,7 @@ int main() {
 | 
				
			|||||||
                    //}
 | 
					                    //}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                    CalcState cs;
 | 
					                    CalcState cs;
 | 
				
			||||||
#if 1
 | 
					
 | 
				
			||||||
                    for (int i = 0, j=timeSteps.size() ; i < timeSteps.size(); --j, ++i) {
 | 
					                    for (int i = 0, j=timeSteps.size() ; i < timeSteps.size(); --j, ++i) {
 | 
				
			||||||
                        QDateTime end = start.addSecs(timeSteps.at(i)*60);
 | 
					                        QDateTime end = start.addSecs(timeSteps.at(i)*60);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -1541,21 +1610,6 @@ int main() {
 | 
				
			|||||||
                        //                                                                     cost[i], false, true);
 | 
					                        //                                                                     cost[i], false, true);
 | 
				
			||||||
                        //qCritical() << "duration" << duration.c_str();
 | 
					                        //qCritical() << "duration" << duration.c_str();
 | 
				
			||||||
                    }
 | 
					                    }
 | 
				
			||||||
#else
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                    double cost = 80;
 | 
					 | 
				
			||||||
                    qCritical() << "START" << start.toString(Qt::ISODate) << "cost" << cost;
 | 
					 | 
				
			||||||
                    QDateTime end;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                    cs = compute_duration_for_parking_ticket(&cfg, start, cost, end,
 | 
					 | 
				
			||||||
                                                             PermitType(PERMIT_TYPE::SHORT_TERM_PARKING));
 | 
					 | 
				
			||||||
                        qCritical() << __LINE__ << cs.toString()
 | 
					 | 
				
			||||||
                                    << "START" << start.toString(Qt::ISODate)
 | 
					 | 
				
			||||||
                                    << "<duration" << start.secsTo(end) / 60
 | 
					 | 
				
			||||||
                                    << "cost" << cost
 | 
					 | 
				
			||||||
                                    << "> end" << end.toString(Qt::ISODate);
 | 
					 | 
				
			||||||
                    //}
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
            } // zone == 1
 | 
					            } // zone == 1
 | 
				
			||||||
            if (zone == 2) {
 | 
					            if (zone == 2) {
 | 
				
			||||||
@@ -1593,20 +1647,18 @@ int main() {
 | 
				
			|||||||
                bool fail;
 | 
					                bool fail;
 | 
				
			||||||
                QDateTime start;
 | 
					                QDateTime start;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                for (int i=1; i < 2; ++i) {
 | 
					                for (int i=0; i < 4; ++i) {
 | 
				
			||||||
                    switch (i) {
 | 
					                    switch (i) {
 | 
				
			||||||
                    case 0:
 | 
					                    case 0:
 | 
				
			||||||
                        start = QDateTime(QDate(2024, 5, 1), QTime(16, 0, 0)); // holiday
 | 
					                        start = QDateTime(QDate(2024, 5, 1), QTime(16, 0, 0)); // holiday
 | 
				
			||||||
                        fail = false;
 | 
					                        fail = false;
 | 
				
			||||||
                    break;
 | 
					                    break;
 | 
				
			||||||
                    case 1:
 | 
					                    case 1:
 | 
				
			||||||
                        //start = QDateTime(QDate(2024, 10, 3), QTime(17, 0, 0)); // sunday
 | 
					                        start = QDateTime(QDate(2024, 4, 21), QTime(16, 0, 0)); // sunday
 | 
				
			||||||
                        //start = QDateTime(QDate(2025, 4, 20), QTime(18, 0, 0)); // sunday
 | 
					 | 
				
			||||||
                        start = QDateTime(QDate(2024, 9, 27), QTime(17, 0, 0)); // friday
 | 
					 | 
				
			||||||
                        fail = false;
 | 
					                        fail = false;
 | 
				
			||||||
                    break;
 | 
					                    break;
 | 
				
			||||||
                    case 2:
 | 
					                    case 2:
 | 
				
			||||||
                        start = QDateTime(QDate(2024, 4, 22), QTime(17, 30, 0)); // monday
 | 
					                        start = QDateTime(QDate(2024, 4, 22), QTime(8, 0, 0)); // monday
 | 
				
			||||||
                        fail = false;
 | 
					                        fail = false;
 | 
				
			||||||
                    break;
 | 
					                    break;
 | 
				
			||||||
                    case 3:
 | 
					                    case 3:
 | 
				
			||||||
@@ -1630,52 +1682,18 @@ int main() {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
                        QList<int>::const_iterator step;
 | 
					                        QList<int>::const_iterator step;
 | 
				
			||||||
                        for (step = timeSteps.cbegin(); step != timeSteps.cend(); ++step) {
 | 
					                        for (step = timeSteps.cbegin(); step != timeSteps.cend(); ++step) {
 | 
				
			||||||
                            //qCritical() << __LINE__
 | 
					 | 
				
			||||||
                            //            << "START" << start.toString(Qt::ISODate)
 | 
					 | 
				
			||||||
                            //            << "<duration" << *step;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                            if (*step != 180)
 | 
					 | 
				
			||||||
                                continue;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
                            double cost = 0;
 | 
					                            double cost = 0;
 | 
				
			||||||
                            CalcState cs;
 | 
					                            CalcState cs;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                            QDateTime s(start);
 | 
					                            if ((cs = compute_price_for_parking_ticket(&cfg, start, *step, end, &price, PermitType(PERMIT_TYPE::SHORT_TERM_PARKING)))) {
 | 
				
			||||||
 | 
					 | 
				
			||||||
                            qCritical() << __LINE__
 | 
					 | 
				
			||||||
                                        << "START" << start.toString(Qt::ISODate)
 | 
					 | 
				
			||||||
                                        << "<duration" << *step;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#if 1
 | 
					 | 
				
			||||||
                            if ((cs = compute_price_for_parking_ticket(&cfg, s, *step, end, &price,
 | 
					 | 
				
			||||||
                                                                       PermitType(PERMIT_TYPE::SHORT_TERM_PARKING)))) {
 | 
					 | 
				
			||||||
                                cost = price.netto;
 | 
					                                cost = price.netto;
 | 
				
			||||||
                                qCritical() << __LINE__
 | 
					                                qCritical() << "step" << *step << ": cost" << cost;
 | 
				
			||||||
                                            << "START" << start.toString(Qt::ISODate)
 | 
					 | 
				
			||||||
                                            << "<duration" << *step
 | 
					 | 
				
			||||||
                                            << "cost" << cost
 | 
					 | 
				
			||||||
                                            << "> end" << end.toString(Qt::ISODate);
 | 
					 | 
				
			||||||
                            } else {
 | 
					                            } else {
 | 
				
			||||||
                                if (fail == false) {
 | 
					                                if (fail == false) {
 | 
				
			||||||
                                    qCritical() << "<<<ERROR>>> cs =" << QString(cs);
 | 
					                                    qCritical() << "<<<ERROR>>> cs =" << QString(cs);
 | 
				
			||||||
                                }
 | 
					                                }
 | 
				
			||||||
                            }
 | 
					                            }
 | 
				
			||||||
#else
 | 
					 | 
				
			||||||
                            cost = 200;
 | 
					 | 
				
			||||||
                            qCritical() << "START" << start.toString(Qt::ISODate) << "cost" << cost;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                            cs = compute_duration_for_parking_ticket(&cfg, start, cost, end,
 | 
					 | 
				
			||||||
                                                                         PermitType(PERMIT_TYPE::SHORT_TERM_PARKING));
 | 
					 | 
				
			||||||
                                qCritical() << __LINE__ << cs.toString()
 | 
					 | 
				
			||||||
                                            << "START" << start.toString(Qt::ISODate)
 | 
					 | 
				
			||||||
                                            << "<duration" << start.secsTo(end) / 60
 | 
					 | 
				
			||||||
                                            << "cost" << cost
 | 
					 | 
				
			||||||
                                            << "> end" << end.toString(Qt::ISODate);
 | 
					 | 
				
			||||||
                            break;
 | 
					 | 
				
			||||||
                            //}
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                        }
 | 
					                        }
 | 
				
			||||||
                    } else {
 | 
					                    } else {
 | 
				
			||||||
                        qCritical() << "ERROR paymentOptionIndex =" << paymentOptionIndex;
 | 
					                        qCritical() << "ERROR paymentOptionIndex =" << paymentOptionIndex;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -30,16 +30,9 @@ SOURCES += main.cpp
 | 
				
			|||||||
# HEADERS +=
 | 
					# HEADERS +=
 | 
				
			||||||
 | 
					
 | 
				
			||||||
OTHER_FILES += \
 | 
					OTHER_FILES += \
 | 
				
			||||||
    /opt/ptu5/opt/customer_335/etc/psa_tariff/tariff01.json \
 | 
					    /opt/ptu5/opt/customer_502/etc/psa_tariff/tariff01.json \
 | 
				
			||||||
    /opt/ptu5/opt/customer_335/etc/psa_tariff/tariff02.json \
 | 
					    /opt/ptu5/opt/customer_502/etc/psa_tariff/tariff02.json \
 | 
				
			||||||
    /opt/ptu5/opt/customer_249/etc/psa_tariff/tariff01.json \
 | 
					    /opt/ptu5/opt/customer_502/etc/psa_tariff/tariff03.json
 | 
				
			||||||
    /opt/ptu5/opt/customer_249/etc/psa_tariff/tariff02.json \
 | 
					 | 
				
			||||||
    /opt/ptu5/opt/customer_249/etc/psa_tariff/tariff03.json \
 | 
					 | 
				
			||||||
    /opt/ptu5/opt/customer_249/etc/psa_tariff/tariff04.json \
 | 
					 | 
				
			||||||
    /opt/ptu5/opt/customer_249/etc/psa_tariff/tariff05.json \
 | 
					 | 
				
			||||||
    /opt/ptu5/opt/customer_249/etc/psa_tariff/tariff06.json \
 | 
					 | 
				
			||||||
    /opt/ptu5/opt/customer_249/etc/psa_tariff/tariff07.json \
 | 
					 | 
				
			||||||
    /opt/ptu5/opt/customer_249/etc/psa_tariff/tariff08.json
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user