删除辨识部位提示信息修正
parent
f0f9d01c04
commit
ea8dd8e1a6
|
@ -278,7 +278,7 @@ public class IdentificationPartsController extends BaseController {
|
||||||
@DockAnnotation
|
@DockAnnotation
|
||||||
public Object deleteAll() throws Exception{
|
public Object deleteAll() throws Exception{
|
||||||
Map<String,Object> map = new HashMap<String,Object>();
|
Map<String,Object> map = new HashMap<String,Object>();
|
||||||
String errInfo = "success";
|
String errInfo = "fail";
|
||||||
PageData pd = new PageData();
|
PageData pd = new PageData();
|
||||||
pd = this.getPageData();
|
pd = this.getPageData();
|
||||||
String DATA_IDS = pd.getString("DATA_IDS");
|
String DATA_IDS = pd.getString("DATA_IDS");
|
||||||
|
@ -295,11 +295,9 @@ public class IdentificationPartsController extends BaseController {
|
||||||
pd.put("OPERATOR", Jurisdiction.getUsername()); //修改人
|
pd.put("OPERATOR", Jurisdiction.getUsername()); //修改人
|
||||||
pd.put("OPERATTIME", DateUtil.date2Str(new Date())); //修改时间
|
pd.put("OPERATTIME", DateUtil.date2Str(new Date())); //修改时间
|
||||||
identificationpartsService.delete(pd);
|
identificationpartsService.delete(pd);
|
||||||
|
errInfo = "success";
|
||||||
}
|
}
|
||||||
// identificationpartsService.deleteAll(ArrayDATA_IDS);
|
// identificationpartsService.deleteAll(ArrayDATA_IDS);
|
||||||
errInfo = "success";
|
|
||||||
}else{
|
|
||||||
errInfo = "fail";
|
|
||||||
}
|
}
|
||||||
pd.put("DATA_IDS",DATA_IDS);
|
pd.put("DATA_IDS",DATA_IDS);
|
||||||
map.put("dockData", JSON.toJSONString(pd));
|
map.put("dockData", JSON.toJSONString(pd));
|
||||||
|
|
Loading…
Reference in New Issue