|
@@ -6,13 +6,16 @@ import com.baomidou.mybatisplus.core.conditions.update.LambdaUpdateWrapper;
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
import com.baomidou.mybatisplus.core.toolkit.CollectionUtils;
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
+
|
|
|
import io.swagger.v3.oas.annotations.Operation;
|
|
|
import io.swagger.v3.oas.annotations.tags.Tag;
|
|
|
+
|
|
|
import jakarta.annotation.Resource;
|
|
|
import jakarta.servlet.http.HttpServletRequest;
|
|
|
import jakarta.servlet.http.HttpServletResponse;
|
|
|
-import kotlin.jvm.internal.Lambda;
|
|
|
+
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
+
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
import org.apache.shiro.SecurityUtils;
|
|
|
import org.jeecg.common.api.vo.Result;
|
|
@@ -52,29 +55,22 @@ import java.util.stream.Collectors;
|
|
|
@RestController
|
|
|
@RequestMapping("/usercountry")
|
|
|
@Slf4j
|
|
|
-public class AdwebUserCountryController extends JeecgController<AdwebUserCountry, IAdwebUserCountryService> {
|
|
|
+public class AdwebUserCountryController
|
|
|
+ extends JeecgController<AdwebUserCountry, IAdwebUserCountryService> {
|
|
|
|
|
|
- @Resource
|
|
|
- private IAdwebUserCountryService adwebUserCountryService;
|
|
|
+ @Resource private IAdwebUserCountryService adwebUserCountryService;
|
|
|
|
|
|
- @Resource
|
|
|
- private IAdwebSiteService adwebSiteService;
|
|
|
+ @Resource private IAdwebSiteService adwebSiteService;
|
|
|
|
|
|
- @Resource
|
|
|
- private AdwebUserCountryMapper adwebUserCountryMapper;
|
|
|
+ @Resource private AdwebUserCountryMapper adwebUserCountryMapper;
|
|
|
|
|
|
- @Resource
|
|
|
- private IAdwebCountryService admpCountryService;
|
|
|
+ @Resource private IAdwebCountryService admpCountryService;
|
|
|
|
|
|
- @Resource
|
|
|
- private IAdwebEnquiryService adwebEnquiryService;
|
|
|
+ @Resource private IAdwebEnquiryService adwebEnquiryService;
|
|
|
|
|
|
- @Resource
|
|
|
- private SysAdwebApi sysAdwebApi;
|
|
|
-
|
|
|
- @Resource
|
|
|
- private ISysUserService sysUserService;
|
|
|
+ @Resource private SysAdwebApi sysAdwebApi;
|
|
|
|
|
|
+ @Resource private ISysUserService sysUserService;
|
|
|
|
|
|
/**
|
|
|
* 分页列表查询
|
|
@@ -88,19 +84,19 @@ public class AdwebUserCountryController extends JeecgController<AdwebUserCountry
|
|
|
@AutoLog(value = "adweb_user_country-分页列表查询")
|
|
|
@Operation(summary = "adweb_user_country-分页列表查询")
|
|
|
@GetMapping(value = "/list")
|
|
|
- public Result<?> queryPageList(AdwebUserCountry adwebUserCountry,
|
|
|
- @RequestParam(name = "pageNo", defaultValue = "1") Integer pageNo,
|
|
|
- @RequestParam(name = "pageSize", defaultValue = "10") Integer pageSize,
|
|
|
- HttpServletRequest req) {
|
|
|
- QueryWrapper<AdwebUserCountry> queryWrapper = QueryGenerator.initQueryWrapper(adwebUserCountry, req.getParameterMap());
|
|
|
+ public Result<?> queryPageList(
|
|
|
+ AdwebUserCountry adwebUserCountry,
|
|
|
+ @RequestParam(name = "pageNo", defaultValue = "1") Integer pageNo,
|
|
|
+ @RequestParam(name = "pageSize", defaultValue = "10") Integer pageSize,
|
|
|
+ HttpServletRequest req) {
|
|
|
+ QueryWrapper<AdwebUserCountry> queryWrapper =
|
|
|
+ QueryGenerator.initQueryWrapper(adwebUserCountry, req.getParameterMap());
|
|
|
Page<AdwebUserCountry> page = new Page<AdwebUserCountry>(pageNo, pageSize);
|
|
|
IPage<AdwebUserCountry> pageList = adwebUserCountryService.page(page, queryWrapper);
|
|
|
return Result.OK(pageList);
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * 查询未分配地区
|
|
|
- */
|
|
|
+ /** 查询未分配地区 */
|
|
|
@GetMapping(value = "/undistribute")
|
|
|
public Result<?> undistribute() {
|
|
|
LoginUser loginUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
|
|
@@ -109,24 +105,23 @@ public class AdwebUserCountryController extends JeecgController<AdwebUserCountry
|
|
|
queryWrapper.eq(AdwebUserCountry::getStatus, 1);
|
|
|
List<AdwebUserCountry> userCountries = adwebUserCountryService.list(queryWrapper);
|
|
|
List<AdwebCountry> countries = null;
|
|
|
- if (CollectionUtils.isEmpty(userCountries)) {
|
|
|
+ if (CollectionUtils.isEmpty(userCountries)) {}
|
|
|
|
|
|
- }
|
|
|
return Result.OK();
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * 获取子账户列表
|
|
|
- */
|
|
|
+ /** 获取子账户列表 */
|
|
|
@AutoLog(value = "询盘管理-询盘分配-子账户列表")
|
|
|
@GetMapping(value = "/subAccounts")
|
|
|
- public Result<?> subAccounts(@RequestParam(name = "siteId") Integer siteId,
|
|
|
- @RequestParam(name = "pageNo", defaultValue = "1") Integer pageNo,
|
|
|
- @RequestParam(name = "pageSize", defaultValue = "15") Integer pageSize) {
|
|
|
+ public Result<?> subAccounts(
|
|
|
+ @RequestParam(name = "siteId") Integer siteId,
|
|
|
+ @RequestParam(name = "pageNo", defaultValue = "1") Integer pageNo,
|
|
|
+ @RequestParam(name = "pageSize", defaultValue = "15") Integer pageSize) {
|
|
|
LoginUser loginUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
|
|
|
List<Integer> siteIds = adwebSiteService.getAllSiteIdByParentId(siteId);
|
|
|
Page<SubUser> page = new Page<>(pageNo, pageSize);
|
|
|
- IPage<SubUser> pageList = adwebUserCountryMapper.getSubUserList(page, loginUser.getId(), siteIds);
|
|
|
+ IPage<SubUser> pageList =
|
|
|
+ adwebUserCountryMapper.getSubUserList(page, loginUser.getId(), siteIds);
|
|
|
LambdaQueryWrapper<AdwebEnquiry> enquiryQueryWrapper = new LambdaQueryWrapper<>();
|
|
|
enquiryQueryWrapper.eq(AdwebEnquiry::getStatus, 1);
|
|
|
enquiryQueryWrapper.in(AdwebEnquiry::getSiteId, siteIds);
|
|
@@ -143,9 +138,7 @@ public class AdwebUserCountryController extends JeecgController<AdwebUserCountry
|
|
|
return Result.OK(pageList);
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * 获取子账户列表
|
|
|
- */
|
|
|
+ /** 获取子账户列表 */
|
|
|
@GetMapping(value = "/subAccounts/options")
|
|
|
public Result<?> subAccounts2(Integer siteId, String siteCode) {
|
|
|
LoginUser loginUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
|
|
@@ -156,7 +149,10 @@ public class AdwebUserCountryController extends JeecgController<AdwebUserCountry
|
|
|
if (siteId != null) {
|
|
|
site = adwebSiteService.getById(siteId);
|
|
|
} else {
|
|
|
- site = adwebSiteService.getOne(new LambdaQueryWrapper<AdwebSite>().eq(AdwebSite::getCode, siteCode));
|
|
|
+ site =
|
|
|
+ adwebSiteService.getOne(
|
|
|
+ new LambdaQueryWrapper<AdwebSite>()
|
|
|
+ .eq(AdwebSite::getCode, siteCode));
|
|
|
}
|
|
|
if (site == null) {
|
|
|
return Result.OK(new ArrayList<SubUser>());
|
|
@@ -183,16 +179,15 @@ public class AdwebUserCountryController extends JeecgController<AdwebUserCountry
|
|
|
return Result.OK(list);
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * 获取子账户负责的国家
|
|
|
- */
|
|
|
+ /** 获取子账户负责的国家 */
|
|
|
@GetMapping(value = "/country/charge")
|
|
|
public Result<?> chargeCountry(@RequestParam String id, @RequestParam Integer siteId) {
|
|
|
LambdaQueryWrapper<AdwebUserCountry> userCountryQueryWrapper = new LambdaQueryWrapper<>();
|
|
|
userCountryQueryWrapper.eq(AdwebUserCountry::getUid, id);
|
|
|
userCountryQueryWrapper.eq(AdwebUserCountry::getSiteId, siteId);
|
|
|
userCountryQueryWrapper.eq(AdwebUserCountry::getStatus, 1);
|
|
|
- List<AdwebUserCountry> userCountries = adwebUserCountryService.list(userCountryQueryWrapper);
|
|
|
+ List<AdwebUserCountry> userCountries =
|
|
|
+ adwebUserCountryService.list(userCountryQueryWrapper);
|
|
|
if (CollectionUtils.isEmpty(userCountries)) {
|
|
|
return Result.OK();
|
|
|
}
|
|
@@ -213,7 +208,8 @@ public class AdwebUserCountryController extends JeecgController<AdwebUserCountry
|
|
|
Map<String, List<AdwebCountry>> map = new HashMap<>();
|
|
|
for (AdwebCountry country : countries) {
|
|
|
String continentCode = country.getContinentCode();
|
|
|
- List<AdwebCountry> countryList = map.computeIfAbsent(continentCode, k -> new ArrayList<>());
|
|
|
+ List<AdwebCountry> countryList =
|
|
|
+ map.computeIfAbsent(continentCode, k -> new ArrayList<>());
|
|
|
countryList.add(country);
|
|
|
}
|
|
|
|
|
@@ -238,9 +234,7 @@ public class AdwebUserCountryController extends JeecgController<AdwebUserCountry
|
|
|
return Result.OK(options);
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * 获取未分配的国家
|
|
|
- */
|
|
|
+ /** 获取未分配的国家 */
|
|
|
@GetMapping(value = "/country/uncontribute")
|
|
|
public Result<?> uncontributeCountry(Integer siteId) {
|
|
|
LoginUser loginUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
|
|
@@ -248,7 +242,8 @@ public class AdwebUserCountryController extends JeecgController<AdwebUserCountry
|
|
|
userCountryQueryWrapper.eq(AdwebUserCountry::getMasterUid, loginUser.getId());
|
|
|
userCountryQueryWrapper.eq(AdwebUserCountry::getStatus, 1);
|
|
|
userCountryQueryWrapper.eq(AdwebUserCountry::getSiteId, siteId);
|
|
|
- List<AdwebUserCountry> userCountries = adwebUserCountryService.list(userCountryQueryWrapper);
|
|
|
+ List<AdwebUserCountry> userCountries =
|
|
|
+ adwebUserCountryService.list(userCountryQueryWrapper);
|
|
|
|
|
|
List<AdwebCountry> countries;
|
|
|
if (CollectionUtils.isEmpty(userCountries)) {
|
|
@@ -271,7 +266,8 @@ public class AdwebUserCountryController extends JeecgController<AdwebUserCountry
|
|
|
Map<String, List<AdwebCountry>> map = new HashMap<>();
|
|
|
for (AdwebCountry country : countries) {
|
|
|
String continentCode = country.getContinentCode();
|
|
|
- List<AdwebCountry> countryList = map.computeIfAbsent(continentCode, k -> new ArrayList<>());
|
|
|
+ List<AdwebCountry> countryList =
|
|
|
+ map.computeIfAbsent(continentCode, k -> new ArrayList<>());
|
|
|
countryList.add(country);
|
|
|
}
|
|
|
|
|
@@ -296,15 +292,13 @@ public class AdwebUserCountryController extends JeecgController<AdwebUserCountry
|
|
|
return Result.OK(options);
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * 分配国家
|
|
|
- */
|
|
|
+ /** 分配国家 */
|
|
|
@PostMapping(value = "/contribute/add")
|
|
|
public Result<?> contributeCountry(@RequestBody DistributeCountryParam param) {
|
|
|
LoginUser sysUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
|
|
|
-// if(sysUser.isPerform()){
|
|
|
-// return Result.FORBIDDEN("\"演示版\"没有操作权限,如果需要操作,请切换到\"正式版\"再操作!");
|
|
|
-// }
|
|
|
+ // if(sysUser.isPerform()){
|
|
|
+ // return Result.FORBIDDEN("\"演示版\"没有操作权限,如果需要操作,请切换到\"正式版\"再操作!");
|
|
|
+ // }
|
|
|
String uid = param.getUid();
|
|
|
String countryIds = param.getCountryIds();
|
|
|
String[] countryIdArr = countryIds.split(",");
|
|
@@ -329,7 +323,10 @@ public class AdwebUserCountryController extends JeecgController<AdwebUserCountry
|
|
|
LambdaQueryWrapper<AdwebCountry> countryQueryWrapper = new LambdaQueryWrapper<>();
|
|
|
countryQueryWrapper.in(AdwebCountry::getGeonameId, countryIdArr);
|
|
|
List<AdwebCountry> countries = admpCountryService.list(countryQueryWrapper);
|
|
|
- List<String> countryCodes = countries.stream().map(AdwebCountry::getCountryIsoCode).collect(Collectors.toList());
|
|
|
+ List<String> countryCodes =
|
|
|
+ countries.stream()
|
|
|
+ .map(AdwebCountry::getCountryIsoCode)
|
|
|
+ .collect(Collectors.toList());
|
|
|
|
|
|
List<Integer> siteIds = adwebSiteService.getAllSiteIdByParentId(param.getSiteId());
|
|
|
LambdaUpdateWrapper<AdwebEnquiry> enquiryUpdateWrapper = new LambdaUpdateWrapper<>();
|
|
@@ -349,15 +346,13 @@ public class AdwebUserCountryController extends JeecgController<AdwebUserCountry
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * 分配国家
|
|
|
- */
|
|
|
+ /** 分配国家 */
|
|
|
@PostMapping(value = "/contribute/delete")
|
|
|
public Result<?> delete(@RequestBody DistributeCountryParam param) {
|
|
|
LoginUser sysUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
|
|
|
-// if(sysUser.isPerform()){
|
|
|
-// return Result.FORBIDDEN("\"演示版\"没有操作权限,如果需要操作,请切换到\"正式版\"再操作!");
|
|
|
-// }
|
|
|
+ // if(sysUser.isPerform()){
|
|
|
+ // return Result.FORBIDDEN("\"演示版\"没有操作权限,如果需要操作,请切换到\"正式版\"再操作!");
|
|
|
+ // }
|
|
|
String uid = param.getUid();
|
|
|
String countryIds = param.getCountryIds();
|
|
|
List<String> countryIdList = new ArrayList<>();
|
|
@@ -381,7 +376,10 @@ public class AdwebUserCountryController extends JeecgController<AdwebUserCountry
|
|
|
LambdaQueryWrapper<AdwebCountry> countryQueryWrapper = new LambdaQueryWrapper<>();
|
|
|
countryQueryWrapper.in(AdwebCountry::getGeonameId, countryIdList);
|
|
|
List<AdwebCountry> countries = admpCountryService.list(countryQueryWrapper);
|
|
|
- List<String> countryCodes = countries.stream().map(AdwebCountry::getCountryIsoCode).collect(Collectors.toList());
|
|
|
+ List<String> countryCodes =
|
|
|
+ countries.stream()
|
|
|
+ .map(AdwebCountry::getCountryIsoCode)
|
|
|
+ .collect(Collectors.toList());
|
|
|
enquiryUpdateWrapper.notIn(AdwebEnquiry::getCountryCode, countryCodes);
|
|
|
}
|
|
|
enquiryUpdateWrapper.in(AdwebEnquiry::getSiteId, siteIds);
|
|
@@ -392,16 +390,15 @@ public class AdwebUserCountryController extends JeecgController<AdwebUserCountry
|
|
|
return Result.OK();
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * 更改分配方式
|
|
|
- */
|
|
|
+ /** 更改分配方式 */
|
|
|
@AutoLog(value = "询盘管理-询盘分配-分配规则切换")
|
|
|
@PostMapping(value = "/updateDistributeType")
|
|
|
- public Result<?> updateDistributeType(@RequestParam Integer siteId, @RequestParam String distributeType) {
|
|
|
+ public Result<?> updateDistributeType(
|
|
|
+ @RequestParam Integer siteId, @RequestParam String distributeType) {
|
|
|
LoginUser sysUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
|
|
|
-// if(sysUser.isPerform()){
|
|
|
-// return Result.FORBIDDEN("\"演示版\"没有操作权限,如果需要操作,请切换到\"正式版\"再操作!");
|
|
|
-// }
|
|
|
+ // if(sysUser.isPerform()){
|
|
|
+ // return Result.FORBIDDEN("\"演示版\"没有操作权限,如果需要操作,请切换到\"正式版\"再操作!");
|
|
|
+ // }
|
|
|
LambdaUpdateWrapper<AdwebSite> updateWrapper = new LambdaUpdateWrapper<>();
|
|
|
updateWrapper.eq(AdwebSite::getId, siteId);
|
|
|
updateWrapper.set(AdwebSite::getEnquiryDistributeType, distributeType);
|
|
@@ -424,16 +421,15 @@ public class AdwebUserCountryController extends JeecgController<AdwebUserCountry
|
|
|
return Result.OK();
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * 更改询盘发送规则
|
|
|
- */
|
|
|
+ /** 更改询盘发送规则 */
|
|
|
@AutoLog(value = "询盘管理-询盘分配-更改询盘发送规则")
|
|
|
@PostMapping(value = "/updateSendEmailType")
|
|
|
- public Result<?> updateSendEmailType(@RequestParam Integer siteId, @RequestParam String sendEmailType) {
|
|
|
+ public Result<?> updateSendEmailType(
|
|
|
+ @RequestParam Integer siteId, @RequestParam String sendEmailType) {
|
|
|
LoginUser sysUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
|
|
|
-// if(sysUser.isPerform()){
|
|
|
-// return Result.FORBIDDEN("\"演示版\"没有操作权限,如果需要操作,请切换到\"正式版\"再操作!");
|
|
|
-// }
|
|
|
+ // if(sysUser.isPerform()){
|
|
|
+ // return Result.FORBIDDEN("\"演示版\"没有操作权限,如果需要操作,请切换到\"正式版\"再操作!");
|
|
|
+ // }
|
|
|
LambdaUpdateWrapper<AdwebSite> updateWrapper = new LambdaUpdateWrapper<>();
|
|
|
updateWrapper.eq(AdwebSite::getId, siteId);
|
|
|
updateWrapper.set(AdwebSite::getEnquirySendEmailType, sendEmailType);
|
|
@@ -442,9 +438,7 @@ public class AdwebUserCountryController extends JeecgController<AdwebUserCountry
|
|
|
return Result.OK();
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * 根据站点id获取站点信息
|
|
|
- */
|
|
|
+ /** 根据站点id获取站点信息 */
|
|
|
@GetMapping(value = "/getSiteBySiteId")
|
|
|
public Result<?> getSiteBySiteId(Integer siteId) {
|
|
|
AdwebSite site = adwebSiteService.getById(siteId);
|
|
@@ -462,9 +456,9 @@ public class AdwebUserCountryController extends JeecgController<AdwebUserCountry
|
|
|
@PostMapping(value = "/add")
|
|
|
public Result<?> add(@RequestBody AdwebUserCountry adwebUserCountry) {
|
|
|
LoginUser sysUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
|
|
|
-// if(sysUser.isPerform()){
|
|
|
-// return Result.FORBIDDEN("\"演示版\"没有操作权限,如果需要操作,请切换到\"正式版\"再操作!");
|
|
|
-// }
|
|
|
+ // if(sysUser.isPerform()){
|
|
|
+ // return Result.FORBIDDEN("\"演示版\"没有操作权限,如果需要操作,请切换到\"正式版\"再操作!");
|
|
|
+ // }
|
|
|
adwebUserCountryService.save(adwebUserCountry);
|
|
|
return Result.OK("添加成功!");
|
|
|
}
|
|
@@ -536,7 +530,8 @@ public class AdwebUserCountryController extends JeecgController<AdwebUserCountry
|
|
|
*/
|
|
|
@RequestMapping(value = "/exportXls")
|
|
|
public ModelAndView exportXls(HttpServletRequest request, AdwebUserCountry adwebUserCountry) {
|
|
|
- return super.exportXls(request, adwebUserCountry, AdwebUserCountry.class, "adweb_user_country");
|
|
|
+ return super.exportXls(
|
|
|
+ request, adwebUserCountry, AdwebUserCountry.class, "adweb_user_country");
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -550,5 +545,4 @@ public class AdwebUserCountryController extends JeecgController<AdwebUserCountry
|
|
|
public Result<?> importExcel(HttpServletRequest request, HttpServletResponse response) {
|
|
|
return super.importExcel(request, response, AdwebUserCountry.class);
|
|
|
}
|
|
|
-
|
|
|
}
|