|
|
@ -7,8 +7,6 @@ import com.glxp.api.common.res.BaseResponse;
|
|
|
|
import com.glxp.api.common.util.ResultVOUtils;
|
|
|
|
import com.glxp.api.common.util.ResultVOUtils;
|
|
|
|
import com.glxp.api.constant.BasicProcessStatus;
|
|
|
|
import com.glxp.api.constant.BasicProcessStatus;
|
|
|
|
import com.glxp.api.constant.Constant;
|
|
|
|
import com.glxp.api.constant.Constant;
|
|
|
|
import com.glxp.api.entity.basic.BasicUnitMaintainEntity;
|
|
|
|
|
|
|
|
import com.glxp.api.entity.thrsys.ThrCorpEntity;
|
|
|
|
|
|
|
|
import com.glxp.api.entity.thrsys.ThrCorpImportLogEntity;
|
|
|
|
import com.glxp.api.entity.thrsys.ThrCorpImportLogEntity;
|
|
|
|
import com.glxp.api.entity.thrsys.ThrSystemDetailEntity;
|
|
|
|
import com.glxp.api.entity.thrsys.ThrSystemDetailEntity;
|
|
|
|
import com.glxp.api.http.ErpBasicClient;
|
|
|
|
import com.glxp.api.http.ErpBasicClient;
|
|
|
@ -18,6 +16,7 @@ import com.glxp.api.req.thrsys.PostThrCorpRequest;
|
|
|
|
import com.glxp.api.req.thrsys.ThrUnitMaintainFilterRequest;
|
|
|
|
import com.glxp.api.req.thrsys.ThrUnitMaintainFilterRequest;
|
|
|
|
import com.glxp.api.res.PageSimpleResponse;
|
|
|
|
import com.glxp.api.res.PageSimpleResponse;
|
|
|
|
import com.glxp.api.res.thrsys.ThrCorpsResponse;
|
|
|
|
import com.glxp.api.res.thrsys.ThrCorpsResponse;
|
|
|
|
|
|
|
|
import com.glxp.api.res.thrsys.ThrUnitMaintainResponse;
|
|
|
|
import com.glxp.api.service.thrsys.ThrCorpImportLogService;
|
|
|
|
import com.glxp.api.service.thrsys.ThrCorpImportLogService;
|
|
|
|
import com.glxp.api.service.thrsys.ThrCorpService;
|
|
|
|
import com.glxp.api.service.thrsys.ThrCorpService;
|
|
|
|
import com.glxp.api.service.thrsys.ThrCorpsDlService;
|
|
|
|
import com.glxp.api.service.thrsys.ThrCorpsDlService;
|
|
|
@ -193,8 +192,8 @@ public class ThrCorpsController {
|
|
|
|
BaseResponse<PageSimpleResponse<ThrCorpsResponse>> udiDlDeviceResponse = erpBasicClient.getErpCrop(thrUnitMaintainFilterRequest);
|
|
|
|
BaseResponse<PageSimpleResponse<ThrCorpsResponse>> udiDlDeviceResponse = erpBasicClient.getErpCrop(thrUnitMaintainFilterRequest);
|
|
|
|
if (udiDlDeviceResponse.getCode() == 20000) {
|
|
|
|
if (udiDlDeviceResponse.getCode() == 20000) {
|
|
|
|
for (ThrCorpsResponse erpUnitsResponse : udiDlDeviceResponse.getData().getList()) {
|
|
|
|
for (ThrCorpsResponse erpUnitsResponse : udiDlDeviceResponse.getData().getList()) {
|
|
|
|
BasicUnitMaintainEntity basicUnitMaintainEntity = thrCorpService.selectByThirdId(erpUnitsResponse.getId(), thrUnitMaintainFilterRequest.getThirdSys());
|
|
|
|
ThrUnitMaintainResponse thrUnitMaintainResponse = thrCorpService.selectByThirdId(erpUnitsResponse.getId(), thrUnitMaintainFilterRequest.getThirdSys());
|
|
|
|
if (basicUnitMaintainEntity != null) {
|
|
|
|
if (thrUnitMaintainResponse != null) {
|
|
|
|
erpUnitsResponse.setChecked(true);
|
|
|
|
erpUnitsResponse.setChecked(true);
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
erpUnitsResponse.setChecked(false);
|
|
|
|
erpUnitsResponse.setChecked(false);
|
|
|
@ -215,8 +214,8 @@ public class ThrCorpsController {
|
|
|
|
{
|
|
|
|
{
|
|
|
|
ThrCorpsResponse thrCorpEntity = new ThrCorpsResponse();
|
|
|
|
ThrCorpsResponse thrCorpEntity = new ThrCorpsResponse();
|
|
|
|
BeanUtils.copyProperties(item, thrCorpEntity);
|
|
|
|
BeanUtils.copyProperties(item, thrCorpEntity);
|
|
|
|
BasicUnitMaintainEntity basicUnitMaintainEntity = thrCorpService.selectByThirdId(item.getUnitId(), thrUnitMaintainFilterRequest.getThirdSys());
|
|
|
|
ThrUnitMaintainResponse thrUnitMaintainResponse = thrCorpService.selectByThirdId(item.getUnitId(), thrUnitMaintainFilterRequest.getThirdSys());
|
|
|
|
if (basicUnitMaintainEntity != null) {
|
|
|
|
if (thrUnitMaintainResponse != null) {
|
|
|
|
thrCorpEntity.setChecked(true);
|
|
|
|
thrCorpEntity.setChecked(true);
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
thrCorpEntity.setChecked(false);
|
|
|
|
thrCorpEntity.setChecked(false);
|
|
|
|