From dbe649d0e4def1690f6b5575c673bfb1a4ca29d7 Mon Sep 17 00:00:00 2001 From: Gerhard Hoffmann Date: Fri, 19 Apr 2024 13:12:46 +0200 Subject: [PATCH] Add member variables pop_carry_over_start_time_range pop_carry_over_end_time_range: If carry-over has been set, then provide the limits for the carry-over: at the end of day1 (start) and at the beginning of the next day (end). --- library/include/mobilisis/payment_opt.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/library/include/mobilisis/payment_opt.h b/library/include/mobilisis/payment_opt.h index b5751ae..4c698af 100644 --- a/library/include/mobilisis/payment_opt.h +++ b/library/include/mobilisis/payment_opt.h @@ -23,6 +23,8 @@ public: pop_max_price = 0; pop_carry_over = -1; pop_carry_over_time_range_id = -1; + pop_carry_over_start_time_range = -1; + pop_carry_over_end_time_range = -1; pop_daily_card_price = -1; pop_business_hours = -1; pop_time_step_config = -1; @@ -40,6 +42,8 @@ public: double pop_max_price; int pop_carry_over; int pop_carry_over_time_range_id; + int pop_carry_over_start_time_range; + int pop_carry_over_end_time_range; int pop_daily_card_price; uint64_t pop_business_hours; int pop_time_step_config;