Commit e7b31f0a authored by wangyihao's avatar wangyihao

对直辖市去重

parent 28db76dd
...@@ -324,6 +324,9 @@ public class IndexController { ...@@ -324,6 +324,9 @@ public class IndexController {
} }
Worker worker = new Worker(); Worker worker = new Worker();
worker.setStoreId(storeId); worker.setStoreId(storeId);
worker.setIsShopping(1);
worker.setIsAuditing(1);
worker.setIsDeleted(0);
List<Worker> workerList = workerService.getWorkerList(new Query(worker)); List<Worker> workerList = workerService.getWorkerList(new Query(worker));
if (null != workerList && workerList.size()>0) { if (null != workerList && workerList.size()>0) {
resultInfo.setCode("1"); resultInfo.setCode("1");
......
...@@ -75,6 +75,9 @@ public class WebShopController { ...@@ -75,6 +75,9 @@ public class WebShopController {
} }
Store res = storeService.getStore(storeId); Store res = storeService.getStore(storeId);
if (null != res ) { if (null != res ) {
if(res.getProvince().equals(res.getCityName())) {
res.setCityName("");
}
resultInfo.setCode("1"); resultInfo.setCode("1");
resultInfo.setData(res); resultInfo.setData(res);
}else { }else {
......
...@@ -101,8 +101,12 @@ public class WebWorkerController { ...@@ -101,8 +101,12 @@ public class WebWorkerController {
map.put("serialNumber",res.getSerialNumber()); map.put("serialNumber",res.getSerialNumber());
map.put("storeName",res.getStoreName()); map.put("storeName",res.getStoreName());
map.put("storeBrief",store.getBrief()); map.put("storeBrief",store.getBrief());
map.put("storeCityName",store.getCityName());
map.put("storeProvince",store.getProvince()); map.put("storeProvince",store.getProvince());
if(store.getProvince().equals(store.getCityName())) {
map.put("storeCityName","");
}else {
map.put("storeCityName",store.getCityName());
}
map.put("storeCounty",store.getCounty()); map.put("storeCounty",store.getCounty());
map.put("storeHomePic",store.getStoreHomePic()); map.put("storeHomePic",store.getStoreHomePic());
map.put("storePosition",store.getStorePosition()); map.put("storePosition",store.getStorePosition());
......
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