Compare commits
	
		
			50 Commits
		
	
	
		
			kleipeda-e
			...
			kleipeda-e
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 3109e82ef8 | |||
| 03dd6c44da | |||
| 212c792b77 | |||
| ab3cdb32ae | |||
| 4f23ab3d68 | |||
| acbc27cfb2 | |||
| bcbe95d483 | |||
| e3bbca86d5 | |||
| 5868d3b510 | |||
| d4363e71cd | |||
| fd99c20bd9 | |||
| dbccdba9fe | |||
| b035f4f887 | |||
| 18f09fccb9 | |||
| 1086e360e5 | |||
| ada7bebd90 | |||
| 2b9ea67ef5 | |||
| d117328bed | |||
| fd04531474 | |||
| 5749fa422e | |||
| 1347f1f208 | |||
| 576c3fefdd | |||
| 9ca7018fc1 | |||
| 515dfaf35c | |||
| 0ab833709c | |||
| 8e4f47c7b6 | |||
| bc9645f1fa | |||
| 713b483918 | |||
| 3c7af1cb32 | |||
| 356e451839 | |||
| c4e1d412a5 | |||
| 
						
						
							
						
						1b716c48d2
	
				 | 
					
					
						|||
| 77e1414c13 | |||
| d95275a72d | |||
| 577a17dc6a | |||
| d8d32820a3 | |||
| 2ce0aeef1d | |||
| 0cba85eafb | |||
| 4030a4b165 | |||
| 8c7afdfcb1 | |||
| 932d4e8cb9 | |||
| 38abc65425 | |||
| 205896903b | |||
| dbedfd094f | |||
| 57b9d16abc | |||
| 48afbc071c | |||
| 7a7b10260a | |||
| 1874b08210 | |||
| 88a0ebb688 | |||
| a8ae9fc602 | 
							
								
								
									
										83
									
								
								library/include/mobilisis/atb_time.h
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										83
									
								
								library/include/mobilisis/atb_time.h
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,83 @@
 | 
				
			|||||||
 | 
					#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,6 +56,7 @@ 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,
 | 
				
			||||||
@@ -71,7 +72,8 @@ 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;
 | 
				
			||||||
