打印报错修复

This commit is contained in:
SongZhang 2024-10-14 09:38:25 +08:00
parent 45dc370713
commit ebdf2f873a
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ public class CloudPrinterService {
String model = tbPrintMachineWithBLOBs.getPrintMethod();
String printerNum = StrUtil.isEmpty(tbPrintMachineWithBLOBs.getPrintQty()) ? "1" : tbPrintMachineWithBLOBs.getPrintQty().split("^")[1];
String printerNum = StrUtil.isEmpty(tbPrintMachineWithBLOBs.getPrintQty()) ? "1" : tbPrintMachineWithBLOBs.getPrintQty().split("\\^")[1];
List<CategoryInfo> categoryInfos = JSONUtil.parseJSONStr2TList(StrUtil.emptyToDefault(tbPrintMachineWithBLOBs.getCategoryList(),"[]"), CategoryInfo.class);