|
|
|
@ -2,8 +2,13 @@ package com.glxp.udidl.admin.controller.device;
|
|
|
|
|
|
|
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
|
|
import com.glxp.udidl.admin.dao.udi.ProductInfoDao;
|
|
|
|
|
import com.glxp.udidl.admin.entity.udi.ProductInfoEntity;
|
|
|
|
|
import com.glxp.udidl.admin.entity.udi.UdiCompanyEntity;
|
|
|
|
|
import com.glxp.udidl.admin.entity.udid.Contactlist;
|
|
|
|
|
import com.glxp.udidl.admin.entity.udid.Device;
|
|
|
|
|
import com.glxp.udidl.admin.req.ListPageRequest;
|
|
|
|
|
import com.glxp.udidl.admin.req.ProductInfoFilterRequest;
|
|
|
|
|
import com.glxp.udidl.admin.req.UdiCompanyRequest;
|
|
|
|
|
import com.glxp.udidl.admin.service.DataSync.DeviceSyncService;
|
|
|
|
|
import com.glxp.udidl.admin.service.DataSync.UdplatDownloadService;
|
|
|
|
|
import com.glxp.udidl.admin.service.DataSync.UdplatSyncService;
|
|
|
|
@ -23,6 +28,7 @@ import org.springframework.web.bind.annotation.RequestParam;
|
|
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
@RestController
|
|
|
|
@ -150,4 +156,41 @@ public class TestController {
|
|
|
|
|
public JSONObject getDistributeOrderDetails(Long orderId) {
|
|
|
|
|
return udplatDownloadService.getDistributeOrderDetails(orderId);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@GetMapping("/test/transferUdiCompany")
|
|
|
|
|
public BaseResponse transferUdiCompany(String nameCode) {
|
|
|
|
|
//更新为最新版本
|
|
|
|
|
ProductInfoFilterRequest filterRequest1 = new ProductInfoFilterRequest();
|
|
|
|
|
filterRequest1.setNameCode(nameCode);
|
|
|
|
|
List<ProductInfoEntity> updateEntitys = productInfoService.filterUdi(filterRequest1);
|
|
|
|
|
ProductInfoEntity productInfoEntity;
|
|
|
|
|
if (updateEntitys != null && updateEntitys.size() > 0) {
|
|
|
|
|
//获取最高版本号
|
|
|
|
|
productInfoEntity = updateEntitys.get(0);
|
|
|
|
|
//更新厂家信息,
|
|
|
|
|
UdiCompanyRequest udiCompanyRequest = new UdiCompanyRequest();
|
|
|
|
|
udiCompanyRequest.setTyshxydm(productInfoEntity.getTyshxydm());
|
|
|
|
|
List<UdiCompanyEntity> udiCompanyEntitys = udiCompanyService.filterUdiCompany(udiCompanyRequest);
|
|
|
|
|
if (udiCompanyEntitys == null || udiCompanyEntitys.size() == 0) {
|
|
|
|
|
UdiCompanyEntity udiCompanyEntity = new UdiCompanyEntity();
|
|
|
|
|
udiCompanyEntity.setTyshxydm(productInfoEntity.getTyshxydm());
|
|
|
|
|
udiCompanyEntity.setUpdateTime(new Date());
|
|
|
|
|
udiCompanyEntity.setYlqxzcrbarywmc(productInfoEntity.getYlqxzcrbarywmc());
|
|
|
|
|
udiCompanyEntity.setYlqxzcrbarmc(productInfoEntity.getYlqxzcrbarmc());
|
|
|
|
|
List<Contactlist> contactlists = udiCompanyService.selectContactBykey(productInfoEntity.getDeviceRecordKey());
|
|
|
|
|
if (contactlists != null && contactlists.size() > 0) {
|
|
|
|
|
udiCompanyEntity.setQylxrcz(contactlists.get(0).getQylxrcz());
|
|
|
|
|
udiCompanyEntity.setQylxrdh(contactlists.get(0).getQylxrdh());
|
|
|
|
|
udiCompanyEntity.setQylxryx(contactlists.get(0).getQylxryx());
|
|
|
|
|
}
|
|
|
|
|
udiCompanyEntity.setUpdateTime(new Date());
|
|
|
|
|
udiCompanyService.insertUdiCompany(udiCompanyEntity);
|
|
|
|
|
return ResultVOUtils.success(udiCompanyEntity);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
return ResultVOUtils.error(500, "未查询到数据");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|