代码更新

This commit is contained in:
2022-11-24 16:00:36 +08:00
parent 3665812eda
commit dde7740d79

View File

@@ -45,7 +45,6 @@ public class PrintServiceImpl implements PrintService {
public JSONObject customerPrint(JSONObject whereJson) {
JSONObject jo = new JSONObject();
try {
String box_no = whereJson.getString("box_no");
JSONObject box_jo = WQL.getWO("PDA_ST_01").addParam("flag", "5").addParam("box_no", box_no).process().uniqueResult(0);
@@ -93,7 +92,7 @@ public class PrintServiceImpl implements PrintService {
// 生成txt文件
String filePath = "//10.1.3.21" + "/LMSPrinter" + "外包标签.txt";
FileWriter fw = null;
try {
File file = new File(filePath);
if (!file.exists()) {
file.createNewFile();
@@ -121,6 +120,12 @@ public class PrintServiceImpl implements PrintService {
bw.close();
} catch (Exception e) {
jo.put("message", "打印失败!"+e.getMessage());
} finally {
try {
fw.close();
} catch (Exception e) {
jo.put("message", "打印失败!"+e.getMessage());
}
}
jo.put("message", "打印成功!");
return jo;