@@ -88,9 +90,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(),
 | 
					                       QTime const &from,
 | 
				
			||||||
                       QTime const &until = QTime())
 | 
					                       QTime const &until)
 | 
				
			||||||
        : m_status(state)
 | 
					        : m_status(state)
 | 
				
			||||||
        , m_desc(desc)
 | 
					        , m_desc(desc)
 | 
				
			||||||
        , m_allowedTimeRange(from, until) {
 | 
					        , m_allowedTimeRange(from, until) {
 | 
				
			||||||
@@ -106,6 +108,9 @@ 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;
 | 
				
			||||||
@@ -158,6 +163,9 @@ 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;
 | 
				
			||||||
@@ -207,6 +215,9 @@ 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
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -27,9 +27,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;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
protected:
 | 
					protected:
 | 
				
			||||||
    explicit Calculator() = default;
 | 
					    explicit Calculator() {
 | 
				
			||||||
 | 
					        m_state.m_timeLimitReached = false;
 | 
				
			||||||
 | 
					        m_state.m_costAtTimeLimit = ~0;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
public:
 | 
					public:
 | 
				
			||||||
    Calculator(Calculator const &other) = delete;
 | 
					    Calculator(Calculator const &other) = delete;
 | 
				
			||||||
@@ -40,6 +47,12 @@ 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();
 | 
				
			||||||
@@ -73,7 +86,7 @@ public:
 | 
				
			|||||||
	/// <returns>Returns duration in seconds (data type: double)</returns>
 | 
						/// <returns>Returns duration in seconds (data type: double)</returns>
 | 
				
			||||||
    std::pair<std::string, QDateTime>
 | 
					    std::pair<std::string, QDateTime>
 | 
				
			||||||
        GetDurationFromCost(Configuration* cfg, uint8_t vehicle_type, char const* start_datetime, double price,
 | 
					        GetDurationFromCost(Configuration* cfg, uint8_t vehicle_type, char const* start_datetime, double price,
 | 
				
			||||||
                                    PermitType permitType, bool nextDay = false, bool prepaid = false);
 | 
					                            PermitType permitType, bool nextDay = false, bool prepaid = false);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/// <summary>
 | 
						/// <summary>
 | 
				
			||||||
	///  Gets cost from duration in seconds
 | 
						///  Gets cost from duration in seconds
 | 
				
			||||||
@@ -87,6 +100,9 @@ public:
 | 
				
			|||||||
    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);
 | 
				
			||||||
    std::optional<struct price_t> GetDailyTicketPrice(Configuration* cfg, QDateTime const &startDatetime, QDateTime &endTime, PERMIT_TYPE permitType);
 | 
					    std::optional<struct price_t> GetDailyTicketPrice(Configuration* cfg, QDateTime const &startDatetime, QDateTime &endTime, PERMIT_TYPE permitType);
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -29,6 +29,8 @@
 | 
				
			|||||||
#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>
 | 
				
			||||||
@@ -50,6 +52,10 @@ 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;
 | 
				
			||||||
@@ -73,6 +79,10 @@ 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
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -6,7 +6,8 @@ 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,6 +25,7 @@ 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;
 | 
				
			||||||
@@ -61,6 +62,7 @@ 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;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -3,6 +3,80 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#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;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,4 +1,3 @@
 | 
				
			|||||||
#pragma once
 | 
					 | 
				
			||||||
#include <variant>
 | 
					#include <variant>
 | 
				
			||||||
#include <cstddef>
 | 
					#include <cstddef>
 | 
				
			||||||
#include <stdio.h>
 | 
					#include <stdio.h>
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										79
									
								
								library/include/mobilisis/tariff_out_of_service.h
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										79
									
								
								library/include/mobilisis/tariff_out_of_service.h
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,79 @@
 | 
				
			|||||||
 | 
					#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,9 +1,85 @@
 | 
				
			|||||||
#ifndef TARIFF_PREPAID_H_INCLUDED
 | 
					#ifndef TARIFF_PREPAID_H_INCLUDED
 | 
				
			||||||
#define TARIFF_PREPAID_H_INCLUDED
 | 
					#define TARIFF_PREPAID_H_INCLUDED
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include <QTime>
 | 
					#include <QDateTime>
 | 
				
			||||||
#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 {
 | 
				
			||||||
    int id;
 | 
					    int id;
 | 
				
			||||||
    bool anytime;
 | 
					    bool anytime;
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										81
									
								
								library/include/mobilisis/tariff_service.h
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										81
									
								
								library/include/mobilisis/tariff_service.h
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,81 @@
 | 
				
			|||||||
 | 
					#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,12 +1,39 @@
 | 
				
			|||||||
#ifndef TIME_RANGE_H_INCLUDED
 | 
					#ifndef TIME_RANGE_H_INCLUDED
 | 
				
			||||||
#define TIME_RANGE_H_INCLUDED
 | 
					#define TIME_RANGE_H_INCLUDED
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "time_range_header.h"
 | 
					#include "atb_time.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#include <QString>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
struct TimeRange {
 | 
					struct TimeRange {
 | 
				
			||||||
public:
 | 
					    ATBTime m_start;
 | 
				
			||||||
	bool IsActive;
 | 
					    ATBTime m_end;
 | 
				
			||||||
	ATBTimeRange TimeRangeStructure;
 | 
					    int m_duration;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    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
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -35,7 +35,8 @@ 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 \
 | 
				
			||||||
@@ -89,7 +90,10 @@ 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 \
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										151
									
								
								library/src/atb_time.cpp
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										151
									
								
								library/src/atb_time.cpp
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,151 @@
 | 
				
			|||||||
 | 
					#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,6 +26,7 @@ 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);
 | 
				
			||||||
@@ -76,6 +77,7 @@ int CALCULATE_LIBRARY_API get_maximal_parkingtime(Configuration const *cfg,
 | 
				
			|||||||
    if (paymentOptionIndex == -1) {
 | 
					    if (paymentOptionIndex == -1) {
 | 
				
			||||||
        paymentOptionIndex = cfg->getPaymentOptionIndex(permitType);
 | 
					        paymentOptionIndex = cfg->getPaymentOptionIndex(permitType);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    int maxTime = 0;
 | 
					    int maxTime = 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    switch(permitType) {
 | 
					    switch(permitType) {
 | 
				
			||||||
@@ -336,7 +338,9 @@ int CALCULATE_LIBRARY_API get_maximal_parkingprice(Configuration *cfg,
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    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 || paymentMethodId == PaymentMethod::Steps) {
 | 
					        if (paymentMethodId == PaymentMethod::Progressive
 | 
				
			||||||
 | 
					         || paymentMethodId == PaymentMethod::Steps
 | 
				
			||||||
 | 
					         || paymentMethodId == PaymentMethod::Unified) {
 | 
				
			||||||
            //maxPrice = Utilities::getMaximalParkingPrice(cfg, paymentMethodId);
 | 
					            //maxPrice = Utilities::getMaximalParkingPrice(cfg, paymentMethodId);
 | 
				
			||||||
            ATBPaymentOption const &po = cfg->getPaymentOptions(paymentOptionIndex);
 | 
					            ATBPaymentOption const &po = cfg->getPaymentOptions(paymentOptionIndex);
 | 
				
			||||||
            maxPrice = po.pop_max_price; // maxTime is given in minutes
 | 
					            maxPrice = po.pop_max_price; // maxTime is given in minutes
 | 
				
			||||||
@@ -480,6 +484,15 @@ 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()) {
 | 
				
			||||||
@@ -516,6 +529,9 @@ 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;
 | 
				
			||||||
@@ -526,6 +542,8 @@ 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))
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
@@ -682,6 +700,11 @@ CalcState CALCULATE_LIBRARY_API compute_price_for_parking_ticket(
 | 
				
			|||||||
        paymentOptionIndex = tariff->getPaymentOptionIndex(permitType.get());
 | 
					        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;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -752,6 +775,9 @@ CalcState CALCULATE_LIBRARY_API compute_price_for_parking_ticket(
 | 
				
			|||||||
        paymentOptionIndex = tariff->getPaymentOptionIndex(permitType);
 | 
					        paymentOptionIndex = tariff->getPaymentOptionIndex(permitType);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    tariff->getPaymentOptions(paymentOptionIndex).pop_max_price
 | 
				
			||||||
 | 
					        = tariff->getPaymentOptions(paymentOptionIndex).pop_max_price_save;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    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;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -818,6 +844,13 @@ CalcState CALCULATE_LIBRARY_API compute_price_for_parking_ticket(
 | 
				
			|||||||
                qCritical() << __func__ << ":" << __LINE__ << "   re-computed prepaid-id" << pop_prepaid_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;
 | 
				
			||||||
 | 
					            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;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            QDateTime effectiveStartTime(start_parking_time);
 | 
					            QDateTime effectiveStartTime(start_parking_time);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            // handle special days
 | 
					            // handle special days
 | 
				
			||||||
@@ -870,6 +903,9 @@ CalcState CALCULATE_LIBRARY_API compute_price_for_parking_ticket(
 | 
				
			|||||||
                }
 | 
					                }
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            effectiveStartTime.setTime(QTime(effectiveStartTime.time().hour(),
 | 
				
			||||||
 | 
					                                             effectiveStartTime.time().minute(), 0));
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            qCritical() << __func__ << ":" << __LINE__ << "effectiveStartTime:" << effectiveStartTime.toString(Qt::ISODate);
 | 
					            qCritical() << __func__ << ":" << __LINE__ << "effectiveStartTime:" << effectiveStartTime.toString(Qt::ISODate);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            int const carryOver = tariff->getPaymentOptions(paymentOptionIndex).pop_carry_over;
 | 
					            int const carryOver = tariff->getPaymentOptions(paymentOptionIndex).pop_carry_over;
 | 
				
			||||||
@@ -885,7 +921,7 @@ CalcState CALCULATE_LIBRARY_API compute_price_for_parking_ticket(
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
                // handle carry over
 | 
					                // handle carry over
 | 
				
			||||||
                int minutesUntilCarryOver = effectiveStartTime.time().secsTo(carryOverStart) / 60;
 | 
					                int minutesUntilCarryOver = effectiveStartTime.time().secsTo(carryOverStart) / 60;
 | 
				
			||||||
                if (netto_parking_time > minutesUntilCarryOver) {
 | 
					                if ((minutesUntilCarryOver > 0) && (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);
 | 
				
			||||||
@@ -935,11 +971,28 @@ CalcState CALCULATE_LIBRARY_API compute_price_for_parking_ticket(
 | 
				
			|||||||
                    //QTime const &tlimit = wd.getTariffCarryOverSettings().parkingTimeLimit();
 | 
					                    //QTime const &tlimit = wd.getTariffCarryOverSettings().parkingTimeLimit();
 | 
				
			||||||
                    //end_parking_time.setTime(tlimit);
 | 
					                    //end_parking_time.setTime(tlimit);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                    // max_price neu berechnen
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                    calcState.setDesc(QString("line=%1 endTime=%2: park-time-limit violated").arg(__LINE__)
 | 
					                    calcState.setDesc(QString("line=%1 endTime=%2: park-time-limit violated").arg(__LINE__)
 | 
				
			||||||
                                        .arg(end_parking_time.time().toString(Qt::ISODate)));
 | 
					                                        .arg(end_parking_time.time().toString(Qt::ISODate)));
 | 
				
			||||||
                    return calcState.set(CalcState::State::ABOVE_MAX_PARKING_TIME);
 | 
					                    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,
 | 
				
			||||||
@@ -949,7 +1002,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));
 | 
				
			||||||
@@ -983,6 +1036,10 @@ 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);
 | 
				
			||||||
@@ -1038,6 +1095,9 @@ 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;
 | 
				
			||||||
@@ -1071,6 +1131,10 @@ CalcState CALCULATE_LIBRARY_API compute_duration_for_parking_ticket(
 | 
				
			|||||||
        if (pop_time_step_config == (int)ATBTimeStepConfig::TimeStepConfig::STATIC) {
 | 
					        if (pop_time_step_config == (int)ATBTimeStepConfig::TimeStepConfig::STATIC) {
 | 
				
			||||||
            // handle prepaid option
 | 
					            // handle prepaid option
 | 
				
			||||||
            QDateTime effectiveStartTime(start_parking_time);
 | 
					            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;
 | 
					            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()) {
 | 
				
			||||||
@@ -1087,8 +1151,9 @@ CalcState CALCULATE_LIBRARY_API compute_duration_for_parking_ticket(
 | 
				
			|||||||
                }
 | 
					                }
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					        QDateTime start(start_parking_time);
 | 
				
			||||||
        QString cs = start_parking_time.toString(Qt::ISODate);
 | 
					        start.setTime(QTime(start.time().hour(), start.time().minute(), 0));
 | 
				
			||||||
 | 
					        QString cs = start.toString(Qt::ISODate);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        std::pair<std::string, QDateTime> p_endTime
 | 
					        std::pair<std::string, QDateTime> p_endTime
 | 
				
			||||||
                = Calculator::GetInstance().GetDurationFromCost(
 | 
					                = Calculator::GetInstance().GetDurationFromCost(
 | 
				
			||||||
@@ -1100,9 +1165,18 @@ CalcState CALCULATE_LIBRARY_API compute_duration_for_parking_ticket(
 | 
				
			|||||||
        QString endTime = p_endTime.first.c_str();
 | 
					        QString endTime = p_endTime.first.c_str();
 | 
				
			||||||
        ticketEndTime = p_endTime.second;
 | 
					        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);
 | 
				
			||||||
@@ -1160,85 +1234,171 @@ 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__ << "ticketEndTime:" << ticketEndTime.toString(Qt::ISODate);
 | 
				
			||||||
            qCritical() << __func__ << ":" << __LINE__ << "step-config:" << pop_time_step_config;
 | 
					            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 (pop_time_step_config == (int)ATBTimeStepConfig::TimeStepConfig::STATIC) {
 | 
					            if (tariff->getPaymentOptions().pop_payment_method_id != PaymentMethod::Unified) {
 | 
				
			||||||
                // handle carry over for ticket-end-time
 | 
					 | 
				
			||||||
                qCritical() << __func__ << ":" << __LINE__ << "ticketEndTime:" << ticketEndTime.toString(Qt::ISODate);
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
                int weekDay = start_parking_time.date().dayOfWeek();
 | 
					                if (pop_time_step_config == (int)ATBTimeStepConfig::TimeStepConfig::STATIC) {
 | 
				
			||||||
                int pop_carry_over_option_id = tariff->getPaymentOptions(paymentOptionIndex).pop_carry_over_option_id;
 | 
					                    // handle carry over for ticket-end-time
 | 
				
			||||||
                qCritical() << __func__ << ":" << __LINE__ << "configured carry-over-id" << pop_carry_over_option_id;
 | 
					                    qCritical() << __func__ << ":" << __LINE__ << "ticketEndTime:" << ticketEndTime.toString(Qt::ISODate);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                std::optional<ATBPeriodYear> yperiod = Utilities::GetYearPeriodActive(tariff, start_parking_time);
 | 
					                    int weekDay = start_parking_time.date().dayOfWeek();
 | 
				
			||||||
                if (yperiod.has_value()) {
 | 
					                    int pop_carry_over_option_id = tariff->getPaymentOptions(paymentOptionIndex).pop_carry_over_option_id;
 | 
				
			||||||
                    ATBPeriodYear const &period = yperiod.value();
 | 
					                    qCritical() << __func__ << ":" << __LINE__ << "configured carry-over-id" << pop_carry_over_option_id;
 | 
				
			||||||
                    pop_carry_over_option_id = period.pye_id;
 | 
					 | 
				
			||||||
                    qCritical() << __func__ << ":" << __LINE__ << "re-computed carry-over-id" << pop_carry_over_option_id;
 | 
					 | 
				
			||||||
                }
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
                QTime carryOverStart;
 | 
					                    std::optional<ATBPeriodYear> yperiod = Utilities::GetYearPeriodActive(tariff, start_parking_time);
 | 
				
			||||||
                QTime carryOverEnd;
 | 
					                    if (yperiod.has_value()) {
 | 
				
			||||||
                int carryOverDuration = -1;
 | 
					                        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;
 | 
				
			||||||
 | 
					                    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                // using TariffCarryOverType = std::multimap<int, ATBCarryOver>;
 | 
					                    QTime carryOverStart;
 | 
				
			||||||
                std::multimap<int, ATBCarryOver>::const_iterator it;
 | 
					                    QTime carryOverEnd;
 | 
				
			||||||
                if ((it = tariff->TariffCarryOverOptions.find(pop_carry_over_option_id)) !=
 | 
					                    int carryOverDuration = -1;
 | 
				
			||||||
                    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()) {
 | 
					                    // using TariffCarryOverType = std::multimap<int, ATBCarryOver>;
 | 
				
			||||||
                    qCritical() << __func__ << ":" << __LINE__ << "carryOverStart" << carryOverStart.toString(Qt::ISODate);
 | 
					                    std::multimap<int, ATBCarryOver>::const_iterator it;
 | 
				
			||||||
                    qCritical() << __func__ << ":" << __LINE__ << "carryOverEnd" << carryOverEnd.toString(Qt::ISODate);
 | 
					                    if ((it = tariff->TariffCarryOverOptions.find(pop_carry_over_option_id)) !=
 | 
				
			||||||
                    qCritical() << __func__ << ":" << __LINE__ << "carryOverDuration" << carryOverDuration;
 | 
					                        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;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                if (carryOverStart.isValid() && carryOverEnd.isValid() && carryOverDuration != -1) {
 | 
					 | 
				
			||||||
                    // qCritical() << __func__ << __LINE__ << "ticketEndTime.time():" << ticketEndTime.time().toString(Qt::ISODate);
 | 
					 | 
				
			||||||
                    if (ticketEndTime.time() > carryOverStart) {
 | 
					 | 
				
			||||||
                        // qCritical() << __func__ << __LINE__ << "ticketEndTime.time():" << ticketEndTime.time().toString(Qt::ISODate);
 | 
					                        // qCritical() << __func__ << __LINE__ << "ticketEndTime.time():" << ticketEndTime.time().toString(Qt::ISODate);
 | 
				
			||||||
                        ticketEndTime = ticketEndTime.addSecs(carryOverDuration * 60);
 | 
					                        if (ticketEndTime.time() > carryOverStart) {
 | 
				
			||||||
                    } 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);
 | 
					                            // qCritical() << __func__ << __LINE__ << "ticketEndTime.time():" << ticketEndTime.time().toString(Qt::ISODate);
 | 
				
			||||||
                            ticketEndTime = ticketEndTime.addSecs(carryOverDuration * 60);
 | 
					                            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";
 | 
				
			||||||
                    }
 | 
					                    }
 | 
				
			||||||
                } else {
 | 
					 | 
				
			||||||
                    qCritical() << __func__ << ":" << __LINE__ << "WARNING: wrong carry-over-settings";
 | 
					 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
            }
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                qCritical() << __func__ << ":" << __LINE__ << "ticketEndTime:" << ticketEndTime.toString(Qt::ISODate);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            ticketEndTime.setTime(QTime(ticketEndTime.time().hour(),
 | 
					                for (auto[itr, rangeEnd] = tariff->WeekDays.equal_range((Qt::DayOfWeek)(ticketEndTime.date().dayOfWeek()));
 | 
				
			||||||
                                        ticketEndTime.time().minute(), 0));
 | 
					                     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);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            qCritical() << __func__ << ":" << __LINE__ << "ticketEndTime:" << ticketEndTime.toString(Qt::ISODate);
 | 
					                        QList<int> const &stepList = Calculator::GetInstance().GetTimeSteps(tariff, paymentOptionIndex);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            for (auto[itr, rangeEnd] = tariff->WeekDays.equal_range((Qt::DayOfWeek)(ticketEndTime.date().dayOfWeek()));
 | 
					                        QDateTime newTicketEndTime = ticketEndTime;
 | 
				
			||||||
                 itr != rangeEnd;
 | 
					 | 
				
			||||||
                 ++itr) {
 | 
					 | 
				
			||||||
                ATBWeekDay const &wd = itr->second;
 | 
					 | 
				
			||||||
                bool const parkTimeLimitViolated = wd.getTariffCarryOverSettings().parkingTimeLimitExceeded(start_parking_time,
 | 
					 | 
				
			||||||
                                                                                                            ticketEndTime,
 | 
					 | 
				
			||||||
                                                                                                            paymentOptionIndex);
 | 
					 | 
				
			||||||
                if (parkTimeLimitViolated) {
 | 
					 | 
				
			||||||
                    //QTime const &tlimit = wd.getTariffCarryOverSettings().parkingTimeLimit();
 | 
					 | 
				
			||||||
                    //ticketEndTime.setTime(tlimit);
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
                    calcState.setDesc(QString("line=%1 endTime=%2: park-time-limit violated").arg(__LINE__)
 | 
					                        qCritical() << __func__ << ":" << __LINE__ << "PARK-TIME VIOLATED";
 | 
				
			||||||
                                      .arg(ticketEndTime.time().toString(Qt::ISODate)));
 | 
					
 | 
				
			||||||
                    return calcState.set(CalcState::State::ABOVE_MAX_PARKING_TIME);
 | 
					                        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);
 | 
				
			||||||
 | 
					                    }
 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -1255,7 +1415,9 @@ CalcState CALCULATE_LIBRARY_API compute_duration_for_parking_ticket(
 | 
				
			|||||||
        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,
 | 
				
			||||||
@@ -1263,6 +1425,9 @@ CalcState CALCULATE_LIBRARY_API compute_duration_for_daily_ticket(parking_tariff
 | 
				
			|||||||
                                                                  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()) {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -1294,8 +1459,11 @@ 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
 | 
				
			||||||
    CalcState calcState;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    tariff->getPaymentOptions(0).pop_max_price
 | 
				
			||||||
 | 
					        = tariff->getPaymentOptions(0).pop_max_price_save;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    CalcState calcState;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (startDatetime.isValid()) {
 | 
					    if (startDatetime.isValid()) {
 | 
				
			||||||
        if (std::optional<struct price_t> p =
 | 
					        if (std::optional<struct price_t> p =
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -6,6 +6,8 @@
 | 
				
			|||||||
#include "ticket.h"
 | 
					#include "ticket.h"
 | 
				
			||||||
#include "tariff_global_defines.h"
 | 
					#include "tariff_global_defines.h"
 | 
				
			||||||
#include "tariff_prepaid.h"
 | 
					#include "tariff_prepaid.h"
 | 
				
			||||||
 | 
					#include "tariff_out_of_service.h"
 | 
				
			||||||
 | 
					#include "tariff_service.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include <sstream>
 | 
					#include <sstream>
 | 
				
			||||||
#include <algorithm>
 | 
					#include <algorithm>
 | 
				
			||||||
@@ -117,6 +119,487 @@ QDateTime Calculator::GetDailyTicketDuration(Configuration* cfg, const QDateTime
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    return QDateTime();
 | 
					    return QDateTime();
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					///
 | 
				
			||||||
 | 
					/// \brief getPrepaid
 | 
				
			||||||
 | 
					/// \param cfg
 | 
				
			||||||
 | 
					/// \param dt
 | 
				
			||||||
 | 
					/// \return
 | 
				
			||||||
 | 
					///
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					std::optional<ATBTariffPrepaid> getPrepaid(Configuration const *cfg, QDateTime const &dt) {
 | 
				
			||||||
 | 
					    std::optional<ATBTariffPrepaid> value = std::nullopt;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    int weekDay = dt.date().dayOfWeek();
 | 
				
			||||||
 | 
					    ATBTime inputTime(dt.time());
 | 
				
			||||||
 | 
					    auto const &prepaidRange = cfg->TariffPrepaids.equal_range(weekDay);
 | 
				
			||||||
 | 
					    for (auto i = prepaidRange.first; i != prepaidRange.second; ++i) {
 | 
				
			||||||
 | 
					        ATBTariffPrepaid const &prepaid = i->second;
 | 
				
			||||||
 | 
					        TimeRange const &prepaidTimeRange = prepaid.m_range;
 | 
				
			||||||
 | 
					        if (inputTime >= prepaidTimeRange.m_start && inputTime < prepaidTimeRange.m_end) {
 | 
				
			||||||
 | 
					            value = value.value_or(i->second);
 | 
				
			||||||
 | 
					            break;
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    return value;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					///
 | 
				
			||||||
 | 
					/// \brief getCarryOver
 | 
				
			||||||
 | 
					/// \param cfg
 | 
				
			||||||
 | 
					/// \param dt
 | 
				
			||||||
 | 
					/// \return
 | 
				
			||||||
 | 
					///
 | 
				
			||||||
 | 
					std::optional<ATBTariffCarryOver> getCarryOver(Configuration const *cfg, QDateTime const &dt) {
 | 
				
			||||||
 | 
					    std::optional<ATBTariffCarryOver> value = std::nullopt;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    int weekDay = dt.date().dayOfWeek();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    // qCritical() << __func__ << ":" << __LINE__ << dt.toString(Qt::ISODate) << weekDay;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    ATBTime inputTime(dt.time());
 | 
				
			||||||
 | 
					    auto const &carryOverRange = cfg->TariffCarryOvers.equal_range(weekDay);
 | 
				
			||||||
 | 
					    for (auto i = carryOverRange.first; i != carryOverRange.second; ++i) {
 | 
				
			||||||
 | 
					        ATBTariffCarryOver const &carryOver = i->second;
 | 
				
			||||||
 | 
					        TimeRange const &carryOverTimeRange = carryOver.m_range;
 | 
				
			||||||
 | 
					        if (inputTime >= carryOverTimeRange.m_start && inputTime < carryOverTimeRange.m_end) {
 | 
				
			||||||
 | 
					            // qCritical() << __func__ << ":" << __LINE__ << carryOverTimeRange.m_start.toString(Qt::ISODate);
 | 
				
			||||||
 | 
					            // qCritical() << __func__ << ":" << __LINE__ << carryOverTimeRange.m_end.toString(Qt::ISODate);
 | 
				
			||||||
 | 
					            value = value.value_or(carryOver);
 | 
				
			||||||
 | 
					            break;
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    return value;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					///
 | 
				
			||||||
 | 
					/// \brief getService
 | 
				
			||||||
 | 
					/// \param cfg
 | 
				
			||||||
 | 
					/// \param dt
 | 
				
			||||||
 | 
					/// \return
 | 
				
			||||||
 | 
					///
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					std::optional<ATBTariffService> getService(Configuration const *cfg, QDateTime const &dt) {
 | 
				
			||||||
 | 
					    std::optional<ATBTariffService> value = std::nullopt;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    int weekDay = dt.date().dayOfWeek();
 | 
				
			||||||
 | 
					    ATBTime inputTime(dt.time());
 | 
				
			||||||
 | 
					    auto const &serviceRange = cfg->TariffServices.equal_range(weekDay);
 | 
				
			||||||
 | 
					    for (auto i = serviceRange.first; i != serviceRange.second; ++i) {
 | 
				
			||||||
 | 
					        ATBTariffService const &service = i->second;
 | 
				
			||||||
 | 
					        TimeRange const &serviceTimeRange = service.m_range;
 | 
				
			||||||
 | 
					        if (inputTime >= serviceTimeRange.m_start && inputTime < serviceTimeRange.m_end) {
 | 
				
			||||||
 | 
					            value = value.value_or(i->second);
 | 
				
			||||||
 | 
					            break;
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    return value;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					///
 | 
				
			||||||
 | 
					/// \brief getOutOfService
 | 
				
			||||||
 | 
					/// \param cfg
 | 
				
			||||||
 | 
					/// \param dt
 | 
				
			||||||
 | 
					/// \return
 | 
				
			||||||
 | 
					///
 | 
				
			||||||
 | 
					std::optional<ATBTariffOutOfService> getOutOfService(Configuration const *cfg, QDateTime const &dt) {
 | 
				
			||||||
 | 
					    std::optional<ATBTariffOutOfService> value = std::nullopt;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    int weekDay = dt.date().dayOfWeek();
 | 
				
			||||||
 | 
					    ATBTime inputTime(dt.time());
 | 
				
			||||||
 | 
					    QDate date;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    auto const &outOfServiceRange = cfg->TariffOutOfServices.equal_range(weekDay);
 | 
				
			||||||
 | 
					    for (auto i = outOfServiceRange.first; i != outOfServiceRange.second; ++i) {
 | 
				
			||||||
 | 
					        ATBTariffOutOfService const &outOfService = i->second;
 | 
				
			||||||
 | 
					        TimeRange const &outOfServiceTimeRange = outOfService.m_range;
 | 
				
			||||||
 | 
					        if (outOfService.m_date == dt.date()) {
 | 
				
			||||||
 | 
					            date = dt.date();
 | 
				
			||||||
 | 
					            if (inputTime >= outOfServiceTimeRange.m_start && inputTime < outOfServiceTimeRange.m_end) {
 | 
				
			||||||
 | 
					                value = value.value_or(i->second);
 | 
				
			||||||
 | 
					                return value;
 | 
				
			||||||
 | 
					            }
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    if (date.isNull() || !date.isValid()) {
 | 
				
			||||||
 | 
					        for (auto i = outOfServiceRange.first; i != outOfServiceRange.second; ++i) {
 | 
				
			||||||
 | 
					            ATBTariffOutOfService const &outOfService = i->second;
 | 
				
			||||||
 | 
					            TimeRange const &outOfServiceTimeRange = outOfService.m_range;
 | 
				
			||||||
 | 
					            if (inputTime >= outOfServiceTimeRange.m_start && inputTime < outOfServiceTimeRange.m_end) {
 | 
				
			||||||
 | 
					                value = value.value_or(i->second);
 | 
				
			||||||
 | 
					                return value;
 | 
				
			||||||
 | 
					            }
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    return value;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					std::pair<CalcState, QDateTime>
 | 
				
			||||||
 | 
					Calculator::ComputeDurationFromCost(Configuration *cfg,
 | 
				
			||||||
 | 
					                                    QDateTime const &startDatetimePassed, // given in local time
 | 
				
			||||||
 | 
					                                    int cost) {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    QDateTime inputDate = startDatetimePassed;
 | 
				
			||||||
 | 
					    inputDate.setTime(QTime(inputDate.time().hour(), inputDate.time().minute(), 0));
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    // TODO:
 | 
				
			||||||
 | 
					    int paymentOptionIndex = 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    bool overPaid = false;
 | 
				
			||||||
 | 
					    bool successMaxPrice = false;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    int const pop_id = cfg->getPaymentOptions(paymentOptionIndex).pop_id;
 | 
				
			||||||
 | 
					    int const pop_accumulate_prices = cfg->getPaymentOptions(paymentOptionIndex).pop_accumulate_prices;
 | 
				
			||||||
 | 
					    int const pop_max_price = cfg->getPaymentOptions(paymentOptionIndex).pop_max_price;
 | 
				
			||||||
 | 
					    int const pop_max_time = cfg->getPaymentOptions(paymentOptionIndex).pop_max_time;
 | 
				
			||||||
 | 
					    int const pop_min_price = cfg->getPaymentOptions(paymentOptionIndex).pop_min_price;
 | 
				
			||||||
 | 
					    int const pop_allow_overpay = cfg->getPaymentOptions(paymentOptionIndex).pop_allow_overpay;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    int price = 0;
 | 
				
			||||||
 | 
					    int durationId = 0;
 | 
				
			||||||
 | 
					    int netto_parking_time_in_minutes = 0;
 | 
				
			||||||
 | 
					    int brutto_parking_time_in_minutes = 0;
 | 
				
			||||||
 | 
					    int free_parking_time_in_minutes = 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    QMap<int, int> nettoParktimePrice;
 | 
				
			||||||
 | 
					    QMap<int, int> priceNettoParktime;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    for (auto[itr, rangeEnd] = cfg->PaymentRate.equal_range(pop_id); itr != rangeEnd; ++itr) {
 | 
				
			||||||
 | 
					        durationId = itr->second.pra_payment_unit_id;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        int const pra_price = itr->second.pra_price;
 | 
				
			||||||
 | 
					        if (pop_accumulate_prices) {
 | 
				
			||||||
 | 
					            price += pra_price;
 | 
				
			||||||
 | 
					        } else {
 | 
				
			||||||
 | 
					            price = pra_price;
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        //if ((double)price == cost) {
 | 
				
			||||||
 | 
					            auto search = cfg->Duration.find(durationId);
 | 
				
			||||||
 | 
					            if (search != cfg->Duration.end()) {
 | 
				
			||||||
 | 
					                // found now the duration in minutes
 | 
				
			||||||
 | 
					                // check if we are still inside the working-time-range
 | 
				
			||||||
 | 
					                ATBDuration duration = search->second;
 | 
				
			||||||
 | 
					                nettoParktimePrice.insert(duration.pun_duration, price);
 | 
				
			||||||
 | 
					                priceNettoParktime.insert(price, duration.pun_duration);
 | 
				
			||||||
 | 
					            }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        //}
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    // qCritical() << __func__ << ":" << __LINE__ << nettoParktimePrice;
 | 
				
			||||||
 | 
					    // qCritical() << __func__ << ":" << __LINE__ << priceNettoParktime;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    if (cost == pop_max_price) {
 | 
				
			||||||
 | 
					        qCritical() << DBG_HEADER << "SUCCESS MAX-PARKING-PRICE" << pop_max_price << ", COST" << cost;
 | 
				
			||||||
 | 
					        successMaxPrice = true;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    if (cost > pop_max_price) {
 | 
				
			||||||
 | 
					        qCritical() << DBG_HEADER << "MAX-PARKING-PRICE" << pop_max_price << ", COST" << cost;
 | 
				
			||||||
 | 
					        if (pop_allow_overpay == false) {
 | 
				
			||||||
 | 
					            return std::make_pair(CalcState(CalcState::State::OVERPAID), QDateTime());
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					        cost = pop_max_price;
 | 
				
			||||||
 | 
					        overPaid = true;
 | 
				
			||||||
 | 
					        qCritical() << DBG_HEADER << "OVERPAID, MAX-PARKING-PRICE" << pop_max_price << ", COST" << cost;
 | 
				
			||||||
 | 
					        // return CalcState::OVERPAID.toStdString();
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    if (cost < pop_min_price) {
 | 
				
			||||||
 | 
					        qCritical() << DBG_HEADER << "MIN-PARKING-PRICE" << pop_min_price << ", COST" << cost;
 | 
				
			||||||
 | 
					        return std::make_pair(CalcState(CalcState::State::BELOW_MIN_PARKING_PRICE), QDateTime());
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    int weekDay = inputDate.date().dayOfWeek();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    qCritical() << __func__ << ":" << __LINE__ << "START weekDay" << weekDay << inputDate.toString(Qt::ISODate);
 | 
				
			||||||
 | 
					    qCritical() << __func__ << ":" << __LINE__ << "START cost" << cost;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    QDateTime dt;
 | 
				
			||||||
 | 
					    bool computationStarted = false;
 | 
				
			||||||
 | 
					    price = 0;
 | 
				
			||||||
 | 
					    netto_parking_time_in_minutes = 0;
 | 
				
			||||||
 | 
					    brutto_parking_time_in_minutes = 0;
 | 
				
			||||||
 | 
					    free_parking_time_in_minutes = 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    int const nettoParktimeForCost = priceNettoParktime[int(cost)];
 | 
				
			||||||
 | 
					    qCritical() << __func__ << ":" << __LINE__ << QString("cost=%1 nettoParkTimeForCost=%2").
 | 
				
			||||||
 | 
					                                                        arg(cost).arg(nettoParktimeForCost);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    int cnt = 0;
 | 
				
			||||||
 | 
					    while (++cnt < 1000 && netto_parking_time_in_minutes < nettoParktimeForCost) {
 | 
				
			||||||
 | 
					        // qCritical() << __func__ << ":" << __LINE__ << "cnt [" << cnt;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        brutto_parking_time_in_minutes = free_parking_time_in_minutes + netto_parking_time_in_minutes;
 | 
				
			||||||
 | 
					        dt = inputDate.addSecs(brutto_parking_time_in_minutes * 60);
 | 
				
			||||||
 | 
					        weekDay = dt.date().dayOfWeek();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        qCritical() << __func__ << ":" << __LINE__ << QString("%1 (%2): brutto: %3 = netto: %4 + free: %5")
 | 
				
			||||||
 | 
					                       .arg(dt.toString(Qt::ISODate))
 | 
				
			||||||
 | 
					                       .arg(weekDay)
 | 
				
			||||||
 | 
					                       .arg(brutto_parking_time_in_minutes)
 | 
				
			||||||
 | 
					                       .arg(netto_parking_time_in_minutes)
 | 
				
			||||||
 | 
					                       .arg(free_parking_time_in_minutes);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        if (std::optional<ATBTariffOutOfService> oos = getOutOfService(cfg, dt)) {
 | 
				
			||||||
 | 
					            dt.setTime(QTime(oos.value().m_range.m_start.hour(),
 | 
				
			||||||
 | 
					                             oos.value().m_range.m_start.minute(), 0));
 | 
				
			||||||
 | 
					            if (overPaid) {
 | 
				
			||||||
 | 
					                QList <int> keys = nettoParktimePrice.keys();
 | 
				
			||||||
 | 
					                for (int k = 0; k < keys.size(); ++k) {
 | 
				
			||||||
 | 
					                    if (keys[k] < netto_parking_time_in_minutes) {
 | 
				
			||||||
 | 
					                        continue;
 | 
				
			||||||
 | 
					                    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                    int const maxPriceForTimeLimit = nettoParktimePrice[keys[k]];
 | 
				
			||||||
 | 
					                    if (cost > maxPriceForTimeLimit) {
 | 
				
			||||||
 | 
					                        cfg->getPaymentOptions(paymentOptionIndex).pop_max_price = maxPriceForTimeLimit;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                        CalcState cs(CalcState::State::OVERPAID);
 | 
				
			||||||
 | 
					                        return std::make_pair(cs, dt);
 | 
				
			||||||
 | 
					                    }
 | 
				
			||||||
 | 
					                    if (cost == maxPriceForTimeLimit) {
 | 
				
			||||||
 | 
					                        cfg->getPaymentOptions(paymentOptionIndex).pop_max_price = maxPriceForTimeLimit;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                        CalcState cs(CalcState::State::SUCCESS_MAXPRICE);
 | 
				
			||||||
 | 
					                        return std::make_pair(cs, dt);
 | 
				
			||||||
 | 
					                    }
 | 
				
			||||||
 | 
					                }
 | 
				
			||||||
 | 
					                return std::make_pair(CalcState(CalcState::State::OVERPAID), dt);
 | 
				
			||||||
 | 
					            }
 | 
				
			||||||
 | 
					            qCritical() << __func__ << ":" << __LINE__ << "set time-limit reached";
 | 
				
			||||||
 | 
					            qCritical() << __func__ << ":" << __LINE__ << "netto-parking-time" << netto_parking_time_in_minutes;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            Calculator::GetInstance().setTimeLimitReached(true);
 | 
				
			||||||
 | 
					            QList <int> keys = nettoParktimePrice.keys();
 | 
				
			||||||
 | 
					            for (int k = 0; k < keys.size(); ++k) {
 | 
				
			||||||
 | 
					                if (keys[k] < netto_parking_time_in_minutes) {
 | 
				
			||||||
 | 
					                    continue;
 | 
				
			||||||
 | 
					                }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                int const maxPriceForTimeLimit = nettoParktimePrice[keys[k]];
 | 
				
			||||||
 | 
					                qCritical() << __func__ << ":" << __LINE__ << keys[k] << maxPriceForTimeLimit << cost;
 | 
				
			||||||
 | 
					                // Calculator::GetInstance().setCostAtTimeLimit(nettoParktimePrice[keys[k]]);
 | 
				
			||||||
 | 
					                if (cost > maxPriceForTimeLimit) {
 | 
				
			||||||
 | 
					                    cfg->getPaymentOptions(paymentOptionIndex).pop_max_price = maxPriceForTimeLimit;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                    CalcState cs(CalcState::State::OVERPAID);
 | 
				
			||||||
 | 
					                    return std::make_pair(cs, dt);
 | 
				
			||||||
 | 
					                }
 | 
				
			||||||
 | 
					                if (cost == maxPriceForTimeLimit) {
 | 
				
			||||||
 | 
					                    cfg->getPaymentOptions(paymentOptionIndex).pop_max_price = maxPriceForTimeLimit;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                    CalcState cs(CalcState::State::SUCCESS_MAXPRICE);
 | 
				
			||||||
 | 
					                    return std::make_pair(cs, dt);
 | 
				
			||||||
 | 
					                }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                qCritical() << __func__ << ":" << __LINE__ << "DT" << dt.toString(Qt::ISODate);
 | 
				
			||||||
 | 
					                return std::make_pair(CalcState(CalcState::State::SUCCESS), dt);
 | 
				
			||||||
 | 
					            }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            qCritical() << __func__ << ":" << __LINE__ << "outside allowed parking time" << dt.toString(Qt::ISODate);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            return std::make_pair(CalcState(CalcState::State::OUTSIDE_ALLOWED_PARKING_TIME,
 | 
				
			||||||
 | 
					                                            CalcState::OUTSIDE_ALLOWED_PARKING_TIME), dt);
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        if (computationStarted == false) {
 | 
				
			||||||
 | 
					            computationStarted = true;
 | 
				
			||||||
 | 
					            if (std::optional<ATBTariffPrepaid> pp = getPrepaid(cfg, dt)) {
 | 
				
			||||||
 | 
					                TimeRange const &prepaidTimeRange = pp.value().m_range;
 | 
				
			||||||
 | 
					                ATBTime t(dt.time().hour(), dt.time().minute(), 0, 0);
 | 
				
			||||||
 | 
					                free_parking_time_in_minutes += t.secsTo(prepaidTimeRange.m_end.toString(Qt::ISODate)) / 60;
 | 
				
			||||||
 | 
					            }
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        brutto_parking_time_in_minutes = free_parking_time_in_minutes + netto_parking_time_in_minutes;
 | 
				
			||||||
 | 
					        dt = inputDate.addSecs(brutto_parking_time_in_minutes * 60);
 | 
				
			||||||
 | 
					        weekDay = dt.date().dayOfWeek();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        qCritical() << __func__ << ":" << __LINE__ << QString("%1 (%2): brutto: %3 = netto: %4 + free: %5")
 | 
				
			||||||
 | 
					                       .arg(dt.toString(Qt::ISODate))
 | 
				
			||||||
 | 
					                       .arg(weekDay)
 | 
				
			||||||
 | 
					                       .arg(brutto_parking_time_in_minutes)
 | 
				
			||||||
 | 
					                       .arg(netto_parking_time_in_minutes)
 | 
				
			||||||
 | 
					                       .arg(free_parking_time_in_minutes);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        if (std::optional<ATBTariffCarryOver> co = getCarryOver(cfg, inputDate.addSecs(brutto_parking_time_in_minutes * 60))) {
 | 
				
			||||||
 | 
					            TimeRange const &carryOverTimeRange = co.value().m_range;
 | 
				
			||||||
 | 
					            free_parking_time_in_minutes += carryOverTimeRange.m_duration;
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        brutto_parking_time_in_minutes = free_parking_time_in_minutes + netto_parking_time_in_minutes;
 | 
				
			||||||
 | 
					        dt = inputDate.addSecs(brutto_parking_time_in_minutes * 60);
 | 
				
			||||||
 | 
					        weekDay = dt.date().dayOfWeek();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        qCritical() << __func__ << ":" << __LINE__ << QString("%1 (%2): brutto: %3 = netto: %4 + free: %5")
 | 
				
			||||||
 | 
					                       .arg(dt.toString(Qt::ISODate))
 | 
				
			||||||
 | 
					                       .arg(weekDay)
 | 
				
			||||||
 | 
					                       .arg(brutto_parking_time_in_minutes)
 | 
				
			||||||
 | 
					                       .arg(netto_parking_time_in_minutes)
 | 
				
			||||||
 | 
					                       .arg(free_parking_time_in_minutes);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        if (std::optional<ATBTariffService> serv = getService(cfg, dt)) {
 | 
				
			||||||
 | 
					            TimeRange const &serviceTimeRange = serv.value().m_range;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            if (nettoParktimeForCost > netto_parking_time_in_minutes) {
 | 
				
			||||||
 | 
					                int rest_parking_time_in_minutes = nettoParktimeForCost - netto_parking_time_in_minutes;
 | 
				
			||||||
 | 
					                ATBTime t(dt.time().hour(), dt.time().minute(), 0, 0);
 | 
				
			||||||
 | 
					                int timeToServiceEnd = t.secsTo(serviceTimeRange.m_end.toString(Qt::ISODate)) / 60;
 | 
				
			||||||
 | 
					                if (serviceTimeRange.m_duration > 0) {
 | 
				
			||||||
 | 
					                    if (timeToServiceEnd < rest_parking_time_in_minutes) {
 | 
				
			||||||
 | 
					                        netto_parking_time_in_minutes += timeToServiceEnd;
 | 
				
			||||||
 | 
					                    } else {
 | 
				
			||||||
 | 
					                        netto_parking_time_in_minutes += rest_parking_time_in_minutes;
 | 
				
			||||||
 | 
					                    }
 | 
				
			||||||
 | 
					                }
 | 
				
			||||||
 | 
					            }
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        brutto_parking_time_in_minutes = free_parking_time_in_minutes + netto_parking_time_in_minutes;
 | 
				
			||||||
 | 
					        dt = inputDate.addSecs(brutto_parking_time_in_minutes * 60);
 | 
				
			||||||
 | 
					        weekDay = dt.date().dayOfWeek();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        qCritical() << __func__ << ":" << __LINE__ << QString("%1 (%2): brutto: %3 = netto: %4 + free: %5")
 | 
				
			||||||
 | 
					                       .arg(dt.toString(Qt::ISODate))
 | 
				
			||||||
 | 
					                       .arg(weekDay)
 | 
				
			||||||
 | 
					                       .arg(brutto_parking_time_in_minutes)
 | 
				
			||||||
 | 
					                       .arg(netto_parking_time_in_minutes)
 | 
				
			||||||
 | 
					                       .arg(free_parking_time_in_minutes);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        // qCritical() << __func__ << ":" << __LINE__ << "cnt" << cnt << "]";
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    if (cnt >= 1000) {
 | 
				
			||||||
 | 
					        qCritical() << __func__ << ":" << __LINE__ << "BREAK";
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    // configure if last carry-over ranges shall be added to ticket-end-time
 | 
				
			||||||
 | 
					    cnt = 0;
 | 
				
			||||||
 | 
					    while (std::optional<ATBTariffCarryOver> co = getCarryOver(cfg, inputDate.addSecs(brutto_parking_time_in_minutes * 60))) {
 | 
				
			||||||
 | 
					        if (++cnt > 5) {
 | 
				
			||||||
 | 
					            qCritical() << __func__ << ":" << __LINE__ << "BREAK";
 | 
				
			||||||
 | 
					            break;
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					        TimeRange const &carryOverTimeRange = co.value().m_range;
 | 
				
			||||||
 | 
					        free_parking_time_in_minutes += carryOverTimeRange.m_duration;
 | 
				
			||||||
 | 
					        brutto_parking_time_in_minutes = free_parking_time_in_minutes + netto_parking_time_in_minutes;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    brutto_parking_time_in_minutes = free_parking_time_in_minutes + netto_parking_time_in_minutes;
 | 
				
			||||||
 | 
					    dt = inputDate.addSecs(brutto_parking_time_in_minutes * 60);
 | 
				
			||||||
 | 
					    weekDay = dt.date().dayOfWeek();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    qCritical() << __func__ << ":" << __LINE__ << QString("ticket-end-time %1 (%2): brutto: %3 = netto: %4 + free: %5")
 | 
				
			||||||
 | 
					                   .arg(dt.toString(Qt::ISODate))
 | 
				
			||||||
 | 
					                   .arg(weekDay)
 | 
				
			||||||
 | 
					                   .arg(brutto_parking_time_in_minutes)
 | 
				
			||||||
 | 
					                   .arg(netto_parking_time_in_minutes)
 | 
				
			||||||
 | 
					                   .arg(free_parking_time_in_minutes);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    if (successMaxPrice) {
 | 
				
			||||||
 | 
					        qCritical() << __func__ << ":" << __LINE__ << "SUCC" << dt;
 | 
				
			||||||
 | 
					        return std::make_pair(CalcState(CalcState::State::SUCCESS_MAXPRICE), dt);
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					    if (overPaid) {
 | 
				
			||||||
 | 
					        qCritical() << __func__ << ":" << __LINE__ << "OVER" << dt;
 | 
				
			||||||
 | 
					        return std::make_pair(CalcState(CalcState::State::OVERPAID), dt);
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    qCritical() << __func__ << ":" << __LINE__ << "DT" << dt.toString(Qt::ISODate);
 | 
				
			||||||
 | 
					    return std::make_pair(CalcState(CalcState::State::SUCCESS), dt);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					std::pair<CalcState, std::optional<int>>
 | 
				
			||||||
 | 
					Calculator::ComputeCostFromDuration(Configuration *cfg, QDateTime const &startDatetime,
 | 
				
			||||||
 | 
					                                    QDateTime &endDatetime, int nettoParkingTime) {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    // TODO
 | 
				
			||||||
 | 
					    int paymentOptionIndex = 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    std::optional<int> cost{};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    int const pop_id = cfg->getPaymentOptions(paymentOptionIndex).pop_id;
 | 
				
			||||||
 | 
					    int const pop_accumulate_prices = cfg->getPaymentOptions(paymentOptionIndex).pop_accumulate_prices;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    int price = 0;
 | 
				
			||||||
 | 
					    int durationId = 0;
 | 
				
			||||||
 | 
					    int netto_parking_time_in_minutes = 0;
 | 
				
			||||||
 | 
					    int brutto_parking_time_in_minutes = 0;
 | 
				
			||||||
 | 
					    int free_parking_time_in_minutes = 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    QMap<int, int> nettoParktimePrice;
 | 
				
			||||||
 | 
					    QMap<int, int> priceNettoParktime;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    for (auto[itr, rangeEnd] = cfg->PaymentRate.equal_range(pop_id); itr != rangeEnd; ++itr) {
 | 
				
			||||||
 | 
					        durationId = itr->second.pra_payment_unit_id;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        int const pra_price = itr->second.pra_price;
 | 
				
			||||||
 | 
					        if (pop_accumulate_prices) {
 | 
				
			||||||
 | 
					            price += pra_price;
 | 
				
			||||||
 | 
					        } else {
 | 
				
			||||||
 | 
					            price = pra_price;
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        auto search = cfg->Duration.find(durationId);
 | 
				
			||||||
 | 
					        if (search != cfg->Duration.end()) {
 | 
				
			||||||
 | 
					            // found now the duration in minutes
 | 
				
			||||||
 | 
					            // check if we are still inside the working-time-range
 | 
				
			||||||
 | 
					            ATBDuration duration = search->second;
 | 
				
			||||||
 | 
					            nettoParktimePrice.insert(duration.pun_duration, price);
 | 
				
			||||||
 | 
					            priceNettoParktime.insert(price, duration.pun_duration);
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    qCritical() << __func__ << ":" << __LINE__ << "START netto-parking-time" << nettoParkingTime;
 | 
				
			||||||
 | 
					    CalcState returnState;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    QList<int> keys = nettoParktimePrice.keys();
 | 
				
			||||||
 | 
					    int index = keys.indexOf(nettoParkingTime);
 | 
				
			||||||
 | 
					    if (index != -1) {
 | 
				
			||||||
 | 
					        int c = nettoParktimePrice[keys.at(index)];
 | 
				
			||||||
 | 
					        qCritical() << __func__ << ":" << __LINE__ << "cost for netto-parking-time" << c;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        std::pair<CalcState, QDateTime> r = ComputeDurationFromCost(cfg, startDatetime, c);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        qCritical() << __func__ << ":" << __LINE__ << "result"
 | 
				
			||||||
 | 
					                    << r.first.toString() << r.second.toString(Qt::ISODate);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        returnState = r.first;
 | 
				
			||||||
 | 
					        endDatetime = r.second;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        if (returnState.getStatus() == CalcState::State::SUCCESS ||
 | 
				
			||||||
 | 
					            returnState.getStatus() == CalcState::State::SUCCESS_MAXPRICE ||
 | 
				
			||||||
 | 
					            returnState.getStatus() == CalcState::State::OVERPAID) {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            qCritical() << __func__ << ":" << __LINE__ << "--- endDateTime" << endDatetime.toString(Qt::ISODate);
 | 
				
			||||||
 | 
					            qCritical() << __func__ << ":" << __LINE__ << "------ r.second" << r.second.toString(Qt::ISODate);
 | 
				
			||||||
 | 
					            qCritical() << __func__ << ":" << __LINE__ << "status" << returnState.toString() << (int)returnState.getStatus();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            if (!endDatetime.isNull() && endDatetime.isValid()) {
 | 
				
			||||||
 | 
					                cost = c;
 | 
				
			||||||
 | 
					            }
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    if (cost) {
 | 
				
			||||||
 | 
					        qCritical() << __func__ << ":" << __LINE__ << "--- return cost" << cost.value();
 | 
				
			||||||
 | 
					        return std::make_pair(returnState, cost);
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    qCritical() << __func__ << ":" << __LINE__ << "--- return error for cost" << returnState.toString();
 | 
				
			||||||
 | 
					    return std::make_pair(returnState, cost);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/// <inheritdoc/>
 | 
					/// <inheritdoc/>
 | 
				
			||||||
std::pair<std::string, QDateTime>
 | 
					std::pair<std::string, QDateTime>
 | 
				
			||||||
Calculator::GetDurationFromCost(Configuration* cfg,
 | 
					Calculator::GetDurationFromCost(Configuration* cfg,
 | 
				
			||||||
@@ -136,6 +619,7 @@ Calculator::GetDurationFromCost(Configuration* cfg,
 | 
				
			|||||||
    static const PaymentMethod paymentMethodId = Utilities::getPaymentMethodId(cfg);
 | 
					    static const PaymentMethod paymentMethodId = Utilities::getPaymentMethodId(cfg);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    bool overPaid = false;
 | 
					    bool overPaid = false;
 | 
				
			||||||
 | 
					    bool successMaxPrice = false; // max-price and cost match
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    int paymentOptionIndex = getPaymentOptionIndex(*cfg, inputDate);
 | 
					    int paymentOptionIndex = getPaymentOptionIndex(*cfg, inputDate);
 | 
				
			||||||
    if (paymentOptionIndex == -1) {
 | 
					    if (paymentOptionIndex == -1) {
 | 
				
			||||||
@@ -252,6 +736,17 @@ Calculator::GetDurationFromCost(Configuration* cfg,
 | 
				
			|||||||
            qCritical() << DBG_HEADER << "   TODO";
 | 
					            qCritical() << DBG_HEADER << "   TODO";
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
    } else
 | 
					    } else
 | 
				
			||||||
 | 
					    if (paymentMethodId == PaymentMethod::Unified) {
 | 
				
			||||||
 | 
					        std::pair<CalcState, QDateTime> r =
 | 
				
			||||||
 | 
					            ComputeDurationFromCost(cfg, QDateTime::fromString(startDatetimePassed, Qt::ISODate), cost);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        CalcState cs = r.first;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        qCritical() << __func__ << ":" << __LINE__ << cs.toString();
 | 
				
			||||||
 | 
					        qCritical() << __func__ << ":" << __LINE__ << r.second.toString(Qt::ISODate);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        return std::make_pair(r.first.toString().toStdString(), r.second);
 | 
				
			||||||
 | 
					    } else
 | 
				
			||||||
    if (paymentMethodId == PaymentMethod::Steps) {
 | 
					    if (paymentMethodId == PaymentMethod::Steps) {
 | 
				
			||||||
        if (tariffIs24_7(cfg)) {
 | 
					        if (tariffIs24_7(cfg)) {
 | 
				
			||||||
            // use tariff with structure as for instance Schoenau, Koenigsee:
 | 
					            // use tariff with structure as for instance Schoenau, Koenigsee:
 | 
				
			||||||
@@ -270,8 +765,16 @@ Calculator::GetDurationFromCost(Configuration* cfg,
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
                int const pop_id = cfg->getPaymentOptions(paymentOptionIndex).pop_id;
 | 
					                int const pop_id = cfg->getPaymentOptions(paymentOptionIndex).pop_id;
 | 
				
			||||||
                int const pop_max_price = cfg->getPaymentOptions(paymentOptionIndex).pop_max_price;
 | 
					                int const pop_max_price = cfg->getPaymentOptions(paymentOptionIndex).pop_max_price;
 | 
				
			||||||
 | 
					                //int const pop_max_time = cfg->getPaymentOptions(paymentOptionIndex).pop_max_time;
 | 
				
			||||||
                int const pop_min_price = cfg->getPaymentOptions(paymentOptionIndex).pop_min_price;
 | 
					                int const pop_min_price = cfg->getPaymentOptions(paymentOptionIndex).pop_min_price;
 | 
				
			||||||
                int const pop_allow_overpay = cfg->getPaymentOptions(paymentOptionIndex).pop_allow_overpay;
 | 
					                int const pop_allow_overpay = cfg->getPaymentOptions(paymentOptionIndex).pop_allow_overpay;
 | 
				
			||||||
 | 
					                int const pop_accumulate_prices = cfg->getPaymentOptions(paymentOptionIndex).pop_accumulate_prices;
 | 
				
			||||||
 | 
					                int price = 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                if (cost == pop_max_price) {
 | 
				
			||||||
 | 
					                    qCritical() << DBG_HEADER << "SUCCESS MAX-PARKING-PRICE" << pop_max_price << ", COST" << cost;
 | 
				
			||||||
 | 
					                    successMaxPrice = true;
 | 
				
			||||||
 | 
					                }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                if (cost > pop_max_price) {
 | 
					                if (cost > pop_max_price) {
 | 
				
			||||||
                    qCritical() << DBG_HEADER << "MAX-PARKING-PRICE" << pop_max_price << ", COST" << cost;
 | 
					                    qCritical() << DBG_HEADER << "MAX-PARKING-PRICE" << pop_max_price << ", COST" << cost;
 | 
				
			||||||
@@ -280,6 +783,7 @@ Calculator::GetDurationFromCost(Configuration* cfg,
 | 
				
			|||||||
                    }
 | 
					                    }
 | 
				
			||||||
                    cost = pop_max_price;
 | 
					                    cost = pop_max_price;
 | 
				
			||||||
                    overPaid = true;
 | 
					                    overPaid = true;
 | 
				
			||||||
 | 
					                    qCritical() << DBG_HEADER << "OVERPAID, MAX-PARKING-PRICE" << pop_max_price << ", COST" << cost;
 | 
				
			||||||
                    // return CalcState::OVERPAID.toStdString();
 | 
					                    // return CalcState::OVERPAID.toStdString();
 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -403,9 +907,9 @@ Calculator::GetDurationFromCost(Configuration* cfg,
 | 
				
			|||||||
                qCritical() << DBG_HEADER << "  CURRENT WORKING-TIME-TO" << current_working_time_to.toString(Qt::ISODate);
 | 
					                qCritical() << DBG_HEADER << "  CURRENT WORKING-TIME-TO" << current_working_time_to.toString(Qt::ISODate);
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                int const pop_accumulate_prices = cfg->getPaymentOptions(paymentOptionIndex).pop_accumulate_prices;
 | 
					                // int const pop_accumulate_prices = cfg->getPaymentOptions(paymentOptionIndex).pop_accumulate_prices;
 | 
				
			||||||
                // int const pop_accumulate_durations = cfg->getPaymentOptions(paymentOptionIndex).pop_accumulate_durations;
 | 
					                // int const pop_accumulate_durations = cfg->getPaymentOptions(paymentOptionIndex).pop_accumulate_durations;
 | 
				
			||||||
                int price = 0;
 | 
					                // int price = 0;
 | 
				
			||||||
                int new_price = 0;
 | 
					                int new_price = 0;
 | 
				
			||||||
                int durationInSecs = 0;
 | 
					                int durationInSecs = 0;
 | 
				
			||||||
                uint32_t duration_previous = 0;
 | 
					                uint32_t duration_previous = 0;
 | 
				
			||||||
@@ -447,6 +951,9 @@ Calculator::GetDurationFromCost(Configuration* cfg,
 | 
				
			|||||||
                                if (overPaid) {
 | 
					                                if (overPaid) {
 | 
				
			||||||
                                    return std::make_pair(CalcState::OVERPAID.toStdString(), d);
 | 
					                                    return std::make_pair(CalcState::OVERPAID.toStdString(), d);
 | 
				
			||||||
                                }
 | 
					                                }
 | 
				
			||||||
 | 
					                                if (successMaxPrice) {
 | 
				
			||||||
 | 
					                                    return std::make_pair(CalcState::SUCCESS_MAXPRICE.toStdString(), d);
 | 
				
			||||||
 | 
					                                }
 | 
				
			||||||
                                return std::make_pair(d.toString(Qt::ISODate).toStdString(), d);
 | 
					                                return std::make_pair(d.toString(Qt::ISODate).toStdString(), d);
 | 
				
			||||||
                            }
 | 
					                            }
 | 
				
			||||||
                        } else {
 | 
					                        } else {
 | 
				
			||||||
@@ -523,6 +1030,16 @@ Calculator::GetDurationFromCost(Configuration* cfg,
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
                                                //qCritical() << DBG_HEADER << "NEW INPUT" << inputDate.toString(Qt::ISODate);
 | 
					                                                //qCritical() << DBG_HEADER << "NEW INPUT" << inputDate.toString(Qt::ISODate);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                                                int const pop_carry_over = cfg->getPaymentOptions(paymentOptionIndex).pop_carry_over;
 | 
				
			||||||
 | 
					                                                if (pop_carry_over) {
 | 
				
			||||||
 | 
					                                                    int weekDay = inputDate.date().dayOfWeek();
 | 
				
			||||||
 | 
					                                                    int const pop_carry_over_option_id = cfg->getPaymentOptions(paymentOptionIndex).pop_carry_over_option_id;
 | 
				
			||||||
 | 
					                                                    if (pop_carry_over_option_id != -1) {
 | 
				
			||||||
 | 
					                                                        int const carryOverDuration = cfg->TariffCarryOverOptions.find(pop_carry_over_option_id)->second.carryover[weekDay].duration;
 | 
				
			||||||
 | 
					                                                        inputDate = inputDate.addSecs(carryOverDuration * 60);
 | 
				
			||||||
 | 
					                                                    }
 | 
				
			||||||
 | 
					                                                }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                                                inputDate = inputDate.addSecs(durationInSecs);
 | 
					                                                inputDate = inputDate.addSecs(durationInSecs);
 | 
				
			||||||
#if DEBUG_GET_DURATION_FROM_COST==1
 | 
					#if DEBUG_GET_DURATION_FROM_COST==1
 | 
				
			||||||
                                                qCritical() << DBG_HEADER << "TICKET-END" << inputDate.toString(Qt::ISODate);
 | 
					                                                qCritical() << DBG_HEADER << "TICKET-END" << inputDate.toString(Qt::ISODate);
 | 
				
			||||||
@@ -561,6 +1078,9 @@ Calculator::GetDurationFromCost(Configuration* cfg,
 | 
				
			|||||||
                            if (overPaid) {
 | 
					                            if (overPaid) {
 | 
				
			||||||
                                return std::make_pair(CalcState::OVERPAID.toStdString(), inputDate);
 | 
					                                return std::make_pair(CalcState::OVERPAID.toStdString(), inputDate);
 | 
				
			||||||
                            }
 | 
					                            }
 | 
				
			||||||
 | 
					                            if (successMaxPrice) {
 | 
				
			||||||
 | 
					                                return std::make_pair(CalcState::SUCCESS_MAXPRICE.toStdString(), inputDate);
 | 
				
			||||||
 | 
					                            }
 | 
				
			||||||
                            return std::make_pair(s.toStdString(), inputDate);
 | 
					                            return std::make_pair(s.toStdString(), inputDate);
 | 
				
			||||||
                        } // if ((double)price == cost) {
 | 
					                        } // if ((double)price == cost) {
 | 
				
			||||||
                        else {
 | 
					                        else {
 | 
				
			||||||
@@ -648,6 +1168,9 @@ Calculator::GetDurationFromCost(Configuration* cfg,
 | 
				
			|||||||
                    if (overPaid) {
 | 
					                    if (overPaid) {
 | 
				
			||||||
                        return std::make_pair(CalcState::OVERPAID.toStdString(), end_datetime);
 | 
					                        return std::make_pair(CalcState::OVERPAID.toStdString(), end_datetime);
 | 
				
			||||||
                    }
 | 
					                    }
 | 
				
			||||||
 | 
					                    if (successMaxPrice) {
 | 
				
			||||||
 | 
					                        return std::make_pair(CalcState::SUCCESS_MAXPRICE.toStdString(), end_datetime);
 | 
				
			||||||
 | 
					                    }
 | 
				
			||||||
                    return std::make_pair(end_datetime.toString(Qt::ISODate).toStdString(), end_datetime);
 | 
					                    return std::make_pair(end_datetime.toString(Qt::ISODate).toStdString(), end_datetime);
 | 
				
			||||||
                } else {
 | 
					                } else {
 | 
				
			||||||
                    QDateTime const dt = start;
 | 
					                    QDateTime const dt = start;
 | 
				
			||||||
@@ -698,6 +1221,9 @@ Calculator::GetDurationFromCost(Configuration* cfg,
 | 
				
			|||||||
                    if (overPaid) {
 | 
					                    if (overPaid) {
 | 
				
			||||||
                        return std::make_pair(CalcState::OVERPAID.toStdString(), end_datetime);
 | 
					                        return std::make_pair(CalcState::OVERPAID.toStdString(), end_datetime);
 | 
				
			||||||
                    }
 | 
					                    }
 | 
				
			||||||
 | 
					                    if (successMaxPrice) {
 | 
				
			||||||
 | 
					                        return std::make_pair(CalcState::SUCCESS_MAXPRICE.toStdString(), end_datetime);
 | 
				
			||||||
 | 
					                    }
 | 
				
			||||||
                    return std::make_pair(end_datetime.toString(Qt::ISODate).toStdString(), end_datetime);
 | 
					                    return std::make_pair(end_datetime.toString(Qt::ISODate).toStdString(), end_datetime);
 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -796,6 +1322,9 @@ Calculator::GetDurationFromCost(Configuration* cfg,
 | 
				
			|||||||
                        if (overPaid) {
 | 
					                        if (overPaid) {
 | 
				
			||||||
                            return std::make_pair(CalcState::OVERPAID.toStdString(), end_datetime);
 | 
					                            return std::make_pair(CalcState::OVERPAID.toStdString(), end_datetime);
 | 
				
			||||||
                        }
 | 
					                        }
 | 
				
			||||||
 | 
					                        if (successMaxPrice) {
 | 
				
			||||||
 | 
					                            return std::make_pair(CalcState::SUCCESS_MAXPRICE.toStdString(), end_datetime);
 | 
				
			||||||
 | 
					                        }
 | 
				
			||||||
                        return std::make_pair(end_datetime.toString(Qt::ISODate).toStdString(), end_datetime);
 | 
					                        return std::make_pair(end_datetime.toString(Qt::ISODate).toStdString(), end_datetime);
 | 
				
			||||||
                    }
 | 
					                    }
 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
@@ -840,6 +1369,9 @@ Calculator::GetDurationFromCost(Configuration* cfg,
 | 
				
			|||||||
                                if (overPaid) {
 | 
					                                if (overPaid) {
 | 
				
			||||||
                                    return std::make_pair(CalcState::OVERPAID.toStdString(), end_datetime);
 | 
					                                    return std::make_pair(CalcState::OVERPAID.toStdString(), end_datetime);
 | 
				
			||||||
                                }
 | 
					                                }
 | 
				
			||||||
 | 
					                                if (successMaxPrice) {
 | 
				
			||||||
 | 
					                                    return std::make_pair(CalcState::SUCCESS_MAXPRICE.toStdString(), end_datetime);
 | 
				
			||||||
 | 
					                                }
 | 
				
			||||||
                                return std::make_pair(end_datetime.toString(Qt::ISODate).toStdString(), end_datetime);
 | 
					                                return std::make_pair(end_datetime.toString(Qt::ISODate).toStdString(), end_datetime);
 | 
				
			||||||
                            }
 | 
					                            }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -874,6 +1406,9 @@ Calculator::GetDurationFromCost(Configuration* cfg,
 | 
				
			|||||||
                        if (overPaid) {
 | 
					                        if (overPaid) {
 | 
				
			||||||
                            return std::make_pair(CalcState::OVERPAID.toStdString(), end_datetime);
 | 
					                            return std::make_pair(CalcState::OVERPAID.toStdString(), end_datetime);
 | 
				
			||||||
                        }
 | 
					                        }
 | 
				
			||||||
 | 
					                        if (successMaxPrice) {
 | 
				
			||||||
 | 
					                            return std::make_pair(CalcState::SUCCESS_MAXPRICE.toStdString(), end_datetime);
 | 
				
			||||||
 | 
					                        }
 | 
				
			||||||
                        return std::make_pair(end_datetime.toString(Qt::ISODate).toStdString(), end_datetime);
 | 
					                        return std::make_pair(end_datetime.toString(Qt::ISODate).toStdString(), end_datetime);
 | 
				
			||||||
                    }
 | 
					                    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -993,6 +1528,9 @@ Calculator::GetDurationFromCost(Configuration* cfg,
 | 
				
			|||||||
                        if (overPaid) {
 | 
					                        if (overPaid) {
 | 
				
			||||||
                            return std::make_pair(CalcState::OVERPAID.toStdString(), end_datetime);
 | 
					                            return std::make_pair(CalcState::OVERPAID.toStdString(), end_datetime);
 | 
				
			||||||
                        }
 | 
					                        }
 | 
				
			||||||
 | 
					                        if (successMaxPrice) {
 | 
				
			||||||
 | 
					                            return std::make_pair(CalcState::SUCCESS_MAXPRICE.toStdString(), end_datetime);
 | 
				
			||||||
 | 
					                        }
 | 
				
			||||||
                        return std::make_pair(end_datetime.toString(Qt::ISODate).toStdString(), end_datetime);
 | 
					                        return std::make_pair(end_datetime.toString(Qt::ISODate).toStdString(), end_datetime);
 | 
				
			||||||
                    }
 | 
					                    }
 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
@@ -1162,7 +1700,7 @@ CalcState Calculator::isParkingAllowedForWeekDay(Configuration const *cfg,
 | 
				
			|||||||
                            (int)cfg->TimeRange.count(pop_carry_over_end_time_range) <= 0) {
 | 
					                            (int)cfg->TimeRange.count(pop_carry_over_end_time_range) <= 0) {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                            qCritical() << DBG_HEADER << "PARKING_ALLOWED. startTime" << startTime.toString(Qt::ISODate);
 | 
					                            qCritical() << DBG_HEADER << "PARKING_ALLOWED. startTime" << startTime.toString(Qt::ISODate);
 | 
				
			||||||
                            return CalcState(CalcState::State::SUCCESS, "PARKING_ALLOWED", startTime);
 | 
					                            return CalcState(CalcState::State::SUCCESS, "PARKING_ALLOWED", startTime, QTime());
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                        } else
 | 
					                        } else
 | 
				
			||||||
                        // search entry in time-range-field of tariff-file
 | 
					                        // search entry in time-range-field of tariff-file
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -10,6 +10,9 @@
 | 
				
			|||||||
#include "tariff_global_defines.h"
 | 
					#include "tariff_global_defines.h"
 | 
				
			||||||
#include "tariff_settings.h"
 | 
					#include "tariff_settings.h"
 | 
				
			||||||
#include "tariff_carryover_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>
 | 
				
			||||||
@@ -61,6 +64,405 @@ ATBWeekDay parseWeekDay(Configuration &cfg,
 | 
				
			|||||||
    ATBWeekDay WeekDay;
 | 
					    ATBWeekDay WeekDay;
 | 
				
			||||||
    QTime start, end, parking_time_limit, about_to_exceed_limit;
 | 
					    QTime start, end, parking_time_limit, about_to_exceed_limit;
 | 
				
			||||||
    ATBTariffCarryOverSettings::ParkingTimeLimitChecker parkTimeLimitChecker;
 | 
					    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 (innerObjName == QString("week_day_default")) {
 | 
				
			||||||
        if (k->value.IsObject()) {
 | 
					        if (k->value.IsObject()) {
 | 
				
			||||||
            auto obj = k->value.GetObject();
 | 
					            auto obj = k->value.GetObject();
 | 
				
			||||||
@@ -1000,6 +1402,7 @@ 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) {
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -427,6 +427,8 @@ 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;
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -755,7 +755,7 @@ int main() {
 | 
				
			|||||||
    int pop_max_price;
 | 
					    int pop_max_price;
 | 
				
			||||||
    int pop_daily_card_price;
 | 
					    int pop_daily_card_price;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    int zone = 3;
 | 
					    int zone = 1;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    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 +844,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,9 +852,26 @@ 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)50, end, PermitType(PERMIT_TYPE::SHORT_TERM_PARKING_BUS));
 | 
					                                                (double)9000, 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) {
 | 
				
			||||||
@@ -1391,7 +1408,8 @@ int main() {
 | 
				
			|||||||
        case 2: {
 | 
					        case 2: {
 | 
				
			||||||
            qCritical() << "        ZONE 2: KURZZEIT 1";
 | 
					            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: {
 | 
				
			||||||
@@ -1583,7 +1601,8 @@ int main() {
 | 
				
			|||||||
                    break;
 | 
					                    break;
 | 
				
			||||||
                    case 1:
 | 
					                    case 1:
 | 
				
			||||||
                        //start = QDateTime(QDate(2024, 10, 3), QTime(17, 0, 0)); // sunday
 | 
					                        //start = QDateTime(QDate(2024, 10, 3), QTime(17, 0, 0)); // sunday
 | 
				
			||||||
                        start = QDateTime(QDate(2024, 9, 8), QTime(16, 2, 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:
 | 
				
			||||||
@@ -1615,8 +1634,8 @@ int main() {
 | 
				
			|||||||
                            //            << "START" << start.toString(Qt::ISODate)
 | 
					                            //            << "START" << start.toString(Qt::ISODate)
 | 
				
			||||||
                            //            << "<duration" << *step;
 | 
					                            //            << "<duration" << *step;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                            // if (*step != 180)
 | 
					                            if (*step != 180)
 | 
				
			||||||
                            // continue;
 | 
					                                continue;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                            double cost = 0;
 | 
					                            double cost = 0;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -34,7 +34,12 @@ OTHER_FILES += \
 | 
				
			|||||||
    /opt/ptu5/opt/customer_335/etc/psa_tariff/tariff02.json \
 | 
					    /opt/ptu5/opt/customer_335/etc/psa_tariff/tariff02.json \
 | 
				
			||||||
    /opt/ptu5/opt/customer_249/etc/psa_tariff/tariff01.json \
 | 
					    /opt/ptu5/opt/customer_249/etc/psa_tariff/tariff01.json \
 | 
				
			||||||
    /opt/ptu5/opt/customer_249/etc/psa_tariff/tariff02.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/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