Commit 60f5c6c4 authored by dahai's avatar dahai

push

parent 2551e798
......@@ -70,6 +70,7 @@ public class ReceiptApi {
receiptService.createDetailedList(uploadNo, acceptNo2, name2, id, gajg_dm, receiptId, sex, signGovt);
Map<String,Object> map = new HashMap<>();
map.put("show",true);
map.put("state",1);
map.put("msg","生成交接单");
map.put("id",S);
return map;
......@@ -77,6 +78,7 @@ public class ReceiptApi {
//已经生成特证交接单,不做操作。
Map<String,Object> map = new HashMap<>();
map.put("show",false);
map.put("state",2);
map.put("msg","已生成交接单");
map.put("id",mapList.get(0).get("ID"));
return map;
......@@ -129,6 +131,7 @@ public class ReceiptApi {
}
Map<String,Object> map = new HashMap<>();
map.put("show",true);
map.put("state",1);
map.put("id",receiptList);
return map;
......@@ -137,12 +140,14 @@ public class ReceiptApi {
Map<String,Object> map = new HashMap<>();
map.put("show",false);
map.put("msg","已生成交接单");
map.put("state",2);
map.put("id",mapList.get(0).get("ID"));
return map;
}
}
Map<String,Object> map = new HashMap<>();
map.put("show",false);
map.put("state",3);
map.put("msg","未查询出对应的信息");
return map;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment