|
|
|
@ -137,6 +137,7 @@ public class ThrDeptServiceImpl extends ServiceImpl<ThrDeptDao, ThrDeptEntity> i
|
|
|
|
|
if (baseResponse.getCode() == 20000) {
|
|
|
|
|
List<UdiwmsWarehouseDetail> responseList = baseResponse.getData().getList();
|
|
|
|
|
List<ThrDeptEntity> list = new ArrayList<>();
|
|
|
|
|
List<ThrInvWarehouseEntity> warehouseList = new ArrayList<>();
|
|
|
|
|
for (UdiwmsWarehouseDetail response : responseList) {
|
|
|
|
|
ThrDeptEntity thrDeptEntity = new ThrDeptEntity();
|
|
|
|
|
thrDeptEntity.setPid(0);
|
|
|
|
@ -148,25 +149,21 @@ public class ThrDeptServiceImpl extends ServiceImpl<ThrDeptDao, ThrDeptEntity> i
|
|
|
|
|
thrDeptEntity.setUpdateTime(new Date());
|
|
|
|
|
list.add(thrDeptEntity);
|
|
|
|
|
|
|
|
|
|
List<UdiwmsWarehouseDetail.SubWarehouse> subWarehouseList = response.getSubWarehouses();
|
|
|
|
|
if (CollUtil.isNotEmpty(subWarehouseList)) {
|
|
|
|
|
for (UdiwmsWarehouseDetail.SubWarehouse subWarehouse : subWarehouseList) {
|
|
|
|
|
ThrInvWarehouseEntity thrInvWarehouseEntity = new ThrInvWarehouseEntity();
|
|
|
|
|
thrInvWarehouseEntity.setCode(subWarehouse.getCode());
|
|
|
|
|
thrInvWarehouseEntity.setName(subWarehouse.getName());
|
|
|
|
|
thrInvWarehouseEntity.setRemark(subWarehouse.getRemark());
|
|
|
|
|
thrInvWarehouseEntity.setThirdSysFk(thirdSysFk);
|
|
|
|
|
thrInvWarehouseEntity.setParentId(response.getCode());
|
|
|
|
|
thrInvWarehouseEntity.setId(IdUtil.getSnowflake(6, 1).nextId() + "");
|
|
|
|
|
thrInvWarehouseEntity.setUpdateTime(new Date());
|
|
|
|
|
thrInvWarehouseDao.insertThrInvWarehouse(thrInvWarehouseEntity);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
ThrInvWarehouseEntity thrInvWarehouseEntity = new ThrInvWarehouseEntity();
|
|
|
|
|
thrInvWarehouseEntity.setCode(response.getCode());
|
|
|
|
|
thrInvWarehouseEntity.setName(response.getName());
|
|
|
|
|
thrInvWarehouseEntity.setRemark(response.getRemark());
|
|
|
|
|
thrInvWarehouseEntity.setThirdSysFk(thirdSysFk);
|
|
|
|
|
thrInvWarehouseEntity.setParentId(response.getCode());
|
|
|
|
|
thrInvWarehouseEntity.setId(IdUtil.getSnowflake(6, 1).nextId() + "");
|
|
|
|
|
thrInvWarehouseEntity.setUpdateTime(new Date());
|
|
|
|
|
warehouseList.add(thrInvWarehouseEntity);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
//插入数据
|
|
|
|
|
thrDeptDao.insertInvWarehouses(list);
|
|
|
|
|
thrInvWarehouseDao.insertThrInvWarehouses(warehouseList);
|
|
|
|
|
if (list.size() >= limit) {
|
|
|
|
|
page++;
|
|
|
|
|
} else {
|
|
|
|
|