|
@@ -196,7 +196,7 @@ public class IssueTicketsActivity extends BaseActivity {
|
|
|
tx_issue_txt.setVisibility(View.GONE);
|
|
|
img_issue_tickets.setImageBitmap(BitmapFactory.decodeResource(getResources(), R.mipmap.take_not));
|
|
|
}
|
|
|
- if(printerStatus != 0){
|
|
|
+ if(printerStatus != 0 && printerStatus != 3){
|
|
|
String msg = printerStatus == -1 ? "打印机脱机或打印服务还未连接打印机" : printerStatus == 1 ? "打印机开盖" : printerStatus == 2 ? "打印机缺纸" : printerStatus == 3 ? "打印机即将缺纸" : "打印机过热";
|
|
|
Toast.makeText(this, msg, Toast.LENGTH_SHORT).show();
|
|
|
return;
|
|
@@ -206,33 +206,36 @@ public class IssueTicketsActivity extends BaseActivity {
|
|
|
for (int i = 0; i < rowItem.size(); i++) {
|
|
|
// 打印文本
|
|
|
if(rowItem.getJSONObject(i).getString("printType").equals("text")){
|
|
|
- ext.printText(rowItem.getJSONObject(i).getString("printContent"));
|
|
|
int hori = rowItem.getJSONObject(i).getInteger("hori");
|
|
|
int veri = rowItem.getJSONObject(i).getInteger("veri");
|
|
|
ext.setFontZoom(hori, veri);
|
|
|
// 对其方式
|
|
|
int alignMode = rowItem.getJSONObject(i).getInteger("alignMode");
|
|
|
ext.setAlignMode(alignMode);
|
|
|
+
|
|
|
+ ext.printText(rowItem.getJSONObject(i).getString("printContent"));
|
|
|
}
|
|
|
// 打印二维码
|
|
|
if(rowItem.getJSONObject(i).getString("printType").equals("qrcode")){
|
|
|
- String eqCode = rowItem.getJSONObject(i).getString("printContent");
|
|
|
- int qrcodeSize = rowItem.getJSONObject(i).getInteger("qrcodeSize");
|
|
|
- ext.printQrCode(eqCode, qrcodeSize, 0);
|
|
|
// 对其方式
|
|
|
int alignMode = rowItem.getJSONObject(i).getInteger("alignMode");
|
|
|
ext.setAlignMode(alignMode);
|
|
|
+
|
|
|
+ String eqCode = rowItem.getJSONObject(i).getString("printContent");
|
|
|
+ int qrcodeSize = rowItem.getJSONObject(i).getInteger("qrcodeSize");
|
|
|
+ ext.printQrCode(eqCode, qrcodeSize, 0);
|
|
|
}
|
|
|
// 打印条形码
|
|
|
if(rowItem.getJSONObject(i).getString("printType").equals("barCode")){
|
|
|
+ // 对其方式
|
|
|
+ int alignMode = rowItem.getJSONObject(i).getInteger("alignMode");
|
|
|
+ ext.setAlignMode(alignMode);
|
|
|
+
|
|
|
String barCode = rowItem.getJSONObject(i).getString("printContent");
|
|
|
int barCodeType = rowItem.getJSONObject(i).getInteger("barCodeType");
|
|
|
int width = rowItem.getJSONObject(i).getInteger("width");
|
|
|
int height = rowItem.getJSONObject(i).getInteger("height");
|
|
|
ext.printBarCode(barCode, barCodeType, width, height, 1);
|
|
|
- // 对其方式
|
|
|
- int alignMode = rowItem.getJSONObject(i).getInteger("alignMode");
|
|
|
- ext.setAlignMode(alignMode);
|
|
|
}
|
|
|
// 打印走纸
|
|
|
if(rowItem.getJSONObject(i).getString("printType").equals("wrpe")){
|