diff --git a/cash-service/order-service/src/main/java/com/czg/service/order/print/PrinterImpl.java b/cash-service/order-service/src/main/java/com/czg/service/order/print/PrinterImpl.java index e837c94a..065e67b6 100644 --- a/cash-service/order-service/src/main/java/com/czg/service/order/print/PrinterImpl.java +++ b/cash-service/order-service/src/main/java/com/czg/service/order/print/PrinterImpl.java @@ -299,12 +299,12 @@ public interface PrinterImpl { } } if(StrUtil.isNotBlank(printInfoDTO.getSeatAmount())){ - String row = getRow("餐位费", "", StrUtil.format("{}{}", printInfoDTO.getSeatNum(), printInfoDTO.getSeatAmount()), + String row = getRow("餐位费", "", StrUtil.format("{}{}", printInfoDTO.getSeatNum(),""), toPlainStr(printInfoDTO.getSeatAmount()), 21, 0, 5, 6); data.append(row); } if(StrUtil.isNotBlank(printInfoDTO.getPackFee())){ - String row = getRow("打包费", "", StrUtil.format("{}{}", "", printInfoDTO.getPackFee()), + String row = getRow("打包费", "", "", toPlainStr(printInfoDTO.getPackFee()), 21, 0, 5, 6); data.append(row); }