Compare commits
	
		
			95 Commits
		
	
	
		
			2.3.99-14
			...
			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 | |||
| 7c0514e241 | |||
| f53e9ceaae | |||
| dffc6e2a03 | |||
| f9cc3af473 | |||
| 9dd0108731 | |||
| fa10ea4b89 | |||
| 05f03a623b | |||
| 03e9076962 | |||
| 5dbd3645c6 | |||
| d21f69cb9b | |||
| e38a1bfe12 | |||
| f38a8d528c | |||
| 08a593eb12 | |||
| f322d30e36 | |||
| 7a53a68850 | |||
| 275c3ec869 | |||
| 6d2bde1fe9 | |||
| f02521d3c2 | |||
| 75f1c1bb76 | |||
| f47695de8b | |||
| cce3db301b | |||
| 5cab0de9fb | |||
| f92906f680 | |||
| 8cdeef26fc | |||
| 52ebbf7bc9 | |||
| 349e9d8b06 | |||
| 68a1c24861 | |||
| c946c106d1 | |||
| f24f1fe646 | |||
| c6b8a37263 | |||
| 58d8f16681 | |||
| 431664d8b9 | |||
| 53cf9a7341 | |||
| 3a18ee2d7c | |||
| 929a8a4a27 | |||
| 2b9657787d | |||
| eca285cc25 | |||
| bda8914f1a | |||
| a3983ed427 | |||
| f8805e9e78 | |||
| 7a6360f392 | |||
| 08a249f393 | |||
| 7c173ae292 | |||
| 80637260f3 | |||
| 9b524d63e5 | 
							
								
								
									
										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 OVERPAID;
 | 
			
		||||
    static QString const OUTSIDE_ALLOWED_PARKING_TIME;
 | 
			
		||||
    static QString const SUCCESS_MAXPRICE;
 | 
			
		||||
 | 
			
		||||
    enum class State : uint8_t {
 | 
			
		||||
        SUCCESS,
 | 
			
		||||
@@ -71,7 +72,8 @@ struct CALCULATE_LIBRARY_API CalcState {
 | 
			
		||||
        BELOW_MIN_PARKING_PRICE,
 | 
			
		||||
        ABOVE_MAX_PARKING_PRICE,
 | 
			
		||||
        OVERPAID,
 | 
			
		||||
        OUTSIDE_ALLOWED_PARKING_TIME
 | 
			
		||||
        OUTSIDE_ALLOWED_PARKING_TIME,
 | 
			
		||||
        SUCCESS_MAXPRICE
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
    State m_status;
 | 
			
		||||
@@ -88,9 +90,9 @@ struct CALCULATE_LIBRARY_API CalcState {
 | 
			
		||||
        , m_desc(desc) {
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    explicit CalcState(State state, QString desc = "",
 | 
			
		||||
                       QTime const &from = QTime(),
 | 
			
		||||
                       QTime const &until = QTime())
 | 
			
		||||
    explicit CalcState(State state, QString desc,
 | 
			
		||||
                       QTime const &from,
 | 
			
		||||
                       QTime const &until)
 | 
			
		||||
        : m_status(state)
 | 
			
		||||
        , m_desc(desc)
 | 
			
		||||
        , m_allowedTimeRange(from, until) {
 | 
			
		||||
@@ -106,6 +108,9 @@ struct CALCULATE_LIBRARY_API CalcState {
 | 
			
		||||
        case State::SUCCESS:
 | 
			
		||||
            s = CalcState::SUCCESS;
 | 
			
		||||
            break;
 | 
			
		||||
        case State::SUCCESS_MAXPRICE:
 | 
			
		||||
            s = CalcState::SUCCESS_MAXPRICE;
 | 
			
		||||
            break;
 | 
			
		||||
        case State::ERROR_PARSING_ZONE_NR:
 | 
			
		||||
            s = CalcState::ERROR_PARSING_ZONE_NR;
 | 
			
		||||
            break;
 | 
			
		||||
@@ -158,6 +163,9 @@ struct CALCULATE_LIBRARY_API CalcState {
 | 
			
		||||
        case State::SUCCESS:
 | 
			
		||||
            s = CalcState::SUCCESS;
 | 
			
		||||
            break;
 | 
			
		||||
        case State::SUCCESS_MAXPRICE:
 | 
			
		||||
            s = CalcState::SUCCESS_MAXPRICE;
 | 
			
		||||
            break;
 | 
			
		||||
        case State::ERROR_PARSING_ZONE_NR:
 | 
			
		||||
            s = CalcState::ERROR_PARSING_ZONE_NR;
 | 
			
		||||
            break;
 | 
			
		||||
@@ -207,6 +215,9 @@ struct CALCULATE_LIBRARY_API CalcState {
 | 
			
		||||
        if (desc == SUCCESS) {
 | 
			
		||||
            m_status = State::SUCCESS;
 | 
			
		||||
        } else
 | 
			
		||||
        if (desc == SUCCESS_MAXPRICE) {
 | 
			
		||||
            m_status = State::SUCCESS_MAXPRICE;
 | 
			
		||||
        }
 | 
			
		||||
        if (desc == ERROR_PARSING_ZONE_NR) {
 | 
			
		||||
            m_status = State::ERROR_PARSING_ZONE_NR;
 | 
			
		||||
        } else
 | 
			
		||||
 
 | 
			
		||||
@@ -3,6 +3,7 @@
 | 
			
		||||
 | 
			
		||||
#include <iostream>
 | 
			
		||||
#include <optional>
 | 
			
		||||
#include <utility>
 | 
			
		||||
 | 
			
		||||
#include "configuration.h"
 | 
			
		||||
#include "calculate_price.h"
 | 
			
		||||
@@ -26,9 +27,16 @@ class Calculator {
 | 
			
		||||
                                            QDateTime const &start,
 | 
			
		||||
                                            int netto_parking_time,
 | 
			
		||||
                                            int paymentOptionIndex);
 | 
			
		||||
    struct State {
 | 
			
		||||
        bool m_timeLimitReached;
 | 
			
		||||
        uint32_t m_costAtTimeLimit;
 | 
			
		||||
    } m_state;
 | 
			
		||||
 | 
			
		||||
protected:
 | 
			
		||||
    explicit Calculator() = default;
 | 
			
		||||
    explicit Calculator() {
 | 
			
		||||
        m_state.m_timeLimitReached = false;
 | 
			
		||||
        m_state.m_costAtTimeLimit = ~0;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
public:
 | 
			
		||||
    Calculator(Calculator const &other) = delete;
 | 
			
		||||
@@ -39,6 +47,12 @@ public:
 | 
			
		||||
        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) {
 | 
			
		||||
        if (m_timeSteps.size() > 0 && paymentOptionIndex < m_timeSteps.size()) {
 | 
			
		||||
            m_timeSteps[paymentOptionIndex].clear();
 | 
			
		||||
@@ -70,8 +84,9 @@ public:
 | 
			
		||||
	/// <param name="start_datetime">Date/time of payment to be conducted in ISO8601 format (e.g. 2022-12-25T08:00:00Z)</param>
 | 
			
		||||
	/// <param name="price"></param>
 | 
			
		||||
	/// <returns>Returns duration in seconds (data type: double)</returns>
 | 
			
		||||
    std::string GetDurationFromCost(Configuration* cfg, uint8_t vehicle_type, char const* start_datetime, double price,
 | 
			
		||||
                                    PermitType permitType, bool nextDay = false, bool prepaid = false);
 | 
			
		||||
    std::pair<std::string, QDateTime>
 | 
			
		||||
        GetDurationFromCost(Configuration* cfg, uint8_t vehicle_type, char const* start_datetime, double price,
 | 
			
		||||
                            PermitType permitType, bool nextDay = false, bool prepaid = false);
 | 
			
		||||
 | 
			
		||||
	/// <summary>
 | 
			
		||||
	///  Gets cost from duration in seconds
 | 
			
		||||
@@ -85,6 +100,9 @@ public:
 | 
			
		||||
    double GetCostFromDuration(Configuration* cfg, uint8_t vehicle_type, QDateTime &start_datetime, QDateTime & end_datetime, int durationMin,
 | 
			
		||||
                               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
 | 
			
		||||
    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);
 | 
			
		||||
 
 | 
			
		||||
@@ -29,6 +29,8 @@
 | 
			
		||||
#include "tariff_prepaid.h"
 | 
			
		||||
#include "tariff_carryover.h"
 | 
			
		||||
#include "tariff_permit_type.h"
 | 
			
		||||
#include "tariff_service.h"
 | 
			
		||||
#include "tariff_out_of_service.h"
 | 
			
		||||
 | 
			
		||||
#include <QVector>
 | 
			
		||||
#include <optional>
 | 
			
		||||
@@ -36,6 +38,7 @@
 | 
			
		||||
using namespace std;
 | 
			
		||||
using namespace rapidjson;
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class Calculator;
 | 
			
		||||
class Configuration
 | 
			
		||||
{
 | 
			
		||||
@@ -49,6 +52,10 @@ public:
 | 
			
		||||
    using TariffPrepaidType = std::multimap<int, ATBPrepaid>;
 | 
			
		||||
    using TariffCarryOverType = std::multimap<int, ATBCarryOver>;
 | 
			
		||||
    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;
 | 
			
		||||
    ATBCurrency Currency;
 | 
			
		||||
@@ -59,7 +66,7 @@ public:
 | 
			
		||||
	multimap<int, ATBPaymentRate> PaymentRate;
 | 
			
		||||
	SpecialDaysWorktimeType SpecialDaysWorktime;
 | 
			
		||||
	SpecialDaysType SpecialDays;
 | 
			
		||||
	multimap<int, ATBWeekDays> WeekDays;
 | 
			
		||||
    multimap<Qt::DayOfWeek, ATBWeekDay> WeekDays;
 | 
			
		||||
	multimap<int, ATBPeriodYear> YearPeriod;
 | 
			
		||||
	multimap<int, ATBWeekDaysWorktime> WeekDaysWorktime;
 | 
			
		||||
	ATBPaymentOptionType PaymentOption;
 | 
			
		||||
@@ -72,6 +79,10 @@ public:
 | 
			
		||||
	TariffInterpolationType TariffInterpolations;
 | 
			
		||||
	TariffPrepaidType TariffPrepaidOptions;
 | 
			
		||||
	TariffCarryOverType TariffCarryOverOptions;
 | 
			
		||||
    TariffServiceType TariffServices;
 | 
			
		||||
    TariffOutOfServiceType TariffOutOfServices;
 | 
			
		||||
    ATBTariffPrepaidType TariffPrepaids;
 | 
			
		||||
    ATBTariffCarryOverType TariffCarryOvers;
 | 
			
		||||
 | 
			
		||||
	/// <summary>
 | 
			
		||||
	/// Parse JSON string
 | 
			
		||||
@@ -126,3 +137,15 @@ private:
 | 
			
		||||
 | 
			
		||||
	QVector<ATBPaymentOption> currentPaymentOptions;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
bool previousDayHoliday(Configuration const &cfg, QDateTime const &t);
 | 
			
		||||
bool isHoliday(Configuration const &cfg, QDateTime const &t);
 | 
			
		||||
int getPaymentOptionIndex(Configuration const &cfg, QDateTime const& dt = QDateTime::currentDateTime());
 | 
			
		||||
 | 
			
		||||
ATBWeekDay parseWeekDay(Configuration &cfg,
 | 
			
		||||
                        rapidjson::GenericMemberIterator<false,
 | 
			
		||||
                                                         rapidjson::UTF8<char>,
 | 
			
		||||
                                                         rapidjson::MemoryPoolAllocator<rapidjson::CrtAllocator>> k,
 | 
			
		||||
                        QString const &innerObjName,
 | 
			
		||||
                        Qt::DayOfWeek weekDay,
 | 
			
		||||
                        QString const &weekDayName);
 | 
			
		||||
 
 | 
			
		||||
@@ -6,7 +6,8 @@ enum PaymentMethod {
 | 
			
		||||
	Progressive = 0x01,
 | 
			
		||||
	Degressive = 0x02,
 | 
			
		||||
	Linear = 0x03,
 | 
			
		||||
	Steps = 0x04
 | 
			
		||||
    Steps = 0x04,
 | 
			
		||||
    Unified = 0x05
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
#endif // PAYMENT_METHOD_H_INCLUDED
 | 
			
		||||
 
 | 
			
		||||
@@ -25,6 +25,7 @@ public:
 | 
			
		||||
        pop_max_time = 0;
 | 
			
		||||
        pop_min_price = 0;
 | 
			
		||||
        pop_max_price = 0;
 | 
			
		||||
        pop_max_price_save = 0;
 | 
			
		||||
        pop_carry_over = -1;
 | 
			
		||||
        pop_carry_over_option_id = -1;
 | 
			
		||||
        pop_prepaid_option_id = -1;
 | 
			
		||||
@@ -41,7 +42,10 @@ public:
 | 
			
		||||
        pop_use_only_upto_datetime = ""; // deprecated
 | 
			
		||||
        pop_use_only_for_duration = 0;   // deprecated
 | 
			
		||||
        pop_plus_steps = 1;  // +: jump <x=1> steps forward
 | 
			
		||||
        pop_plus_steps_saved = 1;
 | 
			
		||||
        pop_minus_steps = 1; // -: jump <x=1> steps backward
 | 
			
		||||
        pop_allow_overpay = false;
 | 
			
		||||
        pop_apply_carry_over_to_ticket_endtime = false;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    int pop_id;
 | 
			
		||||
@@ -58,6 +62,7 @@ public:
 | 
			
		||||
    double pop_max_time;
 | 
			
		||||
    double pop_min_price;
 | 
			
		||||
    double pop_max_price;
 | 
			
		||||
    double pop_max_price_save;
 | 
			
		||||
    int pop_carry_over;
 | 
			
		||||
    int pop_carry_over_option_id;
 | 
			
		||||
    bool pop_truncate_last_interpolation_step;
 | 
			
		||||
@@ -72,7 +77,10 @@ public:
 | 
			
		||||
    bool pop_accumulate_prices;
 | 
			
		||||
    bool pop_accumulate_durations;
 | 
			
		||||
    int pop_plus_steps;
 | 
			
		||||
    int pop_plus_steps_saved;
 | 
			
		||||
    int pop_minus_steps;
 | 
			
		||||
    bool pop_allow_overpay;
 | 
			
		||||
    bool pop_apply_carry_over_to_ticket_endtime;
 | 
			
		||||
 | 
			
		||||
    struct ATBMaxDateTime {
 | 
			
		||||
        int direction;
 | 
			
		||||
 
 | 
			
		||||
@@ -8,5 +8,9 @@ public:
 | 
			
		||||
	int pedwt_period_exc_day_id;
 | 
			
		||||
	std::string pedwt_time_from;
 | 
			
		||||
	std::string pedwt_time_to;
 | 
			
		||||
	double pedwt_price;
 | 
			
		||||
};
 | 
			
		||||
    double pedwt_price;
 | 
			
		||||
    int pedwt_paid; // 00: not paid (i.e. free)
 | 
			
		||||
                    // 01: not paid in winter term, piad in summer term
 | 
			
		||||
                    // 10: paid in winter term, not paid in summer term
 | 
			
		||||
                    // 11: paid in winter and in summer term
 | 
			
		||||
};
 | 
			
		||||
 
 | 
			
		||||
@@ -3,6 +3,80 @@
 | 
			
		||||
 | 
			
		||||
#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 week {
 | 
			
		||||
        int day;
 | 
			
		||||
@@ -15,6 +89,19 @@ struct ATBCarryOver {
 | 
			
		||||
 | 
			
		||||
    int id;
 | 
			
		||||
 | 
			
		||||
    explicit ATBCarryOver()
 | 
			
		||||
      : id(-1) {
 | 
			
		||||
 | 
			
		||||
        for (int i = 0 ; i < 8; ++i) {
 | 
			
		||||
            carryover[i].day = -1;
 | 
			
		||||
            carryover[i].seemless = false;
 | 
			
		||||
            carryover[i].never = false;
 | 
			
		||||
            carryover[i].static_start = QTime(23, 59, 59);
 | 
			
		||||
            carryover[i].static_end = QTime(0, 0, 0);
 | 
			
		||||
            carryover[i].duration = -1;
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    friend QDebug operator<<(QDebug debug, ATBCarryOver const &co) {
 | 
			
		||||
        QDebugStateSaver saver(debug);
 | 
			
		||||
 | 
			
		||||
@@ -31,21 +118,21 @@ struct ATBCarryOver {
 | 
			
		||||
            << "                day: " << co.carryover[(int)Qt::Tuesday].day << "\n"
 | 
			
		||||
            << "       static_start: " << co.carryover[(int)Qt::Tuesday].static_start.toString(Qt::ISODate) << "\n"
 | 
			
		||||
            << "         static_end: " << co.carryover[(int)Qt::Tuesday].static_end.toString(Qt::ISODate) << "\n"
 | 
			
		||||
            << "           duration: " << co.carryover[(int)Qt::Monday].duration << "\n"
 | 
			
		||||
            << "           duration: " << co.carryover[(int)Qt::Tuesday].duration << "\n"
 | 
			
		||||
            << "            anytime: " << co.carryover[(int)Qt::Tuesday].seemless << "\n"
 | 
			
		||||
            << "              never: " << co.carryover[(int)Qt::Tuesday].never << "\n"
 | 
			
		||||
            << "        **** Wednesday **** \n"
 | 
			
		||||
            << "                day: " << co.carryover[(int)Qt::Wednesday].day << "\n"
 | 
			
		||||
            << "       static_start: " << co.carryover[(int)Qt::Wednesday].static_start.toString(Qt::ISODate) << "\n"
 | 
			
		||||
            << "         static_end: " << co.carryover[(int)Qt::Wednesday].static_end.toString(Qt::ISODate) << "\n"
 | 
			
		||||
            << "           duration: " << co.carryover[(int)Qt::Monday].duration << "\n"
 | 
			
		||||
            << "           duration: " << co.carryover[(int)Qt::Wednesday].duration << "\n"
 | 
			
		||||
            << "            anytime: " << co.carryover[(int)Qt::Wednesday].seemless << "\n"
 | 
			
		||||
            << "              never: " << co.carryover[(int)Qt::Wednesday].never << "\n"
 | 
			
		||||
            << "        **** Thursday **** \n"
 | 
			
		||||
            << "                day: " << co.carryover[(int)Qt::Thursday].day << "\n"
 | 
			
		||||
            << "       static_start: " << co.carryover[(int)Qt::Thursday].static_start.toString(Qt::ISODate) << "\n"
 | 
			
		||||
            << "         static_end: " << co.carryover[(int)Qt::Thursday].static_end.toString(Qt::ISODate) << "\n"
 | 
			
		||||
            << "           duration: " << co.carryover[(int)Qt::Monday].duration << "\n"
 | 
			
		||||
            << "           duration: " << co.carryover[(int)Qt::Thursday].duration << "\n"
 | 
			
		||||
            << "            anytime: " << co.carryover[(int)Qt::Thursday].seemless << "\n"
 | 
			
		||||
            << "              never: " << co.carryover[(int)Qt::Thursday].never << "\n"
 | 
			
		||||
            << "        **** Friday **** \n"
 | 
			
		||||
@@ -58,14 +145,14 @@ struct ATBCarryOver {
 | 
			
		||||
            << "                day: " << co.carryover[(int)Qt::Saturday].day << "\n"
 | 
			
		||||
            << "       static_start: " << co.carryover[(int)Qt::Saturday].static_start.toString(Qt::ISODate) << "\n"
 | 
			
		||||
            << "         static_end: " << co.carryover[(int)Qt::Saturday].static_end.toString(Qt::ISODate) << "\n"
 | 
			
		||||
            << "           duration: " << co.carryover[(int)Qt::Monday].duration << "\n"
 | 
			
		||||
            << "           duration: " << co.carryover[(int)Qt::Saturday].duration << "\n"
 | 
			
		||||
            << "            anytime: " << co.carryover[(int)Qt::Saturday].seemless << "\n"
 | 
			
		||||
            << "              never: " << co.carryover[(int)Qt::Saturday].never << "\n"
 | 
			
		||||
            << "        **** Sunday **** \n"
 | 
			
		||||
            << "                day: " << co.carryover[(int)Qt::Sunday].day << "\n"
 | 
			
		||||
            << "       static_start: " << co.carryover[(int)Qt::Sunday].static_start.toString(Qt::ISODate) << "\n"
 | 
			
		||||
            << "         static_end: " << co.carryover[(int)Qt::Sunday].static_end.toString(Qt::ISODate) << "\n"
 | 
			
		||||
            << "           duration: " << co.carryover[(int)Qt::Monday].duration << "\n"
 | 
			
		||||
            << "           duration: " << co.carryover[(int)Qt::Sunday].duration << "\n"
 | 
			
		||||
            << "            anytime: " << co.carryover[(int)Qt::Sunday].seemless << "\n"
 | 
			
		||||
            << "              never: " << co.carryover[(int)Qt::Sunday].never << "\n";
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										69
									
								
								library/include/mobilisis/tariff_carryover_settings.h
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										69
									
								
								library/include/mobilisis/tariff_carryover_settings.h
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,69 @@
 | 
			
		||||
#ifndef ATB_TARIFF_CARRYOVER_SETTINGS_H_INCLUDED
 | 
			
		||||
#define ATB_TARIFF_CARRYOVER_SETTINGS_H_INCLUDED
 | 
			
		||||
 | 
			
		||||
#include <QDebug>
 | 
			
		||||
#include <QDateTime>
 | 
			
		||||
 | 
			
		||||
#include <functional>
 | 
			
		||||
 | 
			
		||||
struct ATBTariffCarryOverSettings {
 | 
			
		||||
 | 
			
		||||
    // parking time limit not violated: return false, otherwise: return true.
 | 
			
		||||
    using ParkingTimeLimitChecker = std::function<bool(ATBTariffCarryOverSettings const&,
 | 
			
		||||
                                                       QDateTime const &startTime,
 | 
			
		||||
                                                       QDateTime const &endTime,
 | 
			
		||||
                                                       int paymentOptionIndex)>;
 | 
			
		||||
 | 
			
		||||
    int m_duration;
 | 
			
		||||
    QTime m_start;
 | 
			
		||||
    QTime m_end;
 | 
			
		||||
    ParkingTimeLimitChecker m_parkingTimeLimitChecker;
 | 
			
		||||
 | 
			
		||||
    QTime m_parking_time_limit;
 | 
			
		||||
    QTime m_about_to_exceed_parking_time_limit;
 | 
			
		||||
 | 
			
		||||
    explicit ATBTariffCarryOverSettings()
 | 
			
		||||
      : m_duration(0)
 | 
			
		||||
      , m_start(QTime())
 | 
			
		||||
      , m_end(QTime())
 | 
			
		||||
      , m_parkingTimeLimitChecker([](ATBTariffCarryOverSettings const&,
 | 
			
		||||
                                  QDateTime const&, QDateTime const&, int) { return false; })
 | 
			
		||||
      , m_parking_time_limit(QTime())
 | 
			
		||||
      , m_about_to_exceed_parking_time_limit(QTime()) {}
 | 
			
		||||
 | 
			
		||||
    explicit ATBTariffCarryOverSettings(int duration, QTime const &start,
 | 
			
		||||
                                        QTime const &end,
 | 
			
		||||
                                        QTime const &parking_time_limit,
 | 
			
		||||
                                        QTime const &about_to_exceed_parking_time_limit,
 | 
			
		||||
                                        ParkingTimeLimitChecker parkingTimeLimitChecker)
 | 
			
		||||
      : m_duration(duration)
 | 
			
		||||
      , m_start(start)
 | 
			
		||||
      , m_end(end)
 | 
			
		||||
      , m_parkingTimeLimitChecker(std::move(parkingTimeLimitChecker))
 | 
			
		||||
      , m_parking_time_limit(parking_time_limit)
 | 
			
		||||
      , m_about_to_exceed_parking_time_limit(about_to_exceed_parking_time_limit) {
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    bool parkingTimeLimitExceeded(QDateTime const &startTime,
 | 
			
		||||
                                  QDateTime const &endTime,
 | 
			
		||||
                                  int paymentOptionIndex) const {
 | 
			
		||||
        return m_parkingTimeLimitChecker(*this, startTime, endTime, paymentOptionIndex);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    QTime const &parkingTimeLimit() const { return m_parking_time_limit; }
 | 
			
		||||
    QTime &parkingTimeLimit() { return m_parking_time_limit; }
 | 
			
		||||
 | 
			
		||||
    friend QDebug operator<<(QDebug debug, ATBTariffCarryOverSettings const &co) {
 | 
			
		||||
        QDebugStateSaver saver(debug);
 | 
			
		||||
 | 
			
		||||
        debug.nospace()
 | 
			
		||||
            << "                 duration: " << co.m_duration << "\n"
 | 
			
		||||
            << "                    start: " << co.m_start.toString(Qt::ISODate) << "\n"
 | 
			
		||||
            << "                      end: " << co.m_end.toString(Qt::ISODate) << "\n"
 | 
			
		||||
            << "       parking_time_limit: " << co.m_parking_time_limit.toString(Qt::ISODate) << endl;
 | 
			
		||||
 | 
			
		||||
        return debug;
 | 
			
		||||
    }
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
#endif // ATB_TARIFF_CARRYOVER_SETTINGS_H_INCLUDED
 | 
			
		||||
@@ -1,4 +1,3 @@
 | 
			
		||||
#pragma once
 | 
			
		||||
#include <variant>
 | 
			
		||||
#include <cstddef>
 | 
			
		||||
#include <stdio.h>
 | 
			
		||||
 
 | 
			
		||||
@@ -14,6 +14,8 @@
 | 
			
		||||
void setDebugLevel(int level);
 | 
			
		||||
int getDebugLevel();
 | 
			
		||||
 | 
			
		||||
#if 0
 | 
			
		||||
 | 
			
		||||
static void print() {
 | 
			
		||||
    std::cerr << "\n";
 | 
			
		||||
    if (getDebugLevel() == DBG_LEVEL_FATAL) {
 | 
			
		||||
@@ -75,4 +77,6 @@ static void LOG_FATAL(const Arg1& arg1, const Args&&... args) {
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#endif //  TARIFF_LOG_INCLUDED_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,17 +1,114 @@
 | 
			
		||||
#ifndef TARIFF_PREPAID_H_INCLUDED
 | 
			
		||||
#define TARIFF_PREPAID_H_INCLUDED
 | 
			
		||||
 | 
			
		||||
#include <QTime>
 | 
			
		||||
#include <QDateTime>
 | 
			
		||||
#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 {
 | 
			
		||||
    explicit ATBPrepaid() = default;
 | 
			
		||||
    int id;
 | 
			
		||||
    bool anytime;
 | 
			
		||||
    bool never;
 | 
			
		||||
    QTime static_start;
 | 
			
		||||
    QTime static_end;
 | 
			
		||||
 | 
			
		||||
    struct week {
 | 
			
		||||
        int day;
 | 
			
		||||
        QTime static_start;
 | 
			
		||||
        QTime static_end;
 | 
			
		||||
        int duration;
 | 
			
		||||
    } prepaid[8];
 | 
			
		||||
 | 
			
		||||
    explicit ATBPrepaid()
 | 
			
		||||
      : id(-1)
 | 
			
		||||
      , anytime(false)
 | 
			
		||||
      , never(false)
 | 
			
		||||
      , static_start(QTime(23, 59, 59))
 | 
			
		||||
      , static_end(QTime(0, 0, 0)) {
 | 
			
		||||
 | 
			
		||||
        for (int i = 0 ; i < 8; ++i) {
 | 
			
		||||
            prepaid[i].day = -1;
 | 
			
		||||
            prepaid[i].static_start = QTime(23, 59, 59);
 | 
			
		||||
            prepaid[i].static_end = QTime(0, 0, 0);
 | 
			
		||||
            prepaid[i].duration = -1;
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    friend QDebug operator<<(QDebug debug, ATBPrepaid const &pp) {
 | 
			
		||||
        QDebugStateSaver saver(debug);
 | 
			
		||||
 | 
			
		||||
@@ -20,7 +117,41 @@ struct ATBPrepaid {
 | 
			
		||||
            << "       static_start: " << pp.static_start.toString(Qt::ISODate) << "\n"
 | 
			
		||||
            << "         static_end: " << pp.static_end.toString(Qt::ISODate) << "\n"
 | 
			
		||||
            << "            anytime: " << pp.anytime << "\n"
 | 
			
		||||
            << "              never: " << pp.never << "\n";
 | 
			
		||||
            << "              never: " << pp.never << "\n"
 | 
			
		||||
            << "        **** Monday **** \n"
 | 
			
		||||
            << "                day: " << pp.prepaid[(int)Qt::Monday].day << "\n"
 | 
			
		||||
            << "       static_start: " << pp.prepaid[(int)Qt::Monday].static_start.toString(Qt::ISODate) << "\n"
 | 
			
		||||
            << "         static_end: " << pp.prepaid[(int)Qt::Monday].static_end.toString(Qt::ISODate) << "\n"
 | 
			
		||||
            << "           duration: " << pp.prepaid[(int)Qt::Monday].duration << "\n"
 | 
			
		||||
            << "        **** Tuesday **** \n"
 | 
			
		||||
            << "                day: " << pp.prepaid[(int)Qt::Tuesday].day << "\n"
 | 
			
		||||
            << "       static_start: " << pp.prepaid[(int)Qt::Tuesday].static_start.toString(Qt::ISODate) << "\n"
 | 
			
		||||
            << "         static_end: " << pp.prepaid[(int)Qt::Tuesday].static_end.toString(Qt::ISODate) << "\n"
 | 
			
		||||
            << "           duration: " << pp.prepaid[(int)Qt::Tuesday].duration << "\n"
 | 
			
		||||
            << "        **** Wednesday **** \n"
 | 
			
		||||
            << "                day: " << pp.prepaid[(int)Qt::Wednesday].day << "\n"
 | 
			
		||||
            << "       static_start: " << pp.prepaid[(int)Qt::Wednesday].static_start.toString(Qt::ISODate) << "\n"
 | 
			
		||||
            << "         static_end: " << pp.prepaid[(int)Qt::Wednesday].static_end.toString(Qt::ISODate) << "\n"
 | 
			
		||||
            << "           duration: " << pp.prepaid[(int)Qt::Wednesday].duration << "\n"
 | 
			
		||||
            << "        **** Thursday **** \n"
 | 
			
		||||
            << "                day: " << pp.prepaid[(int)Qt::Thursday].day << "\n"
 | 
			
		||||
            << "       static_start: " << pp.prepaid[(int)Qt::Thursday].static_start.toString(Qt::ISODate) << "\n"
 | 
			
		||||
            << "         static_end: " << pp.prepaid[(int)Qt::Thursday].static_end.toString(Qt::ISODate) << "\n"
 | 
			
		||||
            << "           duration: " << pp.prepaid[(int)Qt::Thursday].duration << "\n"
 | 
			
		||||
            << "        **** Friday **** \n"
 | 
			
		||||
            << "                day: " << pp.prepaid[(int)Qt::Friday].day << "\n"
 | 
			
		||||
            << "       static_start: " << pp.prepaid[(int)Qt::Friday].static_start.toString(Qt::ISODate) << "\n"
 | 
			
		||||
            << "         static_end: " << pp.prepaid[(int)Qt::Friday].static_end.toString(Qt::ISODate) << "\n"
 | 
			
		||||
            << "        **** Saturday **** \n"
 | 
			
		||||
            << "                day: " << pp.prepaid[(int)Qt::Saturday].day << "\n"
 | 
			
		||||
            << "       static_start: " << pp.prepaid[(int)Qt::Saturday].static_start.toString(Qt::ISODate) << "\n"
 | 
			
		||||
            << "         static_end: " << pp.prepaid[(int)Qt::Saturday].static_end.toString(Qt::ISODate) << "\n"
 | 
			
		||||
            << "           duration: " << pp.prepaid[(int)Qt::Saturday].duration << "\n"
 | 
			
		||||
            << "        **** Sunday **** \n"
 | 
			
		||||
            << "                day: " << pp.prepaid[(int)Qt::Sunday].day << "\n"
 | 
			
		||||
            << "       static_start: " << pp.prepaid[(int)Qt::Sunday].static_start.toString(Qt::ISODate) << "\n"
 | 
			
		||||
            << "         static_end: " << pp.prepaid[(int)Qt::Sunday].static_end.toString(Qt::ISODate) << "\n"
 | 
			
		||||
            << "           duration: " << pp.prepaid[(int)Qt::Sunday].duration << "\n";
 | 
			
		||||
 | 
			
		||||
        return debug;
 | 
			
		||||
    }
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										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
 | 
			
		||||
							
								
								
									
										40
									
								
								library/include/mobilisis/tariff_settings.h
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										40
									
								
								library/include/mobilisis/tariff_settings.h
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,40 @@
 | 
			
		||||
#ifndef ATB_TARIFF_SETTINGS_H_INCLUDED
 | 
			
		||||
#define ATB_TARIFF_SETTINGS_H_INCLUDED
 | 
			
		||||
 | 
			
		||||
#include <QDebug>
 | 
			
		||||
 | 
			
		||||
struct ATBTariffSettings {
 | 
			
		||||
    int m_max_price;
 | 
			
		||||
    int m_min_price;
 | 
			
		||||
    int m_max_time;
 | 
			
		||||
    int m_min_time;
 | 
			
		||||
 | 
			
		||||
    explicit ATBTariffSettings()
 | 
			
		||||
      : m_max_price(0)
 | 
			
		||||
      , m_min_price(0)
 | 
			
		||||
      , m_max_time(0)
 | 
			
		||||
      , m_min_time(0) {
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    explicit ATBTariffSettings(int max_price, int min_price, int max_time, int min_time)
 | 
			
		||||
      : m_max_price(max_price)
 | 
			
		||||
      , m_min_price(min_price)
 | 
			
		||||
      , m_max_time(max_time)
 | 
			
		||||
      , m_min_time(min_time) {
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    friend QDebug operator<<(QDebug debug, ATBTariffSettings const &ts) {
 | 
			
		||||
        QDebugStateSaver saver(debug);
 | 
			
		||||
 | 
			
		||||
        debug.nospace()
 | 
			
		||||
            << "                max_price: " << ts.m_max_price << "\n"
 | 
			
		||||
            << "                min_price: " << ts.m_min_price << "\n"
 | 
			
		||||
            << "                 max_time: " << ts.m_max_time << "\n"
 | 
			
		||||
            << "                 min_time: " << ts.m_min_time << endl;
 | 
			
		||||
 | 
			
		||||
        return debug;
 | 
			
		||||
    }
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
#endif // ATB_TARIFF_SETTINGS_H_INCLUDED
 | 
			
		||||
@@ -1,12 +1,39 @@
 | 
			
		||||
#ifndef TIME_RANGE_H_INCLUDED
 | 
			
		||||
#define TIME_RANGE_H_INCLUDED
 | 
			
		||||
 | 
			
		||||
#include "time_range_header.h"
 | 
			
		||||
 | 
			
		||||
struct TimeRange {
 | 
			
		||||
public:
 | 
			
		||||
	bool IsActive;
 | 
			
		||||
	ATBTimeRange TimeRangeStructure;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
#endif // TIME_RANGE_H_INCLUDED
 | 
			
		||||
#ifndef TIME_RANGE_H_INCLUDED
 | 
			
		||||
#define TIME_RANGE_H_INCLUDED
 | 
			
		||||
 | 
			
		||||
#include "atb_time.h"
 | 
			
		||||
 | 
			
		||||
#include <QString>
 | 
			
		||||
 | 
			
		||||
struct TimeRange {
 | 
			
		||||
    ATBTime m_start;
 | 
			
		||||
    ATBTime m_end;
 | 
			
		||||
    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
 | 
			
		||||
 
 | 
			
		||||
@@ -1,10 +1,57 @@
 | 
			
		||||
#pragma once
 | 
			
		||||
#include <string>
 | 
			
		||||
#include "tariff_settings.h"
 | 
			
		||||
#include "tariff_carryover_settings.h"
 | 
			
		||||
 | 
			
		||||
class ATBWeekDays
 | 
			
		||||
{
 | 
			
		||||
public:
 | 
			
		||||
	int pdiw_id;
 | 
			
		||||
	std::string pdiw_label;
 | 
			
		||||
	int pdiw_index;
 | 
			
		||||
};
 | 
			
		||||
#include <QString>
 | 
			
		||||
#include <Qt>
 | 
			
		||||
#include <QDate>
 | 
			
		||||
 | 
			
		||||
struct ATBWeekDay {
 | 
			
		||||
    enum WeekDayType {USUAL_WEEKDAY=0, HOLIDAY=1};
 | 
			
		||||
 | 
			
		||||
    Qt::DayOfWeek m_id;
 | 
			
		||||
    QString m_name;
 | 
			
		||||
    QDate m_date;
 | 
			
		||||
    WeekDayType m_type;
 | 
			
		||||
    ATBTariffSettings m_tariffSettings;
 | 
			
		||||
    ATBTariffCarryOverSettings m_tariffCarryOverSettings;
 | 
			
		||||
 | 
			
		||||
    explicit ATBWeekDay()
 | 
			
		||||
        : m_id(Qt::Monday)
 | 
			
		||||
        , m_name("")
 | 
			
		||||
        , m_date(QDate())
 | 
			
		||||
        , m_type(USUAL_WEEKDAY)
 | 
			
		||||
        , m_tariffSettings()
 | 
			
		||||
        , m_tariffCarryOverSettings() {}
 | 
			
		||||
 | 
			
		||||
    explicit ATBWeekDay(Qt::DayOfWeek id, QString const &name, WeekDayType type,
 | 
			
		||||
                        QDate const &date,
 | 
			
		||||
                        ATBTariffSettings const &tariffSettings,
 | 
			
		||||
                        ATBTariffCarryOverSettings const &tariffCarryOverSettings)
 | 
			
		||||
        : m_id(id)
 | 
			
		||||
        , m_name(name)
 | 
			
		||||
        , m_date(date)
 | 
			
		||||
        , m_type(type)
 | 
			
		||||
        , m_tariffSettings(tariffSettings)
 | 
			
		||||
        , m_tariffCarryOverSettings(tariffCarryOverSettings) {}
 | 
			
		||||
 | 
			
		||||
    ATBTariffCarryOverSettings &getTariffCarryOverSettings() { return m_tariffCarryOverSettings; }
 | 
			
		||||
    ATBTariffCarryOverSettings const &getTariffCarryOverSettings() const { return m_tariffCarryOverSettings; }
 | 
			
		||||
 | 
			
		||||
    ATBTariffSettings &getTariffSettings() { return m_tariffSettings; }
 | 
			
		||||
    ATBTariffSettings const &getTariffSettings() const { return m_tariffSettings; }
 | 
			
		||||
 | 
			
		||||
    friend QDebug operator<<(QDebug debug, ATBWeekDay const &wd) {
 | 
			
		||||
        QDebugStateSaver saver(debug);
 | 
			
		||||
 | 
			
		||||
        debug.nospace()
 | 
			
		||||
            << "                       id: " << (int)wd.m_id << "\n"
 | 
			
		||||
            << "                     name: " << wd.m_name << "\n"
 | 
			
		||||
            << "                     type: " << (int)wd.m_type << "\n\n"
 | 
			
		||||
            << "          tariff settings: " << "\n"
 | 
			
		||||
                                             << wd.m_tariffSettings << "\n"
 | 
			
		||||
            << "tariff carryover settings: " << "\n"
 | 
			
		||||
                                             << wd.m_tariffCarryOverSettings << endl;
 | 
			
		||||
 | 
			
		||||
        return debug;
 | 
			
		||||
    }
 | 
			
		||||
};
 | 
			
		||||
 
 | 
			
		||||
@@ -35,7 +35,8 @@ SOURCES += \
 | 
			
		||||
    src/tariff_log.cpp \
 | 
			
		||||
    src/calculate_price.cpp \
 | 
			
		||||
    src/ticket.cpp \
 | 
			
		||||
    src/tariff_global_defines.cpp
 | 
			
		||||
    src/tariff_global_defines.cpp \
 | 
			
		||||
    src/atb_time.cpp
 | 
			
		||||
 | 
			
		||||
HEADERS += \
 | 
			
		||||
	include/mobilisis/calculator_functions.h \
 | 
			
		||||
@@ -89,7 +90,10 @@ HEADERS += \
 | 
			
		||||
    include/mobilisis/tariff_interpolation.h \
 | 
			
		||||
    include/mobilisis/tariff_prepaid.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 \
 | 
			
		||||
    ../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::OVERPAID = "OVERPAID";
 | 
			
		||||
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) {
 | 
			
		||||
    return Calculator::GetInstance().GetTimeSteps(cfg);
 | 
			
		||||
@@ -36,7 +37,10 @@ int CALCULATE_LIBRARY_API get_minimal_parkingtime(Configuration const *cfg,
 | 
			
		||||
                                                  int paymentOptionIndex) {
 | 
			
		||||
    int minTime = 0;
 | 
			
		||||
 | 
			
		||||
    paymentOptionIndex = cfg->getPaymentOptionIndex(permitType);
 | 
			
		||||
    paymentOptionIndex = getPaymentOptionIndex(*cfg);
 | 
			
		||||
    if (paymentOptionIndex == -1) {
 | 
			
		||||
        paymentOptionIndex = cfg->getPaymentOptionIndex(permitType);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    qCritical() << __func__ << __LINE__ << "paymentOptionIndex" << paymentOptionIndex;
 | 
			
		||||
    qCritical() << __func__ << __LINE__ << "permit" << PermitType(permitType).toString();
 | 
			
		||||
@@ -69,7 +73,11 @@ int CALCULATE_LIBRARY_API get_maximal_parkingtime(Configuration const *cfg,
 | 
			
		||||
                                                  PERMIT_TYPE permitType,
 | 
			
		||||
                                                  int paymentOptionIndex) {
 | 
			
		||||
 | 
			
		||||
    paymentOptionIndex = cfg->getPaymentOptionIndex(permitType);
 | 
			
		||||
    paymentOptionIndex = getPaymentOptionIndex(*cfg);
 | 
			
		||||
    if (paymentOptionIndex == -1) {
 | 
			
		||||
        paymentOptionIndex = cfg->getPaymentOptionIndex(permitType);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    int maxTime = 0;
 | 
			
		||||
 | 
			
		||||
    switch(permitType) {
 | 
			
		||||
@@ -94,7 +102,10 @@ int CALCULATE_LIBRARY_API get_minimal_parkingprice(Configuration *cfg,
 | 
			
		||||
                                                   int paymentOptionIndex,
 | 
			
		||||
                                                   QDateTime const &start) {
 | 
			
		||||
    int minPrice = -1;
 | 
			
		||||
    paymentOptionIndex = cfg->getPaymentOptionIndex(permitType);
 | 
			
		||||
 | 
			
		||||
    if ((paymentOptionIndex = getPaymentOptionIndex(*cfg, start)) == -1) {
 | 
			
		||||
        paymentOptionIndex = cfg->getPaymentOptionIndex(permitType);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    int payment_method_id = cfg->getPaymentOptions(paymentOptionIndex).pop_payment_method_id;
 | 
			
		||||
 | 
			
		||||
@@ -321,12 +332,18 @@ int CALCULATE_LIBRARY_API get_maximal_parkingprice(Configuration *cfg,
 | 
			
		||||
    int maxPrice = -1;
 | 
			
		||||
    static const PaymentMethod paymentMethodId = Utilities::getPaymentMethodId(cfg);
 | 
			
		||||
 | 
			
		||||
    paymentOptionIndex = cfg->getPaymentOptionIndex(permitType);
 | 
			
		||||
    if ((paymentOptionIndex = getPaymentOptionIndex(*cfg)) == -1) {
 | 
			
		||||
        paymentOptionIndex = cfg->getPaymentOptionIndex(permitType);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    switch(permitType) {
 | 
			
		||||
    case PERMIT_TYPE::SHORT_TERM_PARKING: { // e.g. szeged (customer_281)
 | 
			
		||||
        if (paymentMethodId == PaymentMethod::Progressive || paymentMethodId == PaymentMethod::Steps) {
 | 
			
		||||
            maxPrice = Utilities::getMaximalParkingPrice(cfg, paymentMethodId);
 | 
			
		||||
        if (paymentMethodId == PaymentMethod::Progressive
 | 
			
		||||
         || paymentMethodId == PaymentMethod::Steps
 | 
			
		||||
         || paymentMethodId == PaymentMethod::Unified) {
 | 
			
		||||
            //maxPrice = Utilities::getMaximalParkingPrice(cfg, paymentMethodId);
 | 
			
		||||
            ATBPaymentOption const &po = cfg->getPaymentOptions(paymentOptionIndex);
 | 
			
		||||
            maxPrice = po.pop_max_price; // maxTime is given in minutes
 | 
			
		||||
        } else { // PaymentMethod::Linear -> e.g. szeged
 | 
			
		||||
            int const key = cfg->getPaymentOptions(paymentOptionIndex).pop_id;
 | 
			
		||||
            int const maxTime = cfg->getPaymentOptions(paymentOptionIndex).pop_max_time; // maxTime is given in minutes
 | 
			
		||||
@@ -467,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() 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
 | 
			
		||||
    //std::optional<ATBPaymentOption> paymentOption = tariff->getPaymentOptionForKey(permitType.get());
 | 
			
		||||
    //if (!paymentOption.has_value()) {
 | 
			
		||||
@@ -474,7 +500,11 @@ int CALCULATE_LIBRARY_API compute_next_timestep(parking_tariff_t *tariff, int cu
 | 
			
		||||
    //    return currentTimeMinutes;
 | 
			
		||||
    //}
 | 
			
		||||
 | 
			
		||||
    int const paymentOptionIndex = tariff->getPaymentOptionIndex(permitType);
 | 
			
		||||
    int paymentOptionIndex = getPaymentOptionIndex(*tariff);
 | 
			
		||||
    if (paymentOptionIndex == -1) {
 | 
			
		||||
        paymentOptionIndex = tariff->getPaymentOptionIndex(permitType);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    int const &pop_plus_steps = tariff->getPaymentOptions(paymentOptionIndex).pop_plus_steps;
 | 
			
		||||
    int const &pop_minus_steps = tariff->getPaymentOptions(paymentOptionIndex).pop_minus_steps;
 | 
			
		||||
 | 
			
		||||
@@ -499,6 +529,9 @@ int CALCULATE_LIBRARY_API compute_next_timestep(parking_tariff_t *tariff, int cu
 | 
			
		||||
    case PaymentMethod::Steps:
 | 
			
		||||
        qCritical() << __LINE__ << "compute_next_timestep() paymentMethodId: Steps";
 | 
			
		||||
        break;
 | 
			
		||||
    case PaymentMethod::Unified:
 | 
			
		||||
        qCritical() << __LINE__ << "compute_next_timestep() paymentMethodId: Unified";
 | 
			
		||||
        break;
 | 
			
		||||
    case PaymentMethod::Undefined:
 | 
			
		||||
        qCritical() << __LINE__ << "compute_next_timestep() paymentMethodId: Undefined";
 | 
			
		||||
        break;
 | 
			
		||||
@@ -509,6 +542,8 @@ int CALCULATE_LIBRARY_API compute_next_timestep(parking_tariff_t *tariff, int cu
 | 
			
		||||
    if ((paymentMethodId == PaymentMethod::Steps) ||
 | 
			
		||||
        // progressive tariff: e.g. Neuhauser, Kirchdorf (743)
 | 
			
		||||
        (paymentMethodId == PaymentMethod::Progressive) ||
 | 
			
		||||
        // unified tariff: starting with Bad Neuenahr (249), Tariff for Zone5
 | 
			
		||||
        (paymentMethodId == PaymentMethod::Unified) ||
 | 
			
		||||
        // degressive tariff: e.g. Fuchs Technik (500)
 | 
			
		||||
        (paymentMethodId == PaymentMethod::Degressive))
 | 
			
		||||
    {
 | 
			
		||||
@@ -539,7 +574,7 @@ int CALCULATE_LIBRARY_API compute_next_timestep(parking_tariff_t *tariff, int cu
 | 
			
		||||
                }
 | 
			
		||||
            }
 | 
			
		||||
            // max. tolerance set to 3 minutes
 | 
			
		||||
            unsigned const tolerance = std::min(minimalDistance, (unsigned)(3));
 | 
			
		||||
            // unsigned const tolerance = std::min(minimalDistance, (unsigned)(3));
 | 
			
		||||
            if (j != -1) {
 | 
			
		||||
                stepList[j] = currentTimeMinutes;
 | 
			
		||||
            }
 | 
			
		||||
@@ -654,7 +689,21 @@ CalcState CALCULATE_LIBRARY_API compute_price_for_parking_ticket(
 | 
			
		||||
 | 
			
		||||
    CalcState calcState;
 | 
			
		||||
 | 
			
		||||
    int const paymentOptionIndex = tariff->getPaymentOptionIndex(permitType.get());
 | 
			
		||||
    QDate const d(1970, 1, 1);
 | 
			
		||||
    QTime const t(0, 0, 0);
 | 
			
		||||
    QDateTime start(d, t, Qt::UTC);
 | 
			
		||||
    start = start.toLocalTime().addSecs(start_parking_time * 60);
 | 
			
		||||
    QDateTime end(start);
 | 
			
		||||
 | 
			
		||||
    int paymentOptionIndex = getPaymentOptionIndex(*tariff, start);
 | 
			
		||||
    if (paymentOptionIndex == -1) {
 | 
			
		||||
        paymentOptionIndex = tariff->getPaymentOptionIndex(permitType.get());
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    qCritical() << __func__ << ":" << __LINE__ << "pop_max_price" << tariff->getPaymentOptions(paymentOptionIndex).pop_max_price;
 | 
			
		||||
 | 
			
		||||
    tariff->getPaymentOptions(paymentOptionIndex).pop_max_price
 | 
			
		||||
        = tariff->getPaymentOptions(paymentOptionIndex).pop_max_price_save;
 | 
			
		||||
 | 
			
		||||
    double minMin = tariff->PaymentOption.find(tariff->getPaymentOptions(paymentOptionIndex).pop_payment_method_id)->second.pop_min_time;
 | 
			
		||||
    double maxMin = tariff->PaymentOption.find(tariff->getPaymentOptions(paymentOptionIndex).pop_payment_method_id)->second.pop_max_time;
 | 
			
		||||
@@ -682,11 +731,11 @@ CalcState CALCULATE_LIBRARY_API compute_price_for_parking_ticket(
 | 
			
		||||
        return calcState.set(CalcState::State::SUCCESS);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    QDate const d(1970, 1, 1);
 | 
			
		||||
    QTime const t(0, 0, 0);
 | 
			
		||||
    QDateTime start(d, t, Qt::UTC);
 | 
			
		||||
    start = start.toLocalTime().addSecs(start_parking_time * 60);
 | 
			
		||||
    QDateTime end(start);
 | 
			
		||||
    //QDate const d(1970, 1, 1);
 | 
			
		||||
    //QTime const t(0, 0, 0);
 | 
			
		||||
    //QDateTime start(d, t, Qt::UTC);
 | 
			
		||||
    //start = start.toLocalTime().addSecs(start_parking_time * 60);
 | 
			
		||||
    //QDateTime end(start);
 | 
			
		||||
    if (start.isValid()) {
 | 
			
		||||
        double cost = Calculator::GetInstance().GetCostFromDuration(
 | 
			
		||||
                    tariff,
 | 
			
		||||
@@ -721,7 +770,13 @@ CalcState CALCULATE_LIBRARY_API compute_price_for_parking_ticket(
 | 
			
		||||
 | 
			
		||||
    QDateTime start_parking_time(start_parking_time_);
 | 
			
		||||
 | 
			
		||||
    int paymentOptionIndex = tariff->getPaymentOptionIndex(permitType);
 | 
			
		||||
    int paymentOptionIndex = getPaymentOptionIndex(*tariff, start_parking_time);
 | 
			
		||||
    if (paymentOptionIndex == -1) {
 | 
			
		||||
        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 maxMin = tariff->getPaymentOptions(paymentOptionIndex).pop_max_time;
 | 
			
		||||
@@ -776,51 +831,168 @@ CalcState CALCULATE_LIBRARY_API compute_price_for_parking_ticket(
 | 
			
		||||
 | 
			
		||||
            int weekDay = start_parking_time.date().dayOfWeek();
 | 
			
		||||
            int pop_carry_over_option_id = tariff->getPaymentOptions(paymentOptionIndex).pop_carry_over_option_id;
 | 
			
		||||
            qCritical() << __func__ << __LINE__ << "configured carry-over-id" << pop_carry_over_option_id;
 | 
			
		||||
            int pop_prepaid_option_id = tariff->getPaymentOptions(paymentOptionIndex).pop_prepaid_option_id;
 | 
			
		||||
 | 
			
		||||
            std::optional<ATBPeriodYear> yperiod = Utilities::GetYearPeriodActive(tariff, start_parking_time);
 | 
			
		||||
            int period_id = -1;
 | 
			
		||||
            if (yperiod.has_value()) {
 | 
			
		||||
                ATBPeriodYear const &period = yperiod.value();
 | 
			
		||||
                period_id = period.pye_id;
 | 
			
		||||
                pop_carry_over_option_id = period.pye_id;
 | 
			
		||||
                qCritical() << __func__ << __LINE__ << "re-computed carry-over-id" << pop_carry_over_option_id;
 | 
			
		||||
                pop_prepaid_option_id = period.pye_id;
 | 
			
		||||
                qCritical() << __func__ << ":" << __LINE__ << "re-computed carry-over-id" << pop_carry_over_option_id;
 | 
			
		||||
                qCritical() << __func__ << ":" << __LINE__ << "   re-computed prepaid-id" << pop_prepaid_option_id;
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            QTime const carryOverStart = tariff->TariffCarryOverOptions.find(pop_carry_over_option_id)->second.carryover[weekDay].static_start;
 | 
			
		||||
            int const carryOverDuration = tariff->TariffCarryOverOptions.find(pop_carry_over_option_id)->second.carryover[weekDay].duration;
 | 
			
		||||
            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;
 | 
			
		||||
            qCritical() << __func__ << ":" << __LINE__ << "   carryOverStart" << carryOverStart.toString(Qt::ISODate);
 | 
			
		||||
            qCritical() << __func__ << ":" << __LINE__ << "carryOverDuration" << carryOverDuration;
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
            QDateTime effectiveStartTime(start_parking_time);
 | 
			
		||||
 | 
			
		||||
            // handle special days
 | 
			
		||||
            int const specialDayId = tariff->specialDayId(start_parking_time);
 | 
			
		||||
            if (specialDayId > 0) { // found special day
 | 
			
		||||
                for (auto[itr, rangeEnd] = tariff->SpecialDaysWorktime.equal_range(specialDayId); itr != rangeEnd; ++itr) {
 | 
			
		||||
                    ATBSpecialDaysWorktime const &wt = itr->second;
 | 
			
		||||
                    switch(period_id) {
 | 
			
		||||
                    case 1: // summer term
 | 
			
		||||
                        if ((wt.pedwt_paid & 1) == 0) {
 | 
			
		||||
                            // does not have to be paid, move to next midnight
 | 
			
		||||
 | 
			
		||||
                            // better: start of next day (falls kein vorkauf besteht)
 | 
			
		||||
                            effectiveStartTime = effectiveStartTime.addDays(1);
 | 
			
		||||
                            effectiveStartTime.setTime(QTime(0, 0, 0));
 | 
			
		||||
                        }
 | 
			
		||||
                        break;
 | 
			
		||||
                    case 2: // winter term
 | 
			
		||||
                        if ((wt.pedwt_paid & 2) == 0) {
 | 
			
		||||
                            // does not have to be paid, move to next midnight
 | 
			
		||||
 | 
			
		||||
                            // better: start of next day (falls kein vorkauf besteht)
 | 
			
		||||
                            effectiveStartTime = effectiveStartTime.addDays(1);
 | 
			
		||||
                            effectiveStartTime.setTime(QTime(0, 0, 0));
 | 
			
		||||
                        }
 | 
			
		||||
                        break;
 | 
			
		||||
                    default:;
 | 
			
		||||
                    }
 | 
			
		||||
                }
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            // handle prepaid option
 | 
			
		||||
            QDateTime effectiveStartTime(start_parking_time);
 | 
			
		||||
            int const prepaid_option_id = tariff->getPaymentOptions(paymentOptionIndex).pop_prepaid_option_id;
 | 
			
		||||
            std::optional<ATBPrepaid> prepaidOption = tariff->getPrepaidType(prepaid_option_id);
 | 
			
		||||
            if (prepaidOption.has_value()) {
 | 
			
		||||
                ATBPrepaid const &p = prepaidOption.value();
 | 
			
		||||
                if (p.never) {
 | 
			
		||||
                    qCritical() << __func__ << __LINE__ << "prepaid: no";
 | 
			
		||||
                    qCritical() << __func__ << ":" << __LINE__ << "prepaid: no";
 | 
			
		||||
                } else {
 | 
			
		||||
                    if (start_parking_time.time() < p.static_end) {     // static_end: e.g. 08:00:00
 | 
			
		||||
                        effectiveStartTime.setTime(p.static_end);
 | 
			
		||||
                    qCritical() << __func__ << ":" << __LINE__ << "    prepaidStart" << p.prepaid[weekDay].static_start.toString(Qt::ISODate);
 | 
			
		||||
                    qCritical() << __func__ << ":" << __LINE__ << "      prepaidEnd" << p.prepaid[weekDay].static_end.toString(Qt::ISODate);
 | 
			
		||||
                    qCritical() << __func__ << ":" << __LINE__ << "prepaid duration" << p.prepaid[weekDay].duration;
 | 
			
		||||
 | 
			
		||||
                    if (start_parking_time.time() < p.prepaid[weekDay].static_end) {     // static_end: e.g. 08:00:00
 | 
			
		||||
                        effectiveStartTime.setTime(p.prepaid[weekDay].static_end);
 | 
			
		||||
                    } else
 | 
			
		||||
                    if (start_parking_time.time() > p.static_start) {   // static_start: e.g. 22:00:00
 | 
			
		||||
                        effectiveStartTime.setTime(p.static_start);
 | 
			
		||||
                    if (start_parking_time.time() > p.prepaid[weekDay].static_start) {   // static_start: e.g. 22:00:00
 | 
			
		||||
                        effectiveStartTime.setTime(p.prepaid[weekDay].static_start);
 | 
			
		||||
                    }
 | 
			
		||||
                }
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            // handle carry over
 | 
			
		||||
            int minutesUntilCarryOver = effectiveStartTime.time().secsTo(carryOverStart) / 60;
 | 
			
		||||
            if (netto_parking_time > minutesUntilCarryOver) {
 | 
			
		||||
                int const rest = netto_parking_time - minutesUntilCarryOver;
 | 
			
		||||
                QDateTime s(effectiveStartTime);
 | 
			
		||||
                s = s.addSecs(minutesUntilCarryOver * 60);
 | 
			
		||||
                s = s.addSecs(carryOverDuration * 60);
 | 
			
		||||
                end_parking_time = s.addSecs(rest * 60);
 | 
			
		||||
            effectiveStartTime.setTime(QTime(effectiveStartTime.time().hour(),
 | 
			
		||||
                                             effectiveStartTime.time().minute(), 0));
 | 
			
		||||
 | 
			
		||||
            qCritical() << __func__ << ":" << __LINE__ << "effectiveStartTime:" << effectiveStartTime.toString(Qt::ISODate);
 | 
			
		||||
 | 
			
		||||
            int const carryOver = tariff->getPaymentOptions(paymentOptionIndex).pop_carry_over;
 | 
			
		||||
 | 
			
		||||
            qCritical() << __func__ << ":" << __LINE__ << "   carryOver flag" << carryOver;
 | 
			
		||||
 | 
			
		||||
            if (carryOver == 1) {
 | 
			
		||||
                QTime carryOverStart = tariff->TariffCarryOverOptions.find(pop_carry_over_option_id)->second.carryover[weekDay].static_start;
 | 
			
		||||
                int carryOverDuration = tariff->TariffCarryOverOptions.find(pop_carry_over_option_id)->second.carryover[weekDay].duration;
 | 
			
		||||
 | 
			
		||||
                qCritical() << __func__ << ":" << __LINE__ << "   carryOverStart" << carryOverStart.toString(Qt::ISODate);
 | 
			
		||||
                qCritical() << __func__ << ":" << __LINE__ << "carryOverDuration" << carryOverDuration;
 | 
			
		||||
 | 
			
		||||
                // handle carry over
 | 
			
		||||
                int minutesUntilCarryOver = effectiveStartTime.time().secsTo(carryOverStart) / 60;
 | 
			
		||||
                if ((minutesUntilCarryOver > 0) && (netto_parking_time > minutesUntilCarryOver)) {
 | 
			
		||||
                    int const rest = netto_parking_time - minutesUntilCarryOver;
 | 
			
		||||
                    QDateTime s(effectiveStartTime);
 | 
			
		||||
                    s = s.addSecs(minutesUntilCarryOver * 60);
 | 
			
		||||
                    s = s.addSecs(carryOverDuration * 60);
 | 
			
		||||
                    end_parking_time = s.addSecs(rest * 60);
 | 
			
		||||
                } else {
 | 
			
		||||
                    end_parking_time = effectiveStartTime.addSecs(netto_parking_time*60);
 | 
			
		||||
                }
 | 
			
		||||
 | 
			
		||||
                qCritical() << __func__ << ":" << __LINE__ << "end-parking-time:" << end_parking_time.toString(Qt::ISODate);
 | 
			
		||||
 | 
			
		||||
                weekDay = end_parking_time.date().dayOfWeek();
 | 
			
		||||
 | 
			
		||||
                // musste man in einer schleife machen
 | 
			
		||||
                carryOverStart = tariff->TariffCarryOverOptions.find(pop_carry_over_option_id)->second.carryover[weekDay].static_start;
 | 
			
		||||
                carryOverDuration = tariff->TariffCarryOverOptions.find(pop_carry_over_option_id)->second.carryover[weekDay].duration;
 | 
			
		||||
 | 
			
		||||
                if (end_parking_time.time() > carryOverStart) {
 | 
			
		||||
                    end_parking_time = end_parking_time.addSecs(carryOverDuration * 60);
 | 
			
		||||
                } else
 | 
			
		||||
                if (end_parking_time.time() == carryOverStart) {
 | 
			
		||||
                    qCritical() << __func__ << ":" << __LINE__ << "end-parking-time:" << end_parking_time.toString(Qt::ISODate);
 | 
			
		||||
                    qCritical() << __func__ << ":" << __LINE__ << "   carryOverStart" << carryOverStart.toString(Qt::ISODate);
 | 
			
		||||
                    ATBPaymentOption const &po = tariff->getPaymentOptions(paymentOptionIndex);
 | 
			
		||||
                    if (po.pop_apply_carry_over_to_ticket_endtime) {
 | 
			
		||||
                        end_parking_time = end_parking_time.addSecs(carryOverDuration * 60);
 | 
			
		||||
                        qCritical() << __func__ << ":" << __LINE__ << "end-parking-time:" << end_parking_time.toString(Qt::ISODate);
 | 
			
		||||
                    }
 | 
			
		||||
                }
 | 
			
		||||
            } else {
 | 
			
		||||
                qCritical() << __func__ << ":" << __LINE__ << "NO carryOver configured";
 | 
			
		||||
                end_parking_time = effectiveStartTime.addSecs(netto_parking_time*60);
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            end_parking_time.setTime(QTime(end_parking_time.time().hour(),
 | 
			
		||||
                                           end_parking_time.time().minute(), 0));
 | 
			
		||||
 | 
			
		||||
            qCritical() << __func__ << ":" << __LINE__ << "end-parking-time:" << end_parking_time.toString(Qt::ISODate);
 | 
			
		||||
            qCritical() << __func__ << ":" << __LINE__ << "        week-day:" << weekDay;
 | 
			
		||||
 | 
			
		||||
            for (auto[itr, rangeEnd] = tariff->WeekDays.equal_range((Qt::DayOfWeek)weekDay); itr != rangeEnd; ++itr) {
 | 
			
		||||
                ATBWeekDay const &wd = itr->second;
 | 
			
		||||
                bool const parkTimeLimitViolated = wd.getTariffCarryOverSettings().parkingTimeLimitExceeded(effectiveStartTime,
 | 
			
		||||
                                                                                                            end_parking_time,
 | 
			
		||||
                                                                                                            paymentOptionIndex);
 | 
			
		||||
                if (parkTimeLimitViolated) {
 | 
			
		||||
                    //QTime const &tlimit = wd.getTariffCarryOverSettings().parkingTimeLimit();
 | 
			
		||||
                    //end_parking_time.setTime(tlimit);
 | 
			
		||||
 | 
			
		||||
                    // max_price neu berechnen
 | 
			
		||||
 | 
			
		||||
                    calcState.setDesc(QString("line=%1 endTime=%2: park-time-limit violated").arg(__LINE__)
 | 
			
		||||
                                        .arg(end_parking_time.time().toString(Qt::ISODate)));
 | 
			
		||||
                    return calcState.set(CalcState::State::ABOVE_MAX_PARKING_TIME);
 | 
			
		||||
                }
 | 
			
		||||
            }
 | 
			
		||||
        } else
 | 
			
		||||
        if (tariff->getPaymentOptions(0).pop_payment_method_id == PaymentMethod::Unified) {
 | 
			
		||||
            std::pair<CalcState, std::optional<int>> p =
 | 
			
		||||
                Calculator::GetInstance().ComputeCostFromDuration(tariff, start_parking_time, end_parking_time, netto_parking_time);
 | 
			
		||||
            CalcState const cs = p.first;
 | 
			
		||||
 | 
			
		||||
            if ((cs.getStatus() == CalcState::State::SUCCESS ||
 | 
			
		||||
                 cs.getStatus() == CalcState::State::SUCCESS_MAXPRICE ||
 | 
			
		||||
                 cs.getStatus() == CalcState::State::OVERPAID)) {
 | 
			
		||||
                if (p.second.has_value()) {
 | 
			
		||||
                    cost = p.second.value();
 | 
			
		||||
                }
 | 
			
		||||
            } else {
 | 
			
		||||
                return cs;
 | 
			
		||||
            }
 | 
			
		||||
        } else {
 | 
			
		||||
            cost = Calculator::GetInstance().GetCostFromDuration(
 | 
			
		||||
                        tariff,
 | 
			
		||||
@@ -830,7 +1002,7 @@ CalcState CALCULATE_LIBRARY_API compute_price_for_parking_ticket(
 | 
			
		||||
                        netto_parking_time,         // minutes, netto
 | 
			
		||||
                        false, prepaid);
 | 
			
		||||
        }
 | 
			
		||||
        // qCritical() << __func__ << __LINE__;
 | 
			
		||||
 | 
			
		||||
        double minCost = tariff->getPaymentOptions(paymentOptionIndex).pop_min_price;
 | 
			
		||||
        if (cost < minCost) {
 | 
			
		||||
            calcState.setDesc(QString("line=%1 minCost=%2, cost=%3").arg(__LINE__).arg(minCost).arg(cost));
 | 
			
		||||
@@ -864,6 +1036,10 @@ CalcState CALCULATE_LIBRARY_API compute_duration_for_parking_ticket(
 | 
			
		||||
        double price,
 | 
			
		||||
        QString &duration,
 | 
			
		||||
        PermitType permitType) {
 | 
			
		||||
 | 
			
		||||
    tariff->getPaymentOptions(0).pop_max_price
 | 
			
		||||
        = tariff->getPaymentOptions(0).pop_max_price_save;
 | 
			
		||||
 | 
			
		||||
    CalcState calcState;
 | 
			
		||||
    QDate const d(1970, 1, 1);
 | 
			
		||||
    QTime const t(0, 0, 0);
 | 
			
		||||
@@ -873,7 +1049,12 @@ CalcState CALCULATE_LIBRARY_API compute_duration_for_parking_ticket(
 | 
			
		||||
        QString cs = start.toString(Qt::ISODate);
 | 
			
		||||
 | 
			
		||||
        bool prepaid = true;
 | 
			
		||||
        int paymentOptionIndex = tariff->getPaymentOptionIndex(permitType);
 | 
			
		||||
        int paymentOptionIndex = getPaymentOptionIndex(*tariff, start);
 | 
			
		||||
        qCritical() << " payment option index: " << paymentOptionIndex;
 | 
			
		||||
        if (paymentOptionIndex == -1) {
 | 
			
		||||
            paymentOptionIndex = tariff->getPaymentOptionIndex(permitType);
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        int prepaid_option_id = tariff->getPaymentOptions(paymentOptionIndex).pop_prepaid_option_id;
 | 
			
		||||
        if (prepaid_option_id == 2) { // see tariff03.json for 502: 2 means no prepaid-option
 | 
			
		||||
            prepaid = false;
 | 
			
		||||
@@ -887,10 +1068,14 @@ CalcState CALCULATE_LIBRARY_API compute_duration_for_parking_ticket(
 | 
			
		||||
        qCritical() << "           start (cs): " << cs;
 | 
			
		||||
        qCritical() << "                price: " << price;
 | 
			
		||||
 | 
			
		||||
        duration = Calculator::GetInstance().GetDurationFromCost(tariff,
 | 
			
		||||
                                                  tariff->getPaymentOptions(paymentOptionIndex).pop_payment_method_id,
 | 
			
		||||
                                                  cs.toLocal8Bit().constData(),
 | 
			
		||||
                                                  price, permitType, nextDay, prepaid).c_str();
 | 
			
		||||
        std::pair<std::string, QDateTime> p_duration
 | 
			
		||||
                = Calculator::GetInstance().GetDurationFromCost(tariff,
 | 
			
		||||
                    tariff->getPaymentOptions(paymentOptionIndex).pop_payment_method_id,
 | 
			
		||||
                                              cs.toLocal8Bit().constData(),
 | 
			
		||||
                                              price, permitType, nextDay, prepaid);
 | 
			
		||||
        duration = p_duration.first.c_str();
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
        QDateTime d = QDateTime::fromString(duration, Qt::ISODate);
 | 
			
		||||
        if (!d.isValid()) {
 | 
			
		||||
            calcState.setDesc(QString("ticketEndTime=%1").arg(duration));
 | 
			
		||||
@@ -910,11 +1095,23 @@ CalcState CALCULATE_LIBRARY_API compute_duration_for_parking_ticket(
 | 
			
		||||
        QDateTime &ticketEndTime,
 | 
			
		||||
        PermitType permitType)
 | 
			
		||||
{
 | 
			
		||||
    tariff->getPaymentOptions(0).pop_max_price
 | 
			
		||||
        = tariff->getPaymentOptions(0).pop_max_price_save;
 | 
			
		||||
 | 
			
		||||
    CalcState calcState;
 | 
			
		||||
 | 
			
		||||
    bool prepaid = true;
 | 
			
		||||
    int paymentOptionIndex = tariff->getPaymentOptionIndex(permitType);
 | 
			
		||||
 | 
			
		||||
    int paymentOptionIndex = getPaymentOptionIndex(*tariff, start_parking_time);
 | 
			
		||||
    qCritical() << __func__ << ":" << __LINE__ << "payment option index: " << paymentOptionIndex;
 | 
			
		||||
    if (paymentOptionIndex == -1) {
 | 
			
		||||
        paymentOptionIndex = tariff->getPaymentOptionIndex(permitType);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    qCritical() << __func__ << ":" << __LINE__ << " payment option index: " << paymentOptionIndex;
 | 
			
		||||
 | 
			
		||||
    int prepaid_option_id = tariff->getPaymentOptions(paymentOptionIndex).pop_prepaid_option_id;
 | 
			
		||||
 | 
			
		||||
    if (prepaid_option_id == 2) {
 | 
			
		||||
        prepaid = false;
 | 
			
		||||
    }
 | 
			
		||||
@@ -929,16 +1126,57 @@ CalcState CALCULATE_LIBRARY_API compute_duration_for_parking_ticket(
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    if (start_parking_time.isValid()) {
 | 
			
		||||
        QString cs = start_parking_time.toString(Qt::ISODate);
 | 
			
		||||
        QString endTime = Calculator::GetInstance().GetDurationFromCost(
 | 
			
		||||
 | 
			
		||||
        int const pop_time_step_config = tariff->getPaymentOptions(paymentOptionIndex).pop_time_step_config;
 | 
			
		||||
        if (pop_time_step_config == (int)ATBTimeStepConfig::TimeStepConfig::STATIC) {
 | 
			
		||||
            // handle prepaid option
 | 
			
		||||
            QDateTime effectiveStartTime(start_parking_time);
 | 
			
		||||
 | 
			
		||||
            effectiveStartTime.setTime(QTime(effectiveStartTime.time().hour(),
 | 
			
		||||
                                             effectiveStartTime.time().minute(), 0));
 | 
			
		||||
 | 
			
		||||
            int const prepaid_option_id = tariff->getPaymentOptions(paymentOptionIndex).pop_prepaid_option_id;
 | 
			
		||||
            std::optional<ATBPrepaid> prepaidOption = tariff->getPrepaidType(prepaid_option_id);
 | 
			
		||||
            if (prepaidOption.has_value()) {
 | 
			
		||||
                ATBPrepaid const &p = prepaidOption.value();
 | 
			
		||||
                if (p.never) {
 | 
			
		||||
                    qCritical() << __func__ << __LINE__ << "prepaid: no";
 | 
			
		||||
                } else {
 | 
			
		||||
                    if (start_parking_time.time() < p.static_end) {     // static_end: e.g. 08:00:00
 | 
			
		||||
                        effectiveStartTime.setTime(p.static_end);
 | 
			
		||||
                    } else
 | 
			
		||||
                    if (start_parking_time.time() > p.static_start) {   // static_start: e.g. 22:00:00
 | 
			
		||||
                        effectiveStartTime.setTime(p.static_start);
 | 
			
		||||
                    }
 | 
			
		||||
                }
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
        QDateTime start(start_parking_time);
 | 
			
		||||
        start.setTime(QTime(start.time().hour(), start.time().minute(), 0));
 | 
			
		||||
        QString cs = start.toString(Qt::ISODate);
 | 
			
		||||
 | 
			
		||||
        std::pair<std::string, QDateTime> p_endTime
 | 
			
		||||
                = Calculator::GetInstance().GetDurationFromCost(
 | 
			
		||||
                    tariff,
 | 
			
		||||
                    tariff->getPaymentOptions().pop_payment_method_id,
 | 
			
		||||
                    cs.toLocal8Bit().constData(),
 | 
			
		||||
                    price, permitType, nextDay, prepaid).c_str();
 | 
			
		||||
                    price, permitType, nextDay, prepaid);
 | 
			
		||||
 | 
			
		||||
        QString endTime = p_endTime.first.c_str();
 | 
			
		||||
        ticketEndTime = p_endTime.second;
 | 
			
		||||
 | 
			
		||||
        qCritical() << __func__ << ":" << __LINE__ << endTime;
 | 
			
		||||
        qCritical() << __func__ << ":" << __LINE__ << ticketEndTime.toString(Qt::ISODate);
 | 
			
		||||
 | 
			
		||||
        if (endTime == CalcState::SUCCESS) {
 | 
			
		||||
            calcState.setDesc(QString("SUCCESS"));
 | 
			
		||||
            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
 | 
			
		||||
        if (endTime == CalcState::ERROR_PARSING_ZONE_NR) {
 | 
			
		||||
            calcState.setStatus(endTime);
 | 
			
		||||
@@ -996,33 +1234,200 @@ CalcState CALCULATE_LIBRARY_API compute_duration_for_parking_ticket(
 | 
			
		||||
        } else {
 | 
			
		||||
            ticketEndTime = QDateTime::fromString(endTime,Qt::ISODate);
 | 
			
		||||
 | 
			
		||||
            ticketEndTime.setTime(QTime(ticketEndTime.time().hour(),
 | 
			
		||||
                                        ticketEndTime.time().minute(), 0));
 | 
			
		||||
 | 
			
		||||
            int netto_parking_time = start_parking_time.secsTo(ticketEndTime) / 60;
 | 
			
		||||
 | 
			
		||||
            qCritical() << __func__ << ":" << __LINE__ << "ticketEndTime:" << ticketEndTime.toString(Qt::ISODate);
 | 
			
		||||
            qCritical() << __func__ << ":" << __LINE__ << "step-config:" << pop_time_step_config;
 | 
			
		||||
            qCritical() << __func__ << ":" << __LINE__ << "netto-parking-time" << netto_parking_time;
 | 
			
		||||
 | 
			
		||||
            if (!ticketEndTime.isValid()) {
 | 
			
		||||
                calcState.setDesc(QString("ticketEndTime=%1").arg(endTime));
 | 
			
		||||
                return calcState.set(CalcState::State::WRONG_ISO_TIME_FORMAT);
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            if (tariff->getPaymentOptions().pop_payment_method_id != PaymentMethod::Unified) {
 | 
			
		||||
 | 
			
		||||
                if (pop_time_step_config == (int)ATBTimeStepConfig::TimeStepConfig::STATIC) {
 | 
			
		||||
                    // handle carry over for ticket-end-time
 | 
			
		||||
                    qCritical() << __func__ << ":" << __LINE__ << "ticketEndTime:" << ticketEndTime.toString(Qt::ISODate);
 | 
			
		||||
 | 
			
		||||
                    int weekDay = start_parking_time.date().dayOfWeek();
 | 
			
		||||
                    int pop_carry_over_option_id = tariff->getPaymentOptions(paymentOptionIndex).pop_carry_over_option_id;
 | 
			
		||||
                    qCritical() << __func__ << ":" << __LINE__ << "configured carry-over-id" << pop_carry_over_option_id;
 | 
			
		||||
 | 
			
		||||
                    std::optional<ATBPeriodYear> yperiod = Utilities::GetYearPeriodActive(tariff, start_parking_time);
 | 
			
		||||
                    if (yperiod.has_value()) {
 | 
			
		||||
                        ATBPeriodYear const &period = yperiod.value();
 | 
			
		||||
                        pop_carry_over_option_id = period.pye_id;
 | 
			
		||||
                        qCritical() << __func__ << ":" << __LINE__ << "re-computed carry-over-id" << pop_carry_over_option_id;
 | 
			
		||||
                    }
 | 
			
		||||
 | 
			
		||||
                    QTime carryOverStart;
 | 
			
		||||
                    QTime carryOverEnd;
 | 
			
		||||
                    int carryOverDuration = -1;
 | 
			
		||||
 | 
			
		||||
                    // using TariffCarryOverType = std::multimap<int, ATBCarryOver>;
 | 
			
		||||
                    std::multimap<int, ATBCarryOver>::const_iterator it;
 | 
			
		||||
                    if ((it = tariff->TariffCarryOverOptions.find(pop_carry_over_option_id)) !=
 | 
			
		||||
                        tariff->TariffCarryOverOptions.cend()) {
 | 
			
		||||
                        carryOverStart = it->second.carryover[weekDay].static_start;
 | 
			
		||||
                        carryOverEnd = it->second.carryover[weekDay].static_end;
 | 
			
		||||
                        carryOverDuration = it->second.carryover[weekDay].duration;
 | 
			
		||||
                    }
 | 
			
		||||
 | 
			
		||||
                    if (carryOverStart.isValid() && carryOverEnd.isValid()) {
 | 
			
		||||
                        qCritical() << __func__ << ":" << __LINE__ << "carryOverStart" << carryOverStart.toString(Qt::ISODate);
 | 
			
		||||
                        qCritical() << __func__ << ":" << __LINE__ << "carryOverEnd" << carryOverEnd.toString(Qt::ISODate);
 | 
			
		||||
                        qCritical() << __func__ << ":" << __LINE__ << "carryOverDuration" << carryOverDuration;
 | 
			
		||||
                    }
 | 
			
		||||
 | 
			
		||||
                    if (carryOverStart.isValid() && carryOverEnd.isValid() && carryOverDuration != -1) {
 | 
			
		||||
 | 
			
		||||
                        // note: in such a case (direct coins) carry-over has been handled
 | 
			
		||||
                        // already in GetDurationFromCost()
 | 
			
		||||
                        netto_parking_time -= carryOverDuration;
 | 
			
		||||
                        qCritical() << __func__ << ":" << __LINE__ << "netto-parking-time" << netto_parking_time;
 | 
			
		||||
 | 
			
		||||
                        // qCritical() << __func__ << __LINE__ << "ticketEndTime.time():" << ticketEndTime.time().toString(Qt::ISODate);
 | 
			
		||||
                        if (ticketEndTime.time() > carryOverStart) {
 | 
			
		||||
                            // qCritical() << __func__ << __LINE__ << "ticketEndTime.time():" << ticketEndTime.time().toString(Qt::ISODate);
 | 
			
		||||
                            ticketEndTime = ticketEndTime.addSecs(carryOverDuration * 60);
 | 
			
		||||
                        } else
 | 
			
		||||
                        if (ticketEndTime.time() == carryOverStart) {
 | 
			
		||||
                            qCritical() << __func__ << __LINE__ << "ticketEndTime.time():" << ticketEndTime.time().toString(Qt::ISODate);
 | 
			
		||||
                            qCritical() << __func__ << ":" << __LINE__ << "   carryOverStart" << carryOverStart.toString(Qt::ISODate);
 | 
			
		||||
                            ATBPaymentOption const &po = tariff->getPaymentOptions(paymentOptionIndex);
 | 
			
		||||
                            if (po.pop_apply_carry_over_to_ticket_endtime) {
 | 
			
		||||
                                ticketEndTime = ticketEndTime.addSecs(carryOverDuration * 60);
 | 
			
		||||
                                qCritical() << __func__ << __LINE__ << "ticketEndTime.time():" << ticketEndTime.time().toString(Qt::ISODate);
 | 
			
		||||
                            }
 | 
			
		||||
                        } else {
 | 
			
		||||
                            // qCritical() << __func__ << __LINE__ << "ticketEndTime.time():" << ticketEndTime.time().toString(Qt::ISODate);
 | 
			
		||||
                            if (ticketEndTime.time() < carryOverEnd) {
 | 
			
		||||
                                // qCritical() << __func__ << __LINE__ << "ticketEndTime.time():" << ticketEndTime.time().toString(Qt::ISODate);
 | 
			
		||||
                                ticketEndTime = ticketEndTime.addSecs(carryOverDuration * 60);
 | 
			
		||||
                            }
 | 
			
		||||
                        }
 | 
			
		||||
                    } else {
 | 
			
		||||
                        qCritical() << __func__ << ":" << __LINE__ << "WARNING: wrong carry-over-settings";
 | 
			
		||||
                    }
 | 
			
		||||
                }
 | 
			
		||||
 | 
			
		||||
                qCritical() << __func__ << ":" << __LINE__ << "ticketEndTime:" << ticketEndTime.toString(Qt::ISODate);
 | 
			
		||||
 | 
			
		||||
                for (auto[itr, rangeEnd] = tariff->WeekDays.equal_range((Qt::DayOfWeek)(ticketEndTime.date().dayOfWeek()));
 | 
			
		||||
                     itr != rangeEnd;
 | 
			
		||||
                     ++itr) {
 | 
			
		||||
                    ATBWeekDay const &wd = itr->second;
 | 
			
		||||
                    bool parkTimeLimitViolated = wd.getTariffCarryOverSettings().parkingTimeLimitExceeded(start_parking_time,
 | 
			
		||||
                                                                                                          ticketEndTime,
 | 
			
		||||
                                                                                                          paymentOptionIndex);
 | 
			
		||||
                    if (parkTimeLimitViolated) {
 | 
			
		||||
                        //QTime const &tlimit = wd.getTariffCarryOverSettings().parkingTimeLimit();
 | 
			
		||||
                        //ticketEndTime.setTime(tlimit);
 | 
			
		||||
 | 
			
		||||
                        QList<int> const &stepList = Calculator::GetInstance().GetTimeSteps(tariff, paymentOptionIndex);
 | 
			
		||||
 | 
			
		||||
                        QDateTime newTicketEndTime = ticketEndTime;
 | 
			
		||||
 | 
			
		||||
                        qCritical() << __func__ << ":" << __LINE__ << "PARK-TIME VIOLATED";
 | 
			
		||||
 | 
			
		||||
                        for (int i = stepList.size() - 1; i > 0; --i) {
 | 
			
		||||
                            // qCritical() << __func__ << ":" << __LINE__ << "step[" << i << "]" << stepList.at(i);
 | 
			
		||||
 | 
			
		||||
                            if (netto_parking_time > 0 && stepList.at(i) <= netto_parking_time) {
 | 
			
		||||
                                int const diff = stepList.at(i-1) - stepList.at(i);
 | 
			
		||||
                                newTicketEndTime = newTicketEndTime.addSecs(diff * 60);
 | 
			
		||||
 | 
			
		||||
                                // qCritical() << __func__ << ":" << __LINE__ << "new-ticket-end-time" << newTicketEndTime.toString(Qt::ISODate);
 | 
			
		||||
 | 
			
		||||
                                parkTimeLimitViolated
 | 
			
		||||
                                    = wd.getTariffCarryOverSettings()
 | 
			
		||||
                                        .parkingTimeLimitExceeded(start_parking_time, newTicketEndTime, paymentOptionIndex);
 | 
			
		||||
 | 
			
		||||
                                if (!parkTimeLimitViolated) {
 | 
			
		||||
 | 
			
		||||
                                    qCritical() << __func__ << ":" << __LINE__
 | 
			
		||||
                                                << "PARK-TIME NOT VIOLATED FOR" << newTicketEndTime.toString(Qt::ISODate);
 | 
			
		||||
 | 
			
		||||
                                    int duration = stepList.at(i-1);
 | 
			
		||||
 | 
			
		||||
                                    // qCritical() << __func__ << ":" << __LINE__ << "duration" << duration;
 | 
			
		||||
 | 
			
		||||
                                    std::multimap<int, ATBDuration>::const_iterator it;
 | 
			
		||||
                                    for (it = tariff->Duration.cbegin();
 | 
			
		||||
                                         it != tariff->Duration.cend();
 | 
			
		||||
                                         ++it) {
 | 
			
		||||
                                        if (duration == it->second.pun_duration) {
 | 
			
		||||
 | 
			
		||||
                                            // qCritical() << __func__ << ":" << __LINE__ << "duration" << duration;
 | 
			
		||||
 | 
			
		||||
                                            ATBPaymentOption &po = tariff->getPaymentOptions(paymentOptionIndex);
 | 
			
		||||
                                            int const pop_id = po.pop_id;
 | 
			
		||||
                                            for (auto[itr, rangeEnd] = tariff->PaymentRate.equal_range(pop_id); itr != rangeEnd; ++itr) {
 | 
			
		||||
                                                int const durationId = itr->second.pra_payment_unit_id;
 | 
			
		||||
 | 
			
		||||
                                                // qCritical() << __func__ << ":" << __LINE__ << "durationId" << durationId << it->second.pun_id;
 | 
			
		||||
 | 
			
		||||
                                                // note: for this to work, Duration and PaymentRate must have
 | 
			
		||||
                                                // exactly the same structure
 | 
			
		||||
                                                if (durationId == it->second.pun_id) {
 | 
			
		||||
                                                    int const pra_price = itr->second.pra_price;
 | 
			
		||||
                                                    po.pop_max_price = pra_price;
 | 
			
		||||
 | 
			
		||||
                                                    qCritical() << __func__ << ":" << __LINE__ << "new max-price" << po.pop_max_price;
 | 
			
		||||
 | 
			
		||||
                                                    // note: ABOVE_MAX_PARKING_TIME would also be possible
 | 
			
		||||
                                                    // but here max-parking-time is dynamic. And for
 | 
			
		||||
                                                    // this dynamic value, opverpaid is actually correct
 | 
			
		||||
 | 
			
		||||
                                                    calcState.setDesc(CalcState::OVERPAID);
 | 
			
		||||
                                                    calcState.setStatus(CalcState::OVERPAID);
 | 
			
		||||
                                                    return calcState;
 | 
			
		||||
                                                }
 | 
			
		||||
                                            }
 | 
			
		||||
                                        }
 | 
			
		||||
                                    }
 | 
			
		||||
                                }
 | 
			
		||||
                            }
 | 
			
		||||
                        }
 | 
			
		||||
 | 
			
		||||
                        calcState.setDesc(QString("line=%1 endTime=%2: park-time-limit violated").arg(__LINE__)
 | 
			
		||||
                                          .arg(ticketEndTime.time().toString(Qt::ISODate)));
 | 
			
		||||
                        return calcState.set(CalcState::State::ABOVE_MAX_PARKING_TIME);
 | 
			
		||||
                    }
 | 
			
		||||
                }
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            if (ticketEndTime.time().hour() == 0 && ticketEndTime.time().minute() == 0) {
 | 
			
		||||
                ticketEndTime = ticketEndTime.addDays(-1);
 | 
			
		||||
                ticketEndTime.setTime(QTime(23, 59, 0));
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            // DEBUG
 | 
			
		||||
            qCritical() << "compute_duration_for_parking_ticket(): ";
 | 
			
		||||
            qCritical() << "                 endTime: " << endTime;
 | 
			
		||||
            qCritical() << "           ticketEndTime: " << ticketEndTime;
 | 
			
		||||
            qCritical() << __func__ << ":" << __LINE__ << "      endTime:" << endTime;
 | 
			
		||||
            qCritical() << __func__ << ":" << __LINE__ << "ticketEndTime:" << ticketEndTime.toString(Qt::ISODate);
 | 
			
		||||
        }
 | 
			
		||||
    } else {
 | 
			
		||||
        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,
 | 
			
		||||
                                                                  QDateTime const &start_parking_time,
 | 
			
		||||
                                                                  QDateTime &ticketEndTime,
 | 
			
		||||
                                                                  PermitType PermitType)
 | 
			
		||||
                                                                  PermitType /* PermitType */)
 | 
			
		||||
{
 | 
			
		||||
    tariff->getPaymentOptions(0).pop_max_price
 | 
			
		||||
        = tariff->getPaymentOptions(0).pop_max_price_save;
 | 
			
		||||
 | 
			
		||||
    CalcState calcState;
 | 
			
		||||
    if (start_parking_time.isValid()) {
 | 
			
		||||
 | 
			
		||||
@@ -1054,8 +1459,11 @@ CalcState CALCULATE_LIBRARY_API compute_price_for_daily_ticket(
 | 
			
		||||
                                    QDateTime &endDatetime,
 | 
			
		||||
                                    PERMIT_TYPE permitType,
 | 
			
		||||
                                    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 (std::optional<struct price_t> p =
 | 
			
		||||
 
 | 
			
		||||
@@ -6,6 +6,8 @@
 | 
			
		||||
#include "ticket.h"
 | 
			
		||||
#include "tariff_global_defines.h"
 | 
			
		||||
#include "tariff_prepaid.h"
 | 
			
		||||
#include "tariff_out_of_service.h"
 | 
			
		||||
#include "tariff_service.h"
 | 
			
		||||
 | 
			
		||||
#include <sstream>
 | 
			
		||||
#include <algorithm>
 | 
			
		||||
@@ -117,14 +119,496 @@ QDateTime Calculator::GetDailyTicketDuration(Configuration* cfg, const 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/>
 | 
			
		||||
std::string Calculator::GetDurationFromCost(Configuration* cfg,
 | 
			
		||||
                                            uint8_t payment_option,
 | 
			
		||||
                                            char const *startDatetimePassed, // given in local time
 | 
			
		||||
                                            double cost,
 | 
			
		||||
                                            PermitType permitType,
 | 
			
		||||
                                            bool nextDay,
 | 
			
		||||
                                            bool prepaid)
 | 
			
		||||
std::pair<std::string, QDateTime>
 | 
			
		||||
Calculator::GetDurationFromCost(Configuration* cfg,
 | 
			
		||||
                                uint8_t payment_option,
 | 
			
		||||
                                char const *startDatetimePassed, // given in local time
 | 
			
		||||
                                double cost,
 | 
			
		||||
                                PermitType /*permitType*/,
 | 
			
		||||
                                bool nextDay,
 | 
			
		||||
                                bool prepaid)
 | 
			
		||||
{
 | 
			
		||||
    Q_UNUSED(payment_option);
 | 
			
		||||
    Q_UNUSED(nextDay);
 | 
			
		||||
@@ -133,7 +617,16 @@ std::string Calculator::GetDurationFromCost(Configuration* cfg,
 | 
			
		||||
    QDateTime inputDate = QDateTime::fromString(startDatetimePassed, Qt::ISODate);
 | 
			
		||||
    inputDate.setTime(QTime(inputDate.time().hour(), inputDate.time().minute(), 0));
 | 
			
		||||
    static const PaymentMethod paymentMethodId = Utilities::getPaymentMethodId(cfg);
 | 
			
		||||
    int const paymentOptionIndex = cfg->getPaymentOptionIndex(permitType.get());
 | 
			
		||||
 | 
			
		||||
    bool overPaid = false;
 | 
			
		||||
    bool successMaxPrice = false; // max-price and cost match
 | 
			
		||||
 | 
			
		||||
    int paymentOptionIndex = getPaymentOptionIndex(*cfg, inputDate);
 | 
			
		||||
    if (paymentOptionIndex == -1) {
 | 
			
		||||
        paymentOptionIndex = cfg->getPaymentOptionIndex(QDateTime::fromString(startDatetimePassed, Qt::ISODate));
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    qCritical() << DBG_HEADER << "   option index:" << paymentOptionIndex;
 | 
			
		||||
 | 
			
		||||
    if (DBG_LEVEL >= DBG_DEBUG) {
 | 
			
		||||
        qCritical() << DBG_HEADER << "          start:" << inputDate.toString(Qt::ISODate);
 | 
			
		||||
@@ -156,7 +649,7 @@ std::string Calculator::GetDurationFromCost(Configuration* cfg,
 | 
			
		||||
            // minimal price is set by GetTimeSteps()
 | 
			
		||||
            qCritical() << DBG_HEADER << "   provided price (cost):" << cost;
 | 
			
		||||
            qCritical() << DBG_HEADER << "configured minimal price:" << cfg->getPaymentOptions(paymentOptionIndex).pop_min_price;
 | 
			
		||||
            return CalcState::BELOW_MIN_PARKING_PRICE.toStdString();
 | 
			
		||||
            return std::make_pair(CalcState::BELOW_MIN_PARKING_PRICE.toStdString(), QDateTime());
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        if (prepaid == false) {
 | 
			
		||||
@@ -219,9 +712,9 @@ std::string Calculator::GetDurationFromCost(Configuration* cfg,
 | 
			
		||||
                            qCritical() << DBG_HEADER << "           minimal parking time (minutes):" << cfg->getPaymentOptions(paymentOptionIndex).pop_min_time;
 | 
			
		||||
 | 
			
		||||
                            if (duration_previous < cfg->getPaymentOptions(paymentOptionIndex).pop_min_time) {
 | 
			
		||||
                                return CalcState::BELOW_MIN_PARKING_TIME.toStdString(); // minimal parking time is set by GetTimeSteps()
 | 
			
		||||
                                return std::make_pair(CalcState::BELOW_MIN_PARKING_TIME.toStdString(), d); // minimal parking time is set by GetTimeSteps()
 | 
			
		||||
                            }
 | 
			
		||||
                            return d.toString(Qt::ISODate).toStdString();
 | 
			
		||||
                            return std::make_pair(d.toString(Qt::ISODate).toStdString(), d);
 | 
			
		||||
                        }
 | 
			
		||||
                    }
 | 
			
		||||
 | 
			
		||||
@@ -234,7 +727,7 @@ std::string Calculator::GetDurationFromCost(Configuration* cfg,
 | 
			
		||||
                        qCritical() << DBG_HEADER << "   provided price (cost):" << cost;
 | 
			
		||||
                        qCritical() << DBG_HEADER << "      duration for price:" << durationStr;
 | 
			
		||||
 | 
			
		||||
                        return durationStr.toStdString();
 | 
			
		||||
                        return std::make_pair(durationStr.toStdString(), d);
 | 
			
		||||
                    }
 | 
			
		||||
                }
 | 
			
		||||
            }
 | 
			
		||||
@@ -243,35 +736,60 @@ std::string Calculator::GetDurationFromCost(Configuration* cfg,
 | 
			
		||||
            qCritical() << DBG_HEADER << "   TODO";
 | 
			
		||||
        }
 | 
			
		||||
    } 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 (tariffIs24_7(cfg)) {
 | 
			
		||||
            // use tariff with structure as for instance Schoenau, Koenigsee:
 | 
			
		||||
            // without given YearPeriod, SpecialDays and SpecialDaysWorktime
 | 
			
		||||
            inputDate = inputDate.addSecs(GetDurationForPrice(cfg, cost) * 60);
 | 
			
		||||
            return inputDate.toString(Qt::ISODate).toStdString();
 | 
			
		||||
            return std::make_pair(inputDate.toString(Qt::ISODate).toStdString(), inputDate);
 | 
			
		||||
        } else {
 | 
			
		||||
            if (Utilities::IsYearPeriodActive(cfg, inputDate)) {
 | 
			
		||||
                if (!prepaid) {
 | 
			
		||||
                    CalcState cs = isParkingAllowed(cfg, inputDate);
 | 
			
		||||
                    if (cs) {
 | 
			
		||||
                        inputDate.setTime(cs.getAllowedTimeRange().getTimeUntil());
 | 
			
		||||
                        return inputDate.toString(Qt::ISODate).toStdString();
 | 
			
		||||
                        return std::make_pair(inputDate.toString(Qt::ISODate).toStdString(), inputDate);
 | 
			
		||||
                    }
 | 
			
		||||
                }
 | 
			
		||||
 | 
			
		||||
                int const pop_id = cfg->getPaymentOptions(paymentOptionIndex).pop_id;
 | 
			
		||||
                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 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) {
 | 
			
		||||
                    cost = pop_max_price;
 | 
			
		||||
                    qCritical() << DBG_HEADER << "MAX-PARKING-PRICE" << pop_max_price << ", COST" << cost;
 | 
			
		||||
                    //return CalcState::OVERPAID.toStdString();
 | 
			
		||||
                    if (pop_allow_overpay == false) {
 | 
			
		||||
                        return std::make_pair(CalcState::OVERPAID.toStdString(), 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 CalcState::BELOW_MIN_PARKING_PRICE.toStdString();
 | 
			
		||||
                    return std::make_pair(CalcState::BELOW_MIN_PARKING_PRICE.toStdString(), QDateTime());
 | 
			
		||||
                }
 | 
			
		||||
 | 
			
		||||
                // int const pop_pre_paid = 1;
 | 
			
		||||
@@ -356,7 +874,7 @@ std::string Calculator::GetDurationFromCost(Configuration* cfg,
 | 
			
		||||
                    qCritical() << DBG_HEADER
 | 
			
		||||
                                << "ERROR" << inputDate.toString(Qt::ISODate)
 | 
			
		||||
                                << "NOT IN VALID WORKING TIME-RANGE";
 | 
			
		||||
                    return "";
 | 
			
		||||
                    return std::make_pair("", QDateTime());
 | 
			
		||||
                }
 | 
			
		||||
 | 
			
		||||
                //qCritical() << __func__ << __LINE__;
 | 
			
		||||
@@ -381,7 +899,7 @@ std::string Calculator::GetDurationFromCost(Configuration* cfg,
 | 
			
		||||
                    qCritical() << DBG_HEADER
 | 
			
		||||
                                << "ERROR" << inputDate.toString(Qt::ISODate)
 | 
			
		||||
                                << "NOT IN VALID WORKING TIME-RANGE";
 | 
			
		||||
                    return "";
 | 
			
		||||
                    return std::make_pair("", QDateTime());
 | 
			
		||||
                }
 | 
			
		||||
 | 
			
		||||
#if DEBUG_GET_DURATION_FROM_COST==1
 | 
			
		||||
@@ -389,13 +907,13 @@ std::string Calculator::GetDurationFromCost(Configuration* cfg,
 | 
			
		||||
                qCritical() << DBG_HEADER << "  CURRENT WORKING-TIME-TO" << current_working_time_to.toString(Qt::ISODate);
 | 
			
		||||
#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 price = 0;
 | 
			
		||||
                // int price = 0;
 | 
			
		||||
                int new_price = 0;
 | 
			
		||||
                int durationInSecs = 0;
 | 
			
		||||
                uint32_t duration_previous = 0;
 | 
			
		||||
                bool found = false;
 | 
			
		||||
                // bool found = false;
 | 
			
		||||
 | 
			
		||||
                for (auto[itr, rangeEnd] = cfg->PaymentRate.equal_range(pop_id); itr != rangeEnd; ++itr) {
 | 
			
		||||
                    int const pra_price = itr->second.pra_price;
 | 
			
		||||
@@ -424,13 +942,19 @@ std::string Calculator::GetDurationFromCost(Configuration* cfg,
 | 
			
		||||
                               duration_previous = durationUnit;
 | 
			
		||||
                               //qCritical() << "(" << __func__ << ":" << __LINE__ << ") ZZZZZZ duration_previous" << duration_previous;
 | 
			
		||||
                            } else {
 | 
			
		||||
                                found = true;
 | 
			
		||||
                               //found = true;
 | 
			
		||||
                               //qCritical() << "(" << __func__ << ":" << __LINE__ << ") WWWWWW duration_previous" << duration_previous;
 | 
			
		||||
                                QString s = inputDate.toString(Qt::ISODate);
 | 
			
		||||
                                QDateTime d(QDateTime::fromString(s, Qt::ISODate));
 | 
			
		||||
                                d = d.addSecs(duration_previous * 60);
 | 
			
		||||
                                //qCritical() << DBG_HEADER << "XXXXXXXXXXXXXXXXXXXXX" << d;
 | 
			
		||||
                                return d.toString(Qt::ISODate).toStdString();
 | 
			
		||||
                                if (overPaid) {
 | 
			
		||||
                                    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);
 | 
			
		||||
                            }
 | 
			
		||||
                        } else {
 | 
			
		||||
                            durationInSecs = cfg->Duration.find(durationId)->second.pun_duration * 60;
 | 
			
		||||
@@ -506,6 +1030,16 @@ std::string Calculator::GetDurationFromCost(Configuration* cfg,
 | 
			
		||||
 | 
			
		||||
                                                //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);
 | 
			
		||||
#if DEBUG_GET_DURATION_FROM_COST==1
 | 
			
		||||
                                                qCritical() << DBG_HEADER << "TICKET-END" << inputDate.toString(Qt::ISODate);
 | 
			
		||||
@@ -541,7 +1075,13 @@ std::string Calculator::GetDurationFromCost(Configuration* cfg,
 | 
			
		||||
                            qCritical() << DBG_HEADER << "TICKET-END" << s;
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
                            return s.toStdString();
 | 
			
		||||
                            if (overPaid) {
 | 
			
		||||
                                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);
 | 
			
		||||
                        } // if ((double)price == cost) {
 | 
			
		||||
                        else {
 | 
			
		||||
                            //qCritical() << DBG_HEADER;
 | 
			
		||||
@@ -551,7 +1091,7 @@ std::string Calculator::GetDurationFromCost(Configuration* cfg,
 | 
			
		||||
                    }
 | 
			
		||||
                }
 | 
			
		||||
 | 
			
		||||
                return "";
 | 
			
		||||
                return std::make_pair("", QDateTime());
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
    } else
 | 
			
		||||
@@ -568,7 +1108,7 @@ std::string Calculator::GetDurationFromCost(Configuration* cfg,
 | 
			
		||||
 | 
			
		||||
        if (cost < minParkingPrice) {
 | 
			
		||||
            qCritical() << QString("ERROR: COST < MIN_PARKING_PRICE (%1 < %2)").arg(cost).arg(minParkingPrice);
 | 
			
		||||
            return QDateTime().toString(Qt::ISODate).toStdString();
 | 
			
		||||
            return std::make_pair(QDateTime().toString(Qt::ISODate).toStdString(), QDateTime());
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        if (cost > maxParkingPrice) {
 | 
			
		||||
@@ -607,7 +1147,7 @@ std::string Calculator::GetDurationFromCost(Configuration* cfg,
 | 
			
		||||
                weekdayId = current.date().dayOfWeek();
 | 
			
		||||
                if (weekdayId == weekdayIdLast) {
 | 
			
		||||
                    qCritical() << "ERROR: NO VALID WORKDAY-TIMES DEFINED";
 | 
			
		||||
                    return QDateTime().toString(Qt::ISODate).toStdString();
 | 
			
		||||
                    return std::make_pair(QDateTime().toString(Qt::ISODate).toStdString(), QDateTime());
 | 
			
		||||
                }
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
@@ -625,7 +1165,13 @@ std::string Calculator::GetDurationFromCost(Configuration* cfg,
 | 
			
		||||
 | 
			
		||||
            if (current.time() >= to) {
 | 
			
		||||
                if (carryOverNotSet) {
 | 
			
		||||
                    return end_datetime.toString(Qt::ISODate).toStdString();
 | 
			
		||||
                    if (overPaid) {
 | 
			
		||||
                        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);
 | 
			
		||||
                } else {
 | 
			
		||||
                    QDateTime const dt = start;
 | 
			
		||||
                    start = start.addDays(1);
 | 
			
		||||
@@ -672,7 +1218,13 @@ std::string Calculator::GetDurationFromCost(Configuration* cfg,
 | 
			
		||||
                                << "price" << price;
 | 
			
		||||
#endif
 | 
			
		||||
                    end_datetime = current;
 | 
			
		||||
                    return end_datetime.toString(Qt::ISODate).toStdString();
 | 
			
		||||
                    if (overPaid) {
 | 
			
		||||
                        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);
 | 
			
		||||
                }
 | 
			
		||||
 | 
			
		||||
                QTime const &from = QTime::fromString(weekDayWorkTimeRanges[weekDayWorkTimeIndex].pwd_time_from.c_str(), Qt::ISODate);
 | 
			
		||||
@@ -767,7 +1319,13 @@ std::string Calculator::GetDurationFromCost(Configuration* cfg,
 | 
			
		||||
                                    << "end_datetime" << end_datetime.toString(Qt::ISODate)
 | 
			
		||||
                                    << "price" << price;
 | 
			
		||||
#endif
 | 
			
		||||
                        return end_datetime.toString(Qt::ISODate).toStdString();
 | 
			
		||||
                        if (overPaid) {
 | 
			
		||||
                            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);
 | 
			
		||||
                    }
 | 
			
		||||
                }
 | 
			
		||||
 | 
			
		||||
@@ -808,7 +1366,13 @@ std::string Calculator::GetDurationFromCost(Configuration* cfg,
 | 
			
		||||
                                    << "end_datetime" << end_datetime.toString(Qt::ISODate)
 | 
			
		||||
                                    << "price" << price;
 | 
			
		||||
#endif
 | 
			
		||||
                                return end_datetime.toString(Qt::ISODate).toStdString();
 | 
			
		||||
                                if (overPaid) {
 | 
			
		||||
                                    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);
 | 
			
		||||
                            }
 | 
			
		||||
 | 
			
		||||
                            // price has been updated; use next time range
 | 
			
		||||
@@ -839,7 +1403,13 @@ std::string Calculator::GetDurationFromCost(Configuration* cfg,
 | 
			
		||||
                                    << "price" << price;
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
                        return end_datetime.toString(Qt::ISODate).toStdString();
 | 
			
		||||
                        if (overPaid) {
 | 
			
		||||
                            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);
 | 
			
		||||
                    }
 | 
			
		||||
 | 
			
		||||
                    if (moveToNextTimeRange) {
 | 
			
		||||
@@ -955,8 +1525,13 @@ std::string Calculator::GetDurationFromCost(Configuration* cfg,
 | 
			
		||||
                                    << "end_datetime" << end_datetime.toString(Qt::ISODate)
 | 
			
		||||
                                    << "price" << price;
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
                        return end_datetime.toString(Qt::ISODate).toStdString();
 | 
			
		||||
                        if (overPaid) {
 | 
			
		||||
                            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);
 | 
			
		||||
                    }
 | 
			
		||||
                }
 | 
			
		||||
 | 
			
		||||
@@ -969,7 +1544,10 @@ std::string Calculator::GetDurationFromCost(Configuration* cfg,
 | 
			
		||||
                            << "final price" << std::max(price, minParkingPrice);
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
                return end_datetime.toString(Qt::ISODate).toStdString();
 | 
			
		||||
                if (overPaid) {
 | 
			
		||||
                    return std::make_pair(CalcState::OVERPAID.toStdString(), end_datetime);
 | 
			
		||||
                }
 | 
			
		||||
                return std::make_pair(end_datetime.toString(Qt::ISODate).toStdString(), end_datetime);
 | 
			
		||||
            } // while (timeRangeIt != cfg->TimeRange.cend()) {
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
@@ -978,7 +1556,7 @@ std::string Calculator::GetDurationFromCost(Configuration* cfg,
 | 
			
		||||
                            << "INVALID END TIME";
 | 
			
		||||
#endif
 | 
			
		||||
        end_datetime = QDateTime();
 | 
			
		||||
        return end_datetime.toString(Qt::ISODate).toStdString();
 | 
			
		||||
        return std::make_pair(end_datetime.toString(Qt::ISODate).toStdString(), end_datetime);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    Ticket t = private_GetDurationFromCost(cfg, inputDate, cost, prepaid);
 | 
			
		||||
@@ -986,7 +1564,7 @@ std::string Calculator::GetDurationFromCost(Configuration* cfg,
 | 
			
		||||
    // qCritical().noquote() << t;
 | 
			
		||||
 | 
			
		||||
    // TODO: im fehlerfall
 | 
			
		||||
    return t.getValidUntil().toString(Qt::ISODate).toStdString();
 | 
			
		||||
    return std::make_pair(t.getValidUntil().toString(Qt::ISODate).toStdString(), t.getValidUntil());
 | 
			
		||||
}
 | 
			
		||||
#undef _DEBUG_
 | 
			
		||||
 | 
			
		||||
@@ -1122,7 +1700,7 @@ CalcState Calculator::isParkingAllowedForWeekDay(Configuration const *cfg,
 | 
			
		||||
                            (int)cfg->TimeRange.count(pop_carry_over_end_time_range) <= 0) {
 | 
			
		||||
 | 
			
		||||
                            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
 | 
			
		||||
                        // search entry in time-range-field of tariff-file
 | 
			
		||||
@@ -1416,7 +1994,10 @@ double Calculator::GetCostFromDuration(Configuration* cfg,
 | 
			
		||||
    Q_UNUSED(payment_option);
 | 
			
		||||
    Q_UNUSED(nextDay);
 | 
			
		||||
 | 
			
		||||
    int const paymentOptionIndex = cfg->getPaymentOptionIndex(permitType.get());
 | 
			
		||||
    int paymentOptionIndex = getPaymentOptionIndex(*cfg, start_datetime);
 | 
			
		||||
    if (paymentOptionIndex == -1) {
 | 
			
		||||
        paymentOptionIndex = cfg->getPaymentOptionIndex(permitType.get());
 | 
			
		||||
    }
 | 
			
		||||
    static const PaymentMethod paymentMethodId = Utilities::getPaymentMethodId(cfg);
 | 
			
		||||
    if (paymentMethodId == PaymentMethod::Steps) {
 | 
			
		||||
        if (tariffIs24_7(cfg)) {
 | 
			
		||||
@@ -2568,7 +3149,7 @@ QList<int> &Calculator::GetTimeSteps(Configuration *cfg, int paymentOptionIndex,
 | 
			
		||||
 | 
			
		||||
                        // qCritical() << "(" << __func__ << ":" << __LINE__ << ")            runtime in minutes (1):" << runtimeInMinutes;
 | 
			
		||||
 | 
			
		||||
                        int const pop_truncate_last_interpolation_step = cfg->getPaymentOptions(paymentOptionIndex).pop_truncate_last_interpolation_step;
 | 
			
		||||
                        // int const pop_truncate_last_interpolation_step = cfg->getPaymentOptions(paymentOptionIndex).pop_truncate_last_interpolation_step;
 | 
			
		||||
 | 
			
		||||
                        // TODO: auslagern
 | 
			
		||||
                        for (auto[itr, rangeEnd] = cfg->PaymentRate.equal_range(pop_id); itr != rangeEnd; ++itr) {
 | 
			
		||||
@@ -2593,7 +3174,7 @@ QList<int> &Calculator::GetTimeSteps(Configuration *cfg, int paymentOptionIndex,
 | 
			
		||||
                            auto search = cfg->Duration.find(durationId);
 | 
			
		||||
                            if (search != cfg->Duration.end()) {
 | 
			
		||||
                                ATBDuration duration = search->second;
 | 
			
		||||
                                ATBDuration &previous = search->second;
 | 
			
		||||
                                // ATBDuration &previous = search->second;
 | 
			
		||||
 | 
			
		||||
                                if (duration.pun_interpolation_id == -1) {
 | 
			
		||||
 | 
			
		||||
@@ -2623,7 +3204,7 @@ QList<int> &Calculator::GetTimeSteps(Configuration *cfg, int paymentOptionIndex,
 | 
			
		||||
                                        // qCritical() << "(" << __func__ << ":" << __LINE__ << ")         interpolation dynamic end:" << interpolationEnd.toString(Qt::ISODate);
 | 
			
		||||
                                        // qCritical() << "(" << __func__ << ":" << __LINE__ << ")    interpolation dynamic end time:" << end_time;
 | 
			
		||||
 | 
			
		||||
                                        int pop_min_time = cfg->getPaymentOptions(paymentOptionIndex).pop_min_time;
 | 
			
		||||
                                        // int pop_min_time = cfg->getPaymentOptions(paymentOptionIndex).pop_min_time;
 | 
			
		||||
 | 
			
		||||
                                        runtimeInMinutes += duration.pun_duration;
 | 
			
		||||
                                        nextTimeStep = start.addSecs(runtimeInMinutes * 60);
 | 
			
		||||
@@ -2700,7 +3281,7 @@ QList<int> &Calculator::GetTimeSteps(Configuration *cfg, int paymentOptionIndex,
 | 
			
		||||
                                        //qCritical() << "(" << __func__ << ":" << __LINE__ << ")            runtime in minutes:" << runtimeInMinutes;
 | 
			
		||||
 | 
			
		||||
                                        QDateTime s = start.addSecs(runtimeInMinutes * 60);
 | 
			
		||||
                                        int const minutes = s.time().secsTo(carryOverStart) / 60;
 | 
			
		||||
                                        // int const minutes = s.time().secsTo(carryOverStart) / 60;
 | 
			
		||||
 | 
			
		||||
#if 0
 | 
			
		||||
                                        if (minutes > 0) {
 | 
			
		||||
 
 | 
			
		||||
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							@@ -207,7 +207,13 @@ bool Utilities::IsYearPeriodActive(Configuration const *cfg, QDateTime const &dt
 | 
			
		||||
                              dt.date().day());
 | 
			
		||||
                QDate const s(2004, year.second.pye_start_month, year.second.pye_start_day);
 | 
			
		||||
                QDate const e(2004, year.second.pye_end_month, year.second.pye_end_day);
 | 
			
		||||
                return (d >= s && d <= e);
 | 
			
		||||
                //qCritical() << __func__ << __LINE__ << "    d" << d.toString(Qt::ISODate);
 | 
			
		||||
                //qCritical() << __func__ << __LINE__ << "start" << s.toString(Qt::ISODate);
 | 
			
		||||
                //qCritical() << __func__ << __LINE__ << "  end" << e.toString(Qt::ISODate);
 | 
			
		||||
                if (s <= e) {
 | 
			
		||||
                    return (d >= s && d <= e);
 | 
			
		||||
                }
 | 
			
		||||
                return (d >= s || d <= e);
 | 
			
		||||
            })) {
 | 
			
		||||
        qCritical() << "NO VALID YEAR PERIOD";
 | 
			
		||||
        return false;
 | 
			
		||||
@@ -421,6 +427,8 @@ PaymentMethod Utilities::getPaymentMethodId(Configuration const *cfg) {
 | 
			
		||||
            return PaymentMethod::Degressive;
 | 
			
		||||
        case PaymentMethod::Progressive:
 | 
			
		||||
            return PaymentMethod::Progressive;
 | 
			
		||||
        case PaymentMethod::Unified:
 | 
			
		||||
            return PaymentMethod::Unified;
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										157
									
								
								main/main.cpp
									
									
									
									
									
								
							
							
						
						
									
										157
									
								
								main/main.cpp
									
									
									
									
									
								
							@@ -43,7 +43,7 @@ extern "C" char* strptime(const char* s,
 | 
			
		||||
#define NEUHAUSER_LINSINGER_MASCHINENBAU        (0)
 | 
			
		||||
#define NEUHAUSER_NORDISCHES_AUSBILDUNGSZENTRUM (0)
 | 
			
		||||
#define NEUHAUSER_BILEXA_GALTUER                (0)
 | 
			
		||||
#define BAD_NEUENAHR_AHRWEILER                  (0)
 | 
			
		||||
#define BAD_NEUENAHR_AHRWEILER                  (1)
 | 
			
		||||
#define NEUHAUSER_CHRISTOPH_REISEN              (0)
 | 
			
		||||
#define NEUHAUSER_PERNEGG_AN_DER_MUR            (0)
 | 
			
		||||
#define NEUHAUSER_STOCKERAU                     (0)
 | 
			
		||||
@@ -51,7 +51,7 @@ extern "C" char* strptime(const char* s,
 | 
			
		||||
#define SEXTEN                                  (0)
 | 
			
		||||
#define SCHNALS_LEITER_KIRCHL                   (0)
 | 
			
		||||
#define SCHNALS_STAUMAUER                       (SCHNALS_LEITER_KIRCHL)
 | 
			
		||||
#define VALSER_ALM                              (1)
 | 
			
		||||
#define VALSER_ALM                              (0)
 | 
			
		||||
 | 
			
		||||
#if NEUHAUSER_KIRCHDORF==1
 | 
			
		||||
static bool test_neuhauser_kirchdorf(int step, double cost) {
 | 
			
		||||
@@ -339,20 +339,20 @@ int main() {
 | 
			
		||||
    cout << endl;
 | 
			
		||||
 | 
			
		||||
    if (isParsed) {
 | 
			
		||||
        pop_min_time = get_minimal_parkingtime(&cfg);
 | 
			
		||||
        pop_max_time = get_maximal_parkingtime(&cfg);
 | 
			
		||||
        pop_min_price = get_minimal_parkingprice(&cfg);
 | 
			
		||||
        pop_max_price = get_maximal_parkingprice(&cfg);
 | 
			
		||||
        pop_daily_card_price = cfg.getPaymentOptions().pop_daily_card_price;
 | 
			
		||||
        //pop_min_time = get_minimal_parkingtime(&cfg);
 | 
			
		||||
        //pop_max_time = get_maximal_parkingtime(&cfg);
 | 
			
		||||
        //pop_min_price = get_minimal_parkingprice(&cfg);
 | 
			
		||||
        //pop_max_price = get_maximal_parkingprice(&cfg);
 | 
			
		||||
        //pop_daily_card_price = cfg.getPaymentOptions().pop_daily_card_price;
 | 
			
		||||
 | 
			
		||||
        qCritical() << "        pop_min_time: " << pop_min_time;
 | 
			
		||||
        qCritical() << "        pop_max_time: " << pop_max_time;
 | 
			
		||||
        qCritical() << "       pop_min_price: " << pop_min_price;
 | 
			
		||||
        qCritical() << "       pop_max_price: " << pop_max_price;
 | 
			
		||||
        //qCritical() << "        pop_min_time: " << pop_min_time;
 | 
			
		||||
        //qCritical() << "        pop_max_time: " << pop_max_time;
 | 
			
		||||
        //qCritical() << "       pop_min_price: " << pop_min_price;
 | 
			
		||||
        //qCritical() << "       pop_max_price: " << pop_max_price;
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
        QList<int> timeSteps = Calculator::GetInstance().GetTimeSteps(&cfg);
 | 
			
		||||
        qCritical() << "TimeSteps" << timeSteps;
 | 
			
		||||
        //QList<int> timeSteps = Calculator::GetInstance().GetTimeSteps(&cfg);
 | 
			
		||||
        //qCritical() << "TimeSteps" << timeSteps;
 | 
			
		||||
 | 
			
		||||
        // return 0;
 | 
			
		||||
 | 
			
		||||
@@ -363,8 +363,7 @@ int main() {
 | 
			
		||||
 | 
			
		||||
        // for (int day = Qt::Monday; day <= Qt::Sunday; ++day) {
 | 
			
		||||
        for (int day = Qt::Monday; day <= Qt::Monday; ++day) {
 | 
			
		||||
            QDateTime s(QDate(2024, 7, 29 + day), QTime()); // 20: (whit) monday,..., 26: sunday
 | 
			
		||||
            QDateTime end;
 | 
			
		||||
            QDateTime s(QDate(2024, 8, 19 + day), QTime()); // 20: (whit) monday,..., 26: sunday
 | 
			
		||||
 | 
			
		||||
            switch (day) {
 | 
			
		||||
            case (int)Qt::Monday:
 | 
			
		||||
@@ -390,6 +389,30 @@ int main() {
 | 
			
		||||
                break;
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            QDateTime start(s);
 | 
			
		||||
            start.setTime(QTime(21, 30, 0));
 | 
			
		||||
 | 
			
		||||
            QDateTime end;
 | 
			
		||||
            int netto_parking_time = 14 * 60;
 | 
			
		||||
            struct price_t costs;
 | 
			
		||||
            PermitType pt(PERMIT_TYPE::SHORT_TERM_PARKING);
 | 
			
		||||
 | 
			
		||||
            double cost = 150;
 | 
			
		||||
 | 
			
		||||
            //cs = compute_price_for_parking_ticket(&cfg, start, netto_parking_time,
 | 
			
		||||
            //                                      end, &costs, pt);
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
            //qCritical() << "start" << start.toString(Qt::ISODate) << "< cost" << costs.netto
 | 
			
		||||
            //            << "> end" << end.toString(Qt::ISODate);
 | 
			
		||||
 | 
			
		||||
            cs = compute_duration_for_parking_ticket(&cfg, start, cost, end, PermitType(PERMIT_TYPE::SHORT_TERM_PARKING));
 | 
			
		||||
                        qCritical() << "start" << start.toString(Qt::ISODate) << "< cost" << cost
 | 
			
		||||
                                    << "> end" << end.toString(Qt::ISODate);
 | 
			
		||||
            //}
 | 
			
		||||
 | 
			
		||||
            exit(0);
 | 
			
		||||
 | 
			
		||||
            /*
 | 
			
		||||
            CalcState CALCULATE_LIBRARY_API compute_price_for_parking_ticket(
 | 
			
		||||
@@ -732,7 +755,7 @@ int main() {
 | 
			
		||||
    int pop_max_price;
 | 
			
		||||
    int pop_daily_card_price;
 | 
			
		||||
 | 
			
		||||
    int zone = 3;
 | 
			
		||||
    int zone = 1;
 | 
			
		||||
 | 
			
		||||
    if (zone == 1) {
 | 
			
		||||
        input.open("/opt/ptu5/opt/customer_502/etc/psa_tariff/tariff01.json");
 | 
			
		||||
@@ -821,7 +844,7 @@ int main() {
 | 
			
		||||
            CalcState calcState;
 | 
			
		||||
            QDateTime s(QDateTime::currentDateTime());
 | 
			
		||||
 | 
			
		||||
            s.setTime(QTime(12, 0, 0));
 | 
			
		||||
            // s.setTime(QTime(12, 0, 0));
 | 
			
		||||
 | 
			
		||||
            //calcState = compute_duration_for_parking_ticket(&cfg, s,
 | 
			
		||||
            //                                    (double)1200, end, PermitType(PERMIT_TYPE::SHORT_TERM_PARKING_PKW));
 | 
			
		||||
@@ -829,9 +852,26 @@ int main() {
 | 
			
		||||
            //qCritical() << calcState.toString();
 | 
			
		||||
 | 
			
		||||
            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() << 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) {
 | 
			
		||||
@@ -1357,7 +1397,7 @@ int main() {
 | 
			
		||||
    int pop_carry_over;
 | 
			
		||||
    int pop_carry_over_time_range_id;
 | 
			
		||||
 | 
			
		||||
    for (int zone=1; zone < 2; ++zone) {
 | 
			
		||||
    for (int zone=2; zone < 3; ++zone) {
 | 
			
		||||
    //for (int t=6; t < 7; t+=20) {
 | 
			
		||||
        switch (zone) {
 | 
			
		||||
        case 1: {
 | 
			
		||||
@@ -1366,8 +1406,10 @@ int main() {
 | 
			
		||||
            //pop_max_time = 6*60;
 | 
			
		||||
        } break;
 | 
			
		||||
        case 2: {
 | 
			
		||||
            qCritical() << "        ZONE 2: KURZZEIT 1";
 | 
			
		||||
            // 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;
 | 
			
		||||
        } break;
 | 
			
		||||
        case 3: {
 | 
			
		||||
@@ -1408,6 +1450,7 @@ int main() {
 | 
			
		||||
        cout << endl;
 | 
			
		||||
 | 
			
		||||
        if (isParsed) {
 | 
			
		||||
 | 
			
		||||
            // test library functions
 | 
			
		||||
 | 
			
		||||
            if (zone == 1) {
 | 
			
		||||
@@ -1434,10 +1477,10 @@ int main() {
 | 
			
		||||
                static QList<int> const timeSteps = Calculator::GetInstance().GetTimeSteps(&cfg);
 | 
			
		||||
                qCritical() << "TimeSteps" << timeSteps;
 | 
			
		||||
 | 
			
		||||
                if (stepsConfigured != timeSteps) {
 | 
			
		||||
                    qCritical() << "TIME-STEPS SHOULD BE" << stepsConfigured;
 | 
			
		||||
                    return -1;
 | 
			
		||||
                }
 | 
			
		||||
                //if (stepsConfigured != timeSteps) {
 | 
			
		||||
                //    qCritical() << "TIME-STEPS SHOULD BE" << stepsConfigured;
 | 
			
		||||
                //    return -1;
 | 
			
		||||
                //}
 | 
			
		||||
 | 
			
		||||
                QDateTime start = QDateTime::currentDateTime();
 | 
			
		||||
 | 
			
		||||
@@ -1445,7 +1488,8 @@ int main() {
 | 
			
		||||
                double price1 = 0;
 | 
			
		||||
                double price2 = 0;
 | 
			
		||||
 | 
			
		||||
                for (int m=0; m < 1440; ++m) {
 | 
			
		||||
                //for (int m=0; m < 1440; ++m) {
 | 
			
		||||
                for (int m=480; m < 481; ++m) {
 | 
			
		||||
                    start.setTime(QTime(0, 0, 0));
 | 
			
		||||
                    start = start.addSecs(m*60);
 | 
			
		||||
 | 
			
		||||
@@ -1462,7 +1506,7 @@ int main() {
 | 
			
		||||
                    //}
 | 
			
		||||
 | 
			
		||||
                    CalcState cs;
 | 
			
		||||
 | 
			
		||||
#if 1
 | 
			
		||||
                    for (int i = 0, j=timeSteps.size() ; i < timeSteps.size(); --j, ++i) {
 | 
			
		||||
                        QDateTime end = start.addSecs(timeSteps.at(i)*60);
 | 
			
		||||
 | 
			
		||||
@@ -1497,6 +1541,21 @@ int main() {
 | 
			
		||||
                        //                                                                     cost[i], false, true);
 | 
			
		||||
                        //qCritical() << "duration" << duration.c_str();
 | 
			
		||||
                    }
 | 
			
		||||
#else
 | 
			
		||||
 | 
			
		||||
                    double cost = 80;
 | 
			
		||||
                    qCritical() << "START" << start.toString(Qt::ISODate) << "cost" << cost;
 | 
			
		||||
                    QDateTime end;
 | 
			
		||||
 | 
			
		||||
                    cs = compute_duration_for_parking_ticket(&cfg, start, cost, end,
 | 
			
		||||
                                                             PermitType(PERMIT_TYPE::SHORT_TERM_PARKING));
 | 
			
		||||
                        qCritical() << __LINE__ << cs.toString()
 | 
			
		||||
                                    << "START" << start.toString(Qt::ISODate)
 | 
			
		||||
                                    << "<duration" << start.secsTo(end) / 60
 | 
			
		||||
                                    << "cost" << cost
 | 
			
		||||
                                    << "> end" << end.toString(Qt::ISODate);
 | 
			
		||||
                    //}
 | 
			
		||||
#endif
 | 
			
		||||
                }
 | 
			
		||||
            } // zone == 1
 | 
			
		||||
            if (zone == 2) {
 | 
			
		||||
@@ -1534,18 +1593,20 @@ int main() {
 | 
			
		||||
                bool fail;
 | 
			
		||||
                QDateTime start;
 | 
			
		||||
 | 
			
		||||
                for (int i=0; i < 4; ++i) {
 | 
			
		||||
                for (int i=1; i < 2; ++i) {
 | 
			
		||||
                    switch (i) {
 | 
			
		||||
                    case 0:
 | 
			
		||||
                        start = QDateTime(QDate(2024, 5, 1), QTime(16, 0, 0)); // holiday
 | 
			
		||||
                        fail = false;
 | 
			
		||||
                    break;
 | 
			
		||||
                    case 1:
 | 
			
		||||
                        start = QDateTime(QDate(2024, 4, 21), QTime(16, 0, 0)); // sunday
 | 
			
		||||
                        //start = QDateTime(QDate(2024, 10, 3), QTime(17, 0, 0)); // sunday
 | 
			
		||||
                        //start = QDateTime(QDate(2025, 4, 20), QTime(18, 0, 0)); // sunday
 | 
			
		||||
                        start = QDateTime(QDate(2024, 9, 27), QTime(17, 0, 0)); // friday
 | 
			
		||||
                        fail = false;
 | 
			
		||||
                    break;
 | 
			
		||||
                    case 2:
 | 
			
		||||
                        start = QDateTime(QDate(2024, 4, 22), QTime(8, 0, 0)); // monday
 | 
			
		||||
                        start = QDateTime(QDate(2024, 4, 22), QTime(17, 30, 0)); // monday
 | 
			
		||||
                        fail = false;
 | 
			
		||||
                    break;
 | 
			
		||||
                    case 3:
 | 
			
		||||
@@ -1569,18 +1630,52 @@ int main() {
 | 
			
		||||
 | 
			
		||||
                        QList<int>::const_iterator step;
 | 
			
		||||
                        for (step = timeSteps.cbegin(); step != timeSteps.cend(); ++step) {
 | 
			
		||||
                            //qCritical() << __LINE__
 | 
			
		||||
                            //            << "START" << start.toString(Qt::ISODate)
 | 
			
		||||
                            //            << "<duration" << *step;
 | 
			
		||||
 | 
			
		||||
                            if (*step != 180)
 | 
			
		||||
                                continue;
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
                            double cost = 0;
 | 
			
		||||
                            CalcState cs;
 | 
			
		||||
 | 
			
		||||
                            if ((cs = compute_price_for_parking_ticket(&cfg, start, *step, end, &price, PermitType(PERMIT_TYPE::SHORT_TERM_PARKING)))) {
 | 
			
		||||
                            QDateTime s(start);
 | 
			
		||||
 | 
			
		||||
                            qCritical() << __LINE__
 | 
			
		||||
                                        << "START" << start.toString(Qt::ISODate)
 | 
			
		||||
                                        << "<duration" << *step;
 | 
			
		||||
 | 
			
		||||
#if 1
 | 
			
		||||
                            if ((cs = compute_price_for_parking_ticket(&cfg, s, *step, end, &price,
 | 
			
		||||
                                                                       PermitType(PERMIT_TYPE::SHORT_TERM_PARKING)))) {
 | 
			
		||||
                                cost = price.netto;
 | 
			
		||||
                                qCritical() << "step" << *step << ": cost" << cost;
 | 
			
		||||
                                qCritical() << __LINE__
 | 
			
		||||
                                            << "START" << start.toString(Qt::ISODate)
 | 
			
		||||
                                            << "<duration" << *step
 | 
			
		||||
                                            << "cost" << cost
 | 
			
		||||
                                            << "> end" << end.toString(Qt::ISODate);
 | 
			
		||||
                            } else {
 | 
			
		||||
                                if (fail == false) {
 | 
			
		||||
                                    qCritical() << "<<<ERROR>>> cs =" << QString(cs);
 | 
			
		||||
                                }
 | 
			
		||||
                            }
 | 
			
		||||
#else
 | 
			
		||||
                            cost = 200;
 | 
			
		||||
                            qCritical() << "START" << start.toString(Qt::ISODate) << "cost" << cost;
 | 
			
		||||
 | 
			
		||||
                            cs = compute_duration_for_parking_ticket(&cfg, start, cost, end,
 | 
			
		||||
                                                                         PermitType(PERMIT_TYPE::SHORT_TERM_PARKING));
 | 
			
		||||
                                qCritical() << __LINE__ << cs.toString()
 | 
			
		||||
                                            << "START" << start.toString(Qt::ISODate)
 | 
			
		||||
                                            << "<duration" << start.secsTo(end) / 60
 | 
			
		||||
                                            << "cost" << cost
 | 
			
		||||
                                            << "> end" << end.toString(Qt::ISODate);
 | 
			
		||||
                            break;
 | 
			
		||||
                            //}
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
                        }
 | 
			
		||||
                    } else {
 | 
			
		||||
                        qCritical() << "ERROR paymentOptionIndex =" << paymentOptionIndex;
 | 
			
		||||
 
 | 
			
		||||
@@ -30,9 +30,16 @@ SOURCES += main.cpp
 | 
			
		||||
# HEADERS +=
 | 
			
		||||
 | 
			
		||||
OTHER_FILES += \
 | 
			
		||||
    /opt/ptu5/opt/customer_502/etc/psa_tariff/tariff01.json \
 | 
			
		||||
    /opt/ptu5/opt/customer_502/etc/psa_tariff/tariff02.json \
 | 
			
		||||
    /opt/ptu5/opt/customer_502/etc/psa_tariff/tariff03.json
 | 
			
		||||
    /opt/ptu5/opt/customer_335/etc/psa_tariff/tariff01.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/tariff02.json \
 | 
			
		||||
    /opt/ptu5/opt/customer_249/etc/psa_tariff/tariff03.json \
 | 
			
		||||
    /opt/ptu5/opt/customer_249/etc/psa_tariff/tariff04.json \
 | 
			
		||||
    /opt/ptu5/opt/customer_249/etc/psa_tariff/tariff05.json \
 | 
			
		||||
    /opt/ptu5/opt/customer_249/etc/psa_tariff/tariff06.json \
 | 
			
		||||
    /opt/ptu5/opt/customer_249/etc/psa_tariff/tariff07.json \
 | 
			
		||||
    /opt/ptu5/opt/customer_249/etc/psa_tariff/tariff08.json
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user