private void btnLastReceiptInfo_Click(object sender, EventArgs e) { lastCmd = FiscalCmd.LAST_RECEIPT_INFO; try { SendCommand(new CPResponse(bridge.Printer.GetLastDocumentInfo(false))); } catch { bridge.Log(FormMessage.OPERATION_FAILS); } }
private void btnDrawerInfo_Click(object sender, EventArgs e) { lastCmd = FiscalCmd.DRAWER_INFO; try { SendCommand(new CPResponse(bridge.Printer.GetDrawerInfo())); } catch { bridge.Log(FormMessage.OPERATION_FAILS); } }