Update printing ticket (version 2.1)
Use hwapi::prn_getPrintResult() to detect print result.
This commit is contained in:
parent
4a7022fd00
commit
a4d74ed0f7
@ -407,15 +407,38 @@ void ATBDeviceControllerPlugin::onPrinterDataPrepared()
|
|||||||
{
|
{
|
||||||
this->hw->prn_printKombiticket(this->currentSelectedTicketType);
|
this->hw->prn_printKombiticket(this->currentSelectedTicketType);
|
||||||
|
|
||||||
// FAKE SIGNAL:
|
// note: calling prn_getPrintResult() immediately may result in wrong answer!
|
||||||
QTimer::singleShot(4000, this, SLOT(onPrintFinishedOK()));
|
// We have to wait "about some seconds" until calling this function!
|
||||||
|
QTimer::singleShot(4000, this, SLOT(onPrinterWaitForPrinting()));
|
||||||
|
|
||||||
// old: use printer templates:
|
// old: use printer templates:
|
||||||
// this->currentTemplate = 1;
|
// this->currentTemplate = 1;
|
||||||
// this->onPrinterPrintNextTemplate();
|
// this->onPrinterPrintNextTemplate();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void ATBDeviceControllerPlugin::onPrinterWaitForPrinting()
|
||||||
|
{
|
||||||
|
quint8 printerResult = this->hw->prn_getPrintResult();
|
||||||
|
|
||||||
|
switch (printerResult) {
|
||||||
|
case 0: // still printing
|
||||||
|
qCritical() << "--> printer: WaitForPrinting";
|
||||||
|
QTimer::singleShot(2000, this, SLOT(onPrinterWaitForPrinting()));
|
||||||
|
break;
|
||||||
|
case 1: // printing finished, Ok
|
||||||
|
this->onPrintFinishedOK();
|
||||||
|
break;
|
||||||
|
case 2: // printing finished, Error
|
||||||
|
this->onPrintFinishedERR();
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
qCritical() << "DC Error: wait for printing";
|
||||||
|
this->onPrintFinishedERR();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
void ATBDeviceControllerPlugin::onPrinterPrintNextTemplate()
|
void ATBDeviceControllerPlugin::onPrinterPrintNextTemplate()
|
||||||
{
|
{
|
||||||
|
@ -113,6 +113,7 @@ private slots:
|
|||||||
|
|
||||||
void onPrinterDataPrepared();
|
void onPrinterDataPrepared();
|
||||||
void onPrinterPrintNextTemplate();
|
void onPrinterPrintNextTemplate();
|
||||||
|
void onPrinterWaitForPrinting();
|
||||||
|
|
||||||
void onPrintFinishedOK();
|
void onPrintFinishedOK();
|
||||||
void onPrintFinishedERR();
|
void onPrintFinishedERR();
|
||||||
|
Loading…
Reference in New Issue
Block a user