Add object variable currentTicketType
This commit is contained in:
parent
d5786aa5ab
commit
8659627171
@ -67,7 +67,11 @@ ATBDeviceControllerPlugin::ATBDeviceControllerPlugin(QObject *parent)
|
||||
this->diag = new DeviceControllerDiag(this->persistentData, this);
|
||||
connect(this->diag, &DeviceControllerDiag::newVoltage, this, &ATBDeviceControllerPlugin::onNewVoltage);
|
||||
|
||||
|
||||
// currentSelectedTicketType - number of used "Kombiticket" (deprecated) use TICKET_VARIANT in future
|
||||
this->currentSelectedTicketType = 0;
|
||||
this->currentTicketVariant = TICKET_VARIANT::PARKING_TICKET;
|
||||
|
||||
this->currentCashState = CASH_STATE::CACHE_EMPTY;
|
||||
|
||||
this->cashStartAmountInt = 0;
|
||||
@ -606,6 +610,8 @@ void ATBDeviceControllerPlugin::requestPrintTicket(nsDeviceControllerInterface::
|
||||
|
||||
this->templateList.clear();
|
||||
|
||||
this->currentTicketVariant = ticketVariant;
|
||||
|
||||
switch (ticketVariant) {
|
||||
case nsDeviceControllerInterface::TICKET_VARIANT::START_RECEIPT:
|
||||
qCritical() << " -> TICKET_VARIANT::START_RECEIPT";
|
||||
|
@ -131,6 +131,8 @@ private:
|
||||
// dbus
|
||||
int init_sc_dbus();
|
||||
|
||||
// printer privates
|
||||
TICKET_VARIANT currentTicketVariant;
|
||||
QLocale printerLocale;
|
||||
|
||||
private slots:
|
||||
|
Loading…
Reference in New Issue
Block a user