|
|
|
@ -2,6 +2,7 @@ package com.glxp.udi.admin.controller.info;
|
|
|
|
|
|
|
|
|
|
import cn.hutool.core.bean.BeanUtil;
|
|
|
|
|
import cn.hutool.core.util.StrUtil;
|
|
|
|
|
import cn.hutool.json.JSONUtil;
|
|
|
|
|
import com.alibaba.fastjson.JSON;
|
|
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
|
|
import com.glxp.udi.admin.annotation.AuthRuleAnnotation;
|
|
|
|
@ -38,7 +39,7 @@ public class PlatformController {
|
|
|
|
|
@Resource
|
|
|
|
|
private UnitMaintainService unitMaintainService;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@PostMapping("/udims/platform/remove")
|
|
|
|
|
public BaseResponse remove(@RequestBody PlatformEntity platformEntity) {
|
|
|
|
|
if (platformService.remove(platformEntity.getId()) > 0) {
|
|
|
|
@ -48,7 +49,6 @@ public class PlatformController {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@PostMapping("/udims/platform/update")
|
|
|
|
|
public BaseResponse update(@RequestBody PlatformEntity platformEntity) {
|
|
|
|
|
if (StrUtil.isBlank(platformEntity.getName()) || StrUtil.isBlank(platformEntity.getHost())) {
|
|
|
|
@ -57,7 +57,7 @@ public class PlatformController {
|
|
|
|
|
return platformService.update(platformEntity);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@GetMapping("/udims/platform/list")
|
|
|
|
|
public BaseResponse list(@RequestParam Map<String, Object> params) {
|
|
|
|
|
IPage<PlatformEntity> page = platformService.list(params);
|
|
|
|
@ -72,7 +72,7 @@ public class PlatformController {
|
|
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@PostMapping("/udims/platform/testUserInfo")
|
|
|
|
|
public BaseResponse testUserInfo(@RequestBody PlatformUserInfoRequest platformUserInfoRequest, BindingResult bindingResult) {
|
|
|
|
|
if (bindingResult.hasErrors()) {
|
|
|
|
@ -102,10 +102,11 @@ public class PlatformController {
|
|
|
|
|
if (!String.valueOf(object.get("code")).equals(ResultEnum.SUCCESS.getCode().toString())) {
|
|
|
|
|
return ResultVOUtils.error(ResultEnum.PARAM_VERIFY_FALL, String.valueOf(object.get("message")));
|
|
|
|
|
}
|
|
|
|
|
return ResultVOUtils.success();
|
|
|
|
|
// return ResultVOUtils.success(JSON.parseObject(object.get("data").toString(), Map.class).get("invList"));
|
|
|
|
|
return ResultVOUtils.success(object.get("data"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@PostMapping("/udims/platform/link")
|
|
|
|
|
public BaseResponse update(@RequestBody PlatformLinkRequest platformLinkRequest) {
|
|
|
|
|
//判断此数据是否重复
|
|
|
|
@ -136,6 +137,7 @@ public class PlatformController {
|
|
|
|
|
if (object != null && object.get("data") != null) {
|
|
|
|
|
Map<String, Object> data = JSON.parseObject(JSON.toJSONString(object.get("data")), Map.class);
|
|
|
|
|
log.error(JSON.toJSONString(object.get("data")));
|
|
|
|
|
data = JSON.parseObject(JSONUtil.toJsonStr(data.get("license")));
|
|
|
|
|
if (data.get("appid") != null) {
|
|
|
|
|
platformLinkRequest.setAppid(data.get("appid").toString());
|
|
|
|
|
if (data.get("apiKey") != null) {
|
|
|
|
@ -164,7 +166,7 @@ public class PlatformController {
|
|
|
|
|
/**
|
|
|
|
|
* 获取往来单位与自助平台关联数据
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@GetMapping("/udims/platform/getLinkPlatformList")
|
|
|
|
|
public BaseResponse getLinkPlatformList(PlatformLinkRequest platformLinkRequest, BindingResult bindingResult) {
|
|
|
|
|
if (bindingResult.hasErrors()) {
|
|
|
|
@ -183,7 +185,7 @@ public class PlatformController {
|
|
|
|
|
* @param corpId
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@PostMapping("/udims/platform/unbind")
|
|
|
|
|
public BaseResponse unbindPlatform(DeleteRequest deleteRequest) {
|
|
|
|
|
if (StrUtil.isBlank(deleteRequest.getId())) {
|
|
|
|
@ -198,7 +200,7 @@ public class PlatformController {
|
|
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@GetMapping("/udims/platform/getTargetActions")
|
|
|
|
|
public BaseResponse getTargetActions(String platformId, String invSubCode) {
|
|
|
|
|
if (StrUtil.isBlank(platformId)) {
|
|
|
|
@ -208,7 +210,6 @@ public class PlatformController {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@GetMapping("/udims/platform/getTargetInv")
|
|
|
|
|
public BaseResponse getTargetInv(String platformId) {
|
|
|
|
|
if (StrUtil.isBlank(platformId)) {
|
|
|
|
@ -218,7 +219,6 @@ public class PlatformController {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@GetMapping("/udims/platform/getTargetSubInv")
|
|
|
|
|
public BaseResponse getTargetSubInv(String platformId, String invCode) {
|
|
|
|
|
if (StrUtil.isBlank(platformId)) {
|
|
|
|
@ -233,7 +233,7 @@ public class PlatformController {
|
|
|
|
|
* @param host
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@GetMapping("udims/platform/testPlatformConnection")
|
|
|
|
|
public BaseResponse testPlatformConnection(String host) {
|
|
|
|
|
if (StrUtil.isBlank(host)) {
|
|
|
|
|