餐位费 打包费 2

This commit is contained in:
wangw 2025-09-30 15:15:10 +08:00
parent ce6cd6b3da
commit 0e53da8d18
1 changed files with 2 additions and 2 deletions

View File

@ -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);
}