|
|
|
@ -1,8 +1,6 @@
|
|
|
|
|
package com.glxp.api.controller.thrsys;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import cn.hutool.core.util.StrUtil;
|
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
|
|
import com.github.pagehelper.PageInfo;
|
|
|
|
|
import com.glxp.api.annotation.AuthRuleAnnotation;
|
|
|
|
|
import com.glxp.api.annotation.Log;
|
|
|
|
@ -10,13 +8,10 @@ import com.glxp.api.common.enums.ResultEnum;
|
|
|
|
|
import com.glxp.api.common.res.BaseResponse;
|
|
|
|
|
import com.glxp.api.common.util.ResultVOUtils;
|
|
|
|
|
import com.glxp.api.constant.BusinessType;
|
|
|
|
|
import com.glxp.api.entity.auth.AuthAdmin;
|
|
|
|
|
import com.glxp.api.entity.thrsys.ThrProductsEntity;
|
|
|
|
|
import com.glxp.api.entity.thrsys.ThrSystemDetailEntity;
|
|
|
|
|
import com.glxp.api.http.ErpBasicClient;
|
|
|
|
|
import com.glxp.api.req.system.DeleteRequest;
|
|
|
|
|
import com.glxp.api.req.thrsys.FilterThrProductsRequest;
|
|
|
|
|
import com.glxp.api.req.thrsys.ThrProductsRequest;
|
|
|
|
|
import com.glxp.api.res.PageSimpleResponse;
|
|
|
|
|
import com.glxp.api.res.thrsys.ThrProductsResponse;
|
|
|
|
|
import com.glxp.api.service.auth.CustomerService;
|
|
|
|
@ -24,7 +19,10 @@ import com.glxp.api.service.thrsys.ThrProductsService;
|
|
|
|
|
import com.glxp.api.service.thrsys.ThrSystemDetailService;
|
|
|
|
|
import org.springframework.beans.BeanUtils;
|
|
|
|
|
import org.springframework.validation.BindingResult;
|
|
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
|
import java.util.Date;
|
|
|
|
@ -63,54 +61,13 @@ public class ThrProductsController {
|
|
|
|
|
return ResultVOUtils.error(ResultEnum.PARAM_VERIFY_FALL, bindingResult.getFieldError().getDefaultMessage());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ThrSystemDetailEntity thrSystemDetailEntity = thrSystemDetailService.selectByKey("piQueryUrl", filterThrProductsRequest.getThirdSys());
|
|
|
|
|
if (thrSystemDetailEntity == null || thrSystemDetailEntity.getValue() == null) {
|
|
|
|
|
return ResultVOUtils.error(500, "ERP产品信息接口地址未定义");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (thrSystemDetailEntity.getEnabled()) {
|
|
|
|
|
if (thrSystemDetailEntity.getFromType() == 0 || (filterThrProductsRequest.getIsDownThrSys() != null && filterThrProductsRequest.getIsDownThrSys())) {
|
|
|
|
|
BaseResponse<PageSimpleResponse<ThrProductsResponse>> udiDlDeviceResponse = erpBasicClient.getErpProducts(filterThrProductsRequest);
|
|
|
|
|
if (udiDlDeviceResponse.getCode() == 20000) {
|
|
|
|
|
List<ThrProductsResponse> invmandocResponses = udiDlDeviceResponse.getData().getList();
|
|
|
|
|
//todo 耗材字典未确认数据库
|
|
|
|
|
// if (invmandocResponses != null) {
|
|
|
|
|
// for (ThrProductsResponse invmandocResponse : invmandocResponses) {
|
|
|
|
|
// UdiRelevanceEntity udiRelevanceEntity = udiRelevanceService.selectByThirdId(invmandocResponse.getCode(), filterErpGoodsRequest.getThirdSys());
|
|
|
|
|
// invmandocResponse.setThirdSys(thrProductsRequest.getThirdSys());
|
|
|
|
|
// if (udiRelevanceEntity != null) {
|
|
|
|
|
// invmandocResponse.setChecked(true);
|
|
|
|
|
// } else {
|
|
|
|
|
// invmandocResponse.setChecked(false);
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
return udiDlDeviceResponse;
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
|
|
List<ThrProductsResponse> thrCorpEntities = thrProductsService.filterJoinThrProducts(filterThrProductsRequest);
|
|
|
|
|
//todo 耗材字典未确认数据库
|
|
|
|
|
// for (ThrProductsEntity thrProductsEntity : thrCorpEntities) {
|
|
|
|
|
// UdiRelevanceEntity udiRelevanceEntity = udiRelevanceService.selectByThirdId(thrProductsEntity.getCode(), thrProductsEntity.getThirdSysFk());
|
|
|
|
|
// if (udiRelevanceEntity != null) {
|
|
|
|
|
// thrProductsEntity.setChecked(true);
|
|
|
|
|
// } else {
|
|
|
|
|
// thrProductsEntity.setChecked(false);
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
PageInfo<ThrProductsResponse> pageInfo;
|
|
|
|
|
pageInfo = new PageInfo<>(thrCorpEntities);
|
|
|
|
|
PageSimpleResponse<ThrProductsResponse> pageSimpleResponse = new PageSimpleResponse<>();
|
|
|
|
|
pageSimpleResponse.setTotal(pageInfo.getTotal());
|
|
|
|
|
pageSimpleResponse.setList(thrCorpEntities);
|
|
|
|
|
return ResultVOUtils.success(pageSimpleResponse);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
return ResultVOUtils.error(500, "第三方系统产品信息接口服务未启用");
|
|
|
|
|
}
|
|
|
|
|
List<ThrProductsResponse> thrCorpEntities = thrProductsService.filterJoinThrProducts(filterThrProductsRequest);
|
|
|
|
|
PageInfo<ThrProductsResponse> pageInfo;
|
|
|
|
|
pageInfo = new PageInfo<>(thrCorpEntities);
|
|
|
|
|
PageSimpleResponse<ThrProductsResponse> pageSimpleResponse = new PageSimpleResponse<>();
|
|
|
|
|
pageSimpleResponse.setTotal(pageInfo.getTotal());
|
|
|
|
|
pageSimpleResponse.setList(thrCorpEntities);
|
|
|
|
|
return ResultVOUtils.success(pageSimpleResponse);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@PostMapping("/udiwms/thrsys/delThrProducts")
|
|
|
|
@ -169,15 +126,14 @@ public class ThrProductsController {
|
|
|
|
|
@AuthRuleAnnotation("")
|
|
|
|
|
@PostMapping("/udiwms/udiinfo/erp/products/saveProduct")
|
|
|
|
|
@Log(title = "第三方产品信息", businessType = BusinessType.INSERT)
|
|
|
|
|
public BaseResponse saveProduct(@RequestBody ThrProductsEntity thrProductsEntity,FilterThrProductsRequest filterThrProductsRequest) {
|
|
|
|
|
|
|
|
|
|
public BaseResponse saveProduct(@RequestBody ThrProductsEntity thrProductsEntity, FilterThrProductsRequest filterThrProductsRequest) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (null == thrProductsEntity)
|
|
|
|
|
return ResultVOUtils.error(ResultEnum.PARAM_VERIFY_FALL);
|
|
|
|
|
BeanUtils.copyProperties(thrProductsEntity,filterThrProductsRequest);
|
|
|
|
|
BeanUtils.copyProperties(thrProductsEntity, filterThrProductsRequest);
|
|
|
|
|
List<ThrProductsEntity> thrProductsEntities = thrProductsService.filterThrProducts1(filterThrProductsRequest);
|
|
|
|
|
if(thrProductsEntities.size()==0){
|
|
|
|
|
if (thrProductsEntities.size() == 0) {
|
|
|
|
|
thrProductsEntity.setUpdateUser(String.valueOf(customerService.getUserId()));
|
|
|
|
|
thrProductsEntity.setCreateUser(String.valueOf(customerService.getUserId()));
|
|
|
|
|
thrProductsEntity.setUpdateTime(new Date());
|
|
|
|
@ -185,7 +141,7 @@ public class ThrProductsController {
|
|
|
|
|
thrProductsService.insertThrProducts(thrProductsEntity);
|
|
|
|
|
return ResultVOUtils.success();
|
|
|
|
|
}
|
|
|
|
|
return ResultVOUtils.error(999,"数据已存在!");
|
|
|
|
|
return ResultVOUtils.error(999, "数据已存在!");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// //新增主系统产品信息直接加到耗材字典里
|
|
|
|
|