65 lines
1.6 KiB
C++
65 lines
1.6 KiB
C++
#ifndef PAYMENT_OPT_H_INCLUDED
|
|
#define PAYMENT_OPT_H_INCLUDED
|
|
|
|
|
|
#include <string>
|
|
#include <cinttypes>
|
|
|
|
#include <QDateTime>
|
|
|
|
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_max_price = 0;
|
|
pop_carry_over = -1;
|
|
pop_carry_over_target = false;
|
|
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;
|
|
}
|
|
|
|
int pop_id;
|
|
std::string pop_label;
|
|
int pop_payment_method_id;
|
|
std::string pop_day_end_time;
|
|
std::string pop_day_night_end_time;
|
|
double pop_price_night;
|
|
double pop_min_time;
|
|
double pop_max_time;
|
|
double pop_min_price;
|
|
double pop_max_price;
|
|
int pop_carry_over;
|
|
bool pop_carry_over_target;
|
|
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;
|
|
|
|
struct ATBMaxDateTime {
|
|
int direction;
|
|
uint8_t week;
|
|
uint8_t day;
|
|
QTime time;
|
|
} pop_min_date_time,
|
|
pop_max_date_time;
|
|
};
|
|
|
|
#endif // PAYMENT_OPT_H_INCLUDED
|