checkin for the weekend. proper commit-messages later

This commit is contained in:
2024-02-16 13:37:24 +01:00
parent 1d7779f666
commit c0f0648a74
12 changed files with 3374 additions and 14 deletions

View File

@@ -16,6 +16,7 @@ public:
pop_min_time = 0;
pop_max_time = 0;
pop_min_price = 0;
pop_max_price = 0;
pop_carry_over = -1;
pop_carry_over_time_range_id = -1;
pop_daily_card_price = -1;
@@ -32,6 +33,7 @@ public:
double pop_min_time;
double pop_max_time;
double pop_min_price;
double pop_max_price;
int pop_carry_over;
int pop_carry_over_time_range_id;
int pop_daily_card_price;

View File

@@ -88,6 +88,7 @@ namespace Utilities {
int getMinimalParkingTime(Configuration const *cfg, PaymentMethod methodId);
int getMaximalParkingTime(Configuration const *cfg, PaymentMethod methodId);
uint32_t getMinimalParkingPrice(Configuration const *cfg, PaymentMethod methodId);
uint32_t getMaximalParkingPrice(Configuration const *cfg, PaymentMethod methodId);
uint32_t getFirstDurationStep(Configuration const *cfg, PaymentMethod methodId);
BusinessHours getBusinessHours(Configuration const *cfg, PaymentMethod methodId);
uint32_t computeWeekDaysPrice(Configuration const *cfg, PaymentMethod id);