|
|
|
@ -47,140 +47,140 @@ public class DeviceSaveService {
|
|
|
|
|
List<DataSetResult.ClinicalInfo> ClinicalInfoAll = ds.getClinicalInfo();
|
|
|
|
|
List<DataSetResult.StorageInfo> storageInfoAll = ds.getStorageInfo();
|
|
|
|
|
List<DataSetResult.PackingInfo> packingInfoAll = ds.getPackingInfo();
|
|
|
|
|
if (ds.getDeviceInfo() != null)
|
|
|
|
|
for (DataSetResult.DeviceInfo item : ds.getDeviceInfo()) {
|
|
|
|
|
|
|
|
|
|
for (DataSetResult.DeviceInfo item : ds.getDeviceInfo()) {
|
|
|
|
|
|
|
|
|
|
//1:判断数据是否存在
|
|
|
|
|
String uuid = null;
|
|
|
|
|
Device originDevice = deviceService.selectDiIsSame(item.getZxxsdycpbs(), item.getVersionNumber() + "");
|
|
|
|
|
if (dlType == Constant.DL_TYPE_ADD) {
|
|
|
|
|
if (originDevice != null)
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
//1:判断数据是否存在
|
|
|
|
|
String uuid = null;
|
|
|
|
|
Device originDevice = deviceService.selectDiIsSame(item.getZxxsdycpbs(), item.getVersionNumber() + "");
|
|
|
|
|
if (dlType == Constant.DL_TYPE_ADD) {
|
|
|
|
|
if (originDevice != null)
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//2,存储 deviceInfo
|
|
|
|
|
Device device = responseToDevice(item);
|
|
|
|
|
Boolean isHistory = false;
|
|
|
|
|
if (item.getDeviceHistoryKey() != null && !item.getDeviceHistoryKey().isEmpty()) {
|
|
|
|
|
isHistory = true;
|
|
|
|
|
}
|
|
|
|
|
//2,存储 deviceInfo
|
|
|
|
|
Device device = responseToDevice(item);
|
|
|
|
|
Boolean isHistory = false;
|
|
|
|
|
if (item.getDeviceHistoryKey() != null && !item.getDeviceHistoryKey().isEmpty()) {
|
|
|
|
|
isHistory = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (requestDate != null)
|
|
|
|
|
device.setRequestDate(requestDate);
|
|
|
|
|
if (requestDate != null)
|
|
|
|
|
device.setRequestDate(requestDate);
|
|
|
|
|
|
|
|
|
|
//2.1 判断更新或者新增
|
|
|
|
|
if (dlType == Constant.DL_TYPE_ADD || originDevice == null) {
|
|
|
|
|
uuid = getUUId();
|
|
|
|
|
device.setUuid(uuid);
|
|
|
|
|
deviceService.insertDevice(device);
|
|
|
|
|
} else {
|
|
|
|
|
//2.2 判断字段是否与原来的一致,若不一致则更新
|
|
|
|
|
if (!device.equals(originDevice)) {
|
|
|
|
|
uuid = originDevice.getUuid();
|
|
|
|
|
//2.1 判断更新或者新增
|
|
|
|
|
if (dlType == Constant.DL_TYPE_ADD || originDevice == null) {
|
|
|
|
|
uuid = getUUId();
|
|
|
|
|
device.setUuid(uuid);
|
|
|
|
|
deviceService.updateDevice(device);
|
|
|
|
|
} else { //,若一致则跳过
|
|
|
|
|
deviceService.insertDevice(device);
|
|
|
|
|
} else {
|
|
|
|
|
//2.2 判断字段是否与原来的一致,若不一致则更新
|
|
|
|
|
if (!device.equals(originDevice)) {
|
|
|
|
|
uuid = originDevice.getUuid();
|
|
|
|
|
device.setUuid(uuid);
|
|
|
|
|
deviceService.updateDevice(device);
|
|
|
|
|
} else { //,若一致则跳过
|
|
|
|
|
// uuid = getUUId();
|
|
|
|
|
// device.setUuid(uuid);
|
|
|
|
|
// deviceService.insertDevice(device);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
result++;
|
|
|
|
|
//3,存储ContactList
|
|
|
|
|
List<DataSetResult.ContactInfo> contactInfos = item.getContactList();
|
|
|
|
|
if (contactInfos != null && contactInfos.size() > 0) {
|
|
|
|
|
List<Contactlist> contactlistList = new ArrayList<>();
|
|
|
|
|
for (DataSetResult.ContactInfo contactInfo : contactInfos) {
|
|
|
|
|
Contactlist contactlist = responseToContactlist(contactInfo);
|
|
|
|
|
contactlist.setDevicerecordkey(device.getDevicerecordkey());
|
|
|
|
|
contactlist.setUuid(uuid);
|
|
|
|
|
contactlistList.add(contactlist);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
deviceService.deleteClinicalByUuid(uuid);
|
|
|
|
|
deviceService.insertContactlist(contactlistList);
|
|
|
|
|
}
|
|
|
|
|
//4,存储 Deviceclinical
|
|
|
|
|
if (ClinicalInfoAll != null && ClinicalInfoAll.size() > 0) {
|
|
|
|
|
List<DataSetResult.ClinicalInfo> deviceclinicals;
|
|
|
|
|
if (isHistory == true)
|
|
|
|
|
deviceclinicals = ClinicalInfoAll.stream().filter(p -> p.getDeviceHistoryKey().equals(item.getDeviceHistoryKey())).
|
|
|
|
|
collect(Collectors.toList());
|
|
|
|
|
else
|
|
|
|
|
deviceclinicals = ClinicalInfoAll.stream().filter(p -> p.getDeviceRecordKey().equals(item.getDeviceRecordKey())).
|
|
|
|
|
collect(Collectors.toList());
|
|
|
|
|
List<Deviceclinical> deviceclinicalList = new ArrayList<>();
|
|
|
|
|
if (deviceclinicals != null && deviceclinicals.size() > 0) {
|
|
|
|
|
for (DataSetResult.ClinicalInfo deviceClinical : deviceclinicals) {
|
|
|
|
|
Deviceclinical deviceclinical = responseToDeviceclinical(deviceClinical);
|
|
|
|
|
if (isHistory == true)
|
|
|
|
|
deviceclinical.setDevicerecordkey(item.getDeviceHistoryKey());
|
|
|
|
|
else
|
|
|
|
|
deviceclinical.setDevicerecordkey(device.getDevicerecordkey());
|
|
|
|
|
deviceclinical.setUuid(uuid);
|
|
|
|
|
deviceclinicalList.add(deviceclinical);
|
|
|
|
|
result++;
|
|
|
|
|
//3,存储ContactList
|
|
|
|
|
List<DataSetResult.ContactInfo> contactInfos = item.getContactList();
|
|
|
|
|
if (contactInfos != null && contactInfos.size() > 0) {
|
|
|
|
|
List<Contactlist> contactlistList = new ArrayList<>();
|
|
|
|
|
for (DataSetResult.ContactInfo contactInfo : contactInfos) {
|
|
|
|
|
Contactlist contactlist = responseToContactlist(contactInfo);
|
|
|
|
|
contactlist.setDevicerecordkey(device.getDevicerecordkey());
|
|
|
|
|
contactlist.setUuid(uuid);
|
|
|
|
|
contactlistList.add(contactlist);
|
|
|
|
|
}
|
|
|
|
|
deviceService.deleteClinicalByUuid(uuid);
|
|
|
|
|
deviceService.insertDeviceClinical(deviceclinicalList);
|
|
|
|
|
deviceService.insertContactlist(contactlistList);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//5 存储 Devicestorage
|
|
|
|
|
if (storageInfoAll != null && storageInfoAll.size() > 0) {
|
|
|
|
|
List<DataSetResult.StorageInfo> storageInfos;
|
|
|
|
|
if (isHistory == true)
|
|
|
|
|
storageInfos = storageInfoAll.stream().filter(p -> p.getDeviceHistoryKey().equals(item.getDeviceHistoryKey())).
|
|
|
|
|
collect(Collectors.toList());
|
|
|
|
|
else
|
|
|
|
|
storageInfos = storageInfoAll.stream().filter(p -> p.getDeviceRecordKey().equals(item.getDeviceRecordKey())).
|
|
|
|
|
collect(Collectors.toList());
|
|
|
|
|
if (storageInfos != null && storageInfos.size() > 0) {
|
|
|
|
|
List<Devicestorage> devicestorageList = new ArrayList<>();
|
|
|
|
|
for (DataSetResult.StorageInfo storageInfo : storageInfos) {
|
|
|
|
|
Devicestorage devicestorage = responseToDevicestorage(storageInfo);
|
|
|
|
|
if (isHistory == true)
|
|
|
|
|
devicestorage.setDevicerecordkey(item.getDeviceHistoryKey());
|
|
|
|
|
else
|
|
|
|
|
devicestorage.setDevicerecordkey(device.getDevicerecordkey());
|
|
|
|
|
devicestorage.setUuid(uuid);
|
|
|
|
|
devicestorageList.add(devicestorage);
|
|
|
|
|
//4,存储 Deviceclinical
|
|
|
|
|
if (ClinicalInfoAll != null && ClinicalInfoAll.size() > 0) {
|
|
|
|
|
List<DataSetResult.ClinicalInfo> deviceclinicals;
|
|
|
|
|
if (isHistory == true)
|
|
|
|
|
deviceclinicals = ClinicalInfoAll.stream().filter(p -> p.getDeviceHistoryKey().equals(item.getDeviceHistoryKey())).
|
|
|
|
|
collect(Collectors.toList());
|
|
|
|
|
else
|
|
|
|
|
deviceclinicals = ClinicalInfoAll.stream().filter(p -> p.getDeviceRecordKey().equals(item.getDeviceRecordKey())).
|
|
|
|
|
collect(Collectors.toList());
|
|
|
|
|
List<Deviceclinical> deviceclinicalList = new ArrayList<>();
|
|
|
|
|
if (deviceclinicals != null && deviceclinicals.size() > 0) {
|
|
|
|
|
for (DataSetResult.ClinicalInfo deviceClinical : deviceclinicals) {
|
|
|
|
|
Deviceclinical deviceclinical = responseToDeviceclinical(deviceClinical);
|
|
|
|
|
if (isHistory == true)
|
|
|
|
|
deviceclinical.setDevicerecordkey(item.getDeviceHistoryKey());
|
|
|
|
|
else
|
|
|
|
|
deviceclinical.setDevicerecordkey(device.getDevicerecordkey());
|
|
|
|
|
deviceclinical.setUuid(uuid);
|
|
|
|
|
deviceclinicalList.add(deviceclinical);
|
|
|
|
|
}
|
|
|
|
|
deviceService.deleteClinicalByUuid(uuid);
|
|
|
|
|
deviceService.insertDeviceClinical(deviceclinicalList);
|
|
|
|
|
}
|
|
|
|
|
deviceService.deleteStorageByUuid(uuid);
|
|
|
|
|
deviceService.insertDevicestorage(devicestorageList);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
//5 存储 Devicestorage
|
|
|
|
|
if (storageInfoAll != null && storageInfoAll.size() > 0) {
|
|
|
|
|
List<DataSetResult.StorageInfo> storageInfos;
|
|
|
|
|
if (isHistory == true)
|
|
|
|
|
storageInfos = storageInfoAll.stream().filter(p -> p.getDeviceHistoryKey().equals(item.getDeviceHistoryKey())).
|
|
|
|
|
collect(Collectors.toList());
|
|
|
|
|
else
|
|
|
|
|
storageInfos = storageInfoAll.stream().filter(p -> p.getDeviceRecordKey().equals(item.getDeviceRecordKey())).
|
|
|
|
|
collect(Collectors.toList());
|
|
|
|
|
if (storageInfos != null && storageInfos.size() > 0) {
|
|
|
|
|
List<Devicestorage> devicestorageList = new ArrayList<>();
|
|
|
|
|
for (DataSetResult.StorageInfo storageInfo : storageInfos) {
|
|
|
|
|
Devicestorage devicestorage = responseToDevicestorage(storageInfo);
|
|
|
|
|
if (isHistory == true)
|
|
|
|
|
devicestorage.setDevicerecordkey(item.getDeviceHistoryKey());
|
|
|
|
|
else
|
|
|
|
|
devicestorage.setDevicerecordkey(device.getDevicerecordkey());
|
|
|
|
|
devicestorage.setUuid(uuid);
|
|
|
|
|
devicestorageList.add(devicestorage);
|
|
|
|
|
}
|
|
|
|
|
deviceService.deleteStorageByUuid(uuid);
|
|
|
|
|
deviceService.insertDevicestorage(devicestorageList);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//6 存储Devicepackage
|
|
|
|
|
if (packingInfoAll != null && packingInfoAll.size() > 0) {
|
|
|
|
|
List<DataSetResult.PackingInfo> packingInfos;
|
|
|
|
|
if (isHistory == true)
|
|
|
|
|
packingInfos = packingInfoAll.stream().filter(p -> p.getDeviceHistoryKey().equals(item.getDeviceHistoryKey())).
|
|
|
|
|
collect(Collectors.toList());
|
|
|
|
|
else
|
|
|
|
|
packingInfos = packingInfoAll.stream().filter(p -> p.getDeviceRecordKey().equals(item.getDeviceRecordKey())).
|
|
|
|
|
collect(Collectors.toList());
|
|
|
|
|
if (packingInfos != null && packingInfos.size() > 0) {
|
|
|
|
|
List<Devicepackage> devicepackageList = new ArrayList<>();
|
|
|
|
|
for (DataSetResult.PackingInfo packingInfo : packingInfos) {
|
|
|
|
|
Devicepackage devicepackage = responseToDevicepackage(packingInfo);
|
|
|
|
|
if (isHistory == true)
|
|
|
|
|
devicepackage.setDevicerecordkey(item.getDeviceHistoryKey());
|
|
|
|
|
else
|
|
|
|
|
devicepackage.setDevicerecordkey(device.getDevicerecordkey());
|
|
|
|
|
devicepackage.setUuid(uuid);
|
|
|
|
|
devicepackageList.add(devicepackage);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//6 存储Devicepackage
|
|
|
|
|
if (packingInfoAll != null && packingInfoAll.size() > 0) {
|
|
|
|
|
List<DataSetResult.PackingInfo> packingInfos;
|
|
|
|
|
if (isHistory == true)
|
|
|
|
|
packingInfos = packingInfoAll.stream().filter(p -> p.getDeviceHistoryKey().equals(item.getDeviceHistoryKey())).
|
|
|
|
|
collect(Collectors.toList());
|
|
|
|
|
else
|
|
|
|
|
packingInfos = packingInfoAll.stream().filter(p -> p.getDeviceRecordKey().equals(item.getDeviceRecordKey())).
|
|
|
|
|
collect(Collectors.toList());
|
|
|
|
|
if (packingInfos != null && packingInfos.size() > 0) {
|
|
|
|
|
List<Devicepackage> devicepackageList = new ArrayList<>();
|
|
|
|
|
for (DataSetResult.PackingInfo packingInfo : packingInfos) {
|
|
|
|
|
Devicepackage devicepackage = responseToDevicepackage(packingInfo);
|
|
|
|
|
if (isHistory == true)
|
|
|
|
|
devicepackage.setDevicerecordkey(item.getDeviceHistoryKey());
|
|
|
|
|
else
|
|
|
|
|
devicepackage.setDevicerecordkey(device.getDevicerecordkey());
|
|
|
|
|
devicepackage.setUuid(uuid);
|
|
|
|
|
devicepackageList.add(devicepackage);
|
|
|
|
|
}
|
|
|
|
|
deviceService.deletePakcageByUuid(uuid);
|
|
|
|
|
deviceService.insertDevicepackage(devicepackageList);
|
|
|
|
|
}
|
|
|
|
|
deviceService.deletePakcageByUuid(uuid);
|
|
|
|
|
deviceService.insertDevicepackage(devicepackageList);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//7存储productInfo信息
|
|
|
|
|
productInfoSave(uuid);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//7存储productInfo信息
|
|
|
|
|
productInfoSave(uuid);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|