|
@@ -552,7 +552,7 @@ public class CzrkServiceImpl implements ICzrkService {
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public JSONObject stsByApplet(Long provinceId, Long cityId, Long regionId, Long townId, Long villageId, String userName, String queryType, String houseType) {
|
|
|
+ public JSONObject stsByApplet(Long provinceId, Long cityId, Long regionId, Long townId, Long villageId, String userName, String queryType, String houseType,String isConfirm) {
|
|
|
Long areaId = null;
|
|
|
int type = 0, yrl = 0, wrl = 0;
|
|
|
if (ObjectUtils.isNotEmpty(provinceId)) {
|
|
@@ -574,11 +574,11 @@ public class CzrkServiceImpl implements ICzrkService {
|
|
|
|
|
|
if (Czrk.HJ.equals(queryType)) {
|
|
|
// 户籍
|
|
|
- yrl = czrkMapper.stsByYrl(type, areaId, userName, houseType);
|
|
|
- wrl = czrkMapper.stsByWrl(type, areaId, userName, houseType);
|
|
|
+ yrl = czrkMapper.stsByYrl(type, areaId, userName, houseType,isConfirm);
|
|
|
+ wrl = czrkMapper.stsByWrl(type, areaId, userName, houseType,isConfirm);
|
|
|
} else {
|
|
|
// 常住
|
|
|
- List<Czrk> rls = czrkMapper.stsByAppletCz(type, areaId, userName, houseType);
|
|
|
+ List<Czrk> rls = czrkMapper.stsByAppletCz(type, areaId, userName, houseType,isConfirm);
|
|
|
for (Czrk czrk : rls) {
|
|
|
if ("是".equals(czrk.getIsRl())) {
|
|
|
yrl++;
|