Add reset()

This commit is contained in:
Gerhard Hoffmann 2024-01-30 10:16:16 +01:00
parent ea5ca54c4c
commit 809df53658

View File

@ -6,6 +6,23 @@ class ATBPaymentOption
public:
ATBPaymentOption() = default;
void reset() {
pop_id = 0;
pop_label = "";
pop_payment_method_id = 0;
pop_day_end_time = "";
pop_day_night_end_time = "";
pop_price_night = 0;
pop_min_time = 0;
pop_max_time = 0;
pop_min_price = 0;
pop_carry_over = -1;
pop_carry_over_time_range_id = -1;
pop_daily_card_price = -1;
pop_business_hours = -1;
pop_time_step_config = -1;
}
int pop_id;
std::string pop_label;
int pop_payment_method_id;