Commit c4e1d837 by lilei

修改嫌疑人法律文书数据检查

parent 75d460fc
......@@ -271,10 +271,12 @@ public class AjspServiceImpl implements IAjspService {
String nl = xyr.getZhfzxyrNl();
int xyrNl = StringUtils.isEmpty(nl)? 0 : Integer.parseInt(nl);
if("到案".equals(dazt)){
//刑事拘留证或逮捕证任意一个
//刑事拘留证或逮捕证或取保候审决定书或监视居住决定书任意一个
int jlzCount = getFlwsCount(asjbh,"030502","ASJBH");
int dbzCount = getFlwsCount(asjbh,"030603","ASJBH");
detailMap.put("jlzdbz",(jlzCount!=0 || dbzCount!=0)?"1":"0");
int qbhsjdsCount = getFlwsCount(asjbh,"030302","ASJBH");
int jsjzjdsCount = getFlwsCount(asjbh,"030402","ASJBH");
detailMap.put("jlzdbz",(jlzCount!=0 || dbzCount!=0||qbhsjdsCount!=0||jsjzjdsCount!=0)?"1":"0");
}else if("死亡".equals(dazt)){
int swzmCount = getFlwsCount(asjbh,"022106","ASJBH");
detailMap.put("swzm",swzmCount!=0?"1":"0");
......@@ -508,7 +510,7 @@ public class AjspServiceImpl implements IAjspService {
retMap.put("zhdw", "抓获单位");
retMap.put("sfjsb", "是否精神病");
retMap.put("jlzdbz","逮捕证或拘留证");
retMap.put("jlzdbz","逮捕证或拘留证或取保候审决定书或监视居住决定书");
retMap.put("swzm", "死亡证明");
retMap.put("hjzm", "户籍证明");
......
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