Compare commits

..

No commits in common. "6ef57792ceb918b13da9df59b908954de61aaca7" and "25b3143d887a7884cfd266b7d4a2f118d45553ae" have entirely different histories.

3 changed files with 16 additions and 34 deletions

View File

@ -28,7 +28,6 @@
#include "tariff_interpolation.h"
#include "tariff_prepaid.h"
#include "tariff_carryover.h"
#include "tariff_prepay.h"
#include "tariff_permit_type.h"
#include <QVector>
@ -48,7 +47,6 @@ public:
using ATBPaymentOptionType = std::multimap<int, ATBPaymentOption>;
using TariffInterpolationType = std::multimap<int, ATBInterpolation>;
using TariffPrepaidType = std::multimap<int, ATBPrepaid>;
using TariffPrepayOptionType = std::multimap<int, ATBPrepay>;
using TariffCarryOverType = std::multimap<int, ATBCarryOver>;
using TariffDurationType = std::multimap<int, ATBDuration>;
@ -56,7 +54,7 @@ public:
ATBCurrency Currency;
ATBDuration duration;
TariffDurationType Duration;
TariffDurationType Duration;
multimap<int, ATBPaymentMethod> PaymentMethod;
multimap<int, ATBPaymentRate> PaymentRate;
SpecialDaysWorktimeType SpecialDaysWorktime;
@ -73,7 +71,6 @@ public:
TariffProductType TariffProduct;
TariffInterpolationType TariffInterpolations;
TariffPrepaidType TariffPrepaidOptions;
TariffPrepayOptionType TariffPrepayOptions;
TariffCarryOverType TariffCarryOverOptions;
/// <summary>

View File

@ -12,12 +12,7 @@ public:
, pun_duration_saved(0)
, pun_duration_min(0)
, pun_duration_max(0)
, pun_interpolation_id(-1)
, pun_netto(false)
, pun_brutto(false)
, pun_fixed(false)
, pun_requires_change(false)
, pun_next_step_correction(0) {
, pun_interpolation_id(-1) {
}
friend QDebug operator<<(QDebug debug, ATBDuration const &td) {
@ -30,10 +25,6 @@ public:
<< " pun_duration_saved: " << td.pun_duration_saved << "\n"
<< " pun_duration_min: " << td.pun_duration_min << "\n"
<< " pun_duration_max: " << td.pun_duration_max << "\n"
<< " pun_netto: " << td.pun_netto << "\n"
<< " pun_brutto: " << td.pun_brutto << "\n"
<< " pun_fixed: " << td.pun_fixed << "\n"
<< " pun_requires_change: " << td.pun_requires_change << "\n"
<< "pun_interpolation_id: " << td.pun_interpolation_id << "\n";
return debug;
@ -42,13 +33,8 @@ public:
int pun_id;
std::string pun_label;
int pun_duration;
int pun_duration_saved;
int pun_duration_min;
int pun_duration_max;
int pun_interpolation_id;
bool pun_netto; // the timestep expressed by this duration is a netto timestep
bool pun_brutto; // the timestep expressed by this duration is a brutto timestep
bool pun_fixed; // the value given in tariff-file is fixed (constant)
bool pun_requires_change; // the value has to be changes (controlled by other parameters)
int pun_next_step_correction;
int pun_duration_saved;
int pun_duration_min;
int pun_duration_max;
int pun_interpolation_id;
};

View File

@ -13,17 +13,16 @@ enum MemberType
WeekDaysWorkTimeType = 0x06,
SpecialDaysWorktimeType = 0x07,
SpecialDaysType = 0x08,
PeriodYearType = 0x09,
DailyTicketType = 0x0A,
CustomerType = 0x0B,
TimeBaseType = 0x0C,
TimeRangeType = 0x0D,
TimeStepConfigType = 0x0E,
ProductType = 0x0F,
InterpolationType = 0x10,
PrepaidType = 0x11, // deprecated
CarryOverType = 0x12,
PrepaidOptionType = 0x13,
PeriodYearType = 0x09,
DailyTicketType = 0x0A,
CustomerType = 0x0B,
TimeBaseType = 0x0C,
TimeRangeType = 0x0D,
TimeStepConfigType = 0x0E,
ProductType = 0x0F,
InterpolationType = 0x10,
PrepaidType = 0x11,
CarryOverType = 0x12
};
#endif // MEMBER_TYPE_H_INCLUDED