|
|
|
@ -22,7 +22,6 @@ import com.glxp.api.entity.purchase.*;
|
|
|
|
|
import com.glxp.api.entity.sync.BasicDownloadStatusEntity;
|
|
|
|
|
import com.glxp.api.entity.sync.BasicExportStatusEntity;
|
|
|
|
|
import com.glxp.api.entity.sync.BasicExportStatusTimeEntity;
|
|
|
|
|
import com.glxp.api.entity.system.SyncDataBustypeEntity;
|
|
|
|
|
import com.glxp.api.entity.system.SyncDataSetEntity;
|
|
|
|
|
import com.glxp.api.entity.thrsys.ThrBusTypeOriginEntity;
|
|
|
|
|
import com.glxp.api.http.sync.SpGetHttpClient;
|
|
|
|
@ -221,7 +220,7 @@ public class HeartService {
|
|
|
|
|
uploadData(exportType, taskId, x -> x.getOtherData(info, taskId, now, syncTime));
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case DOCUMENT_TYPE:
|
|
|
|
|
case DOCUMENT_TYPE_DATA:
|
|
|
|
|
if (needExec(info.getTypeBus(), info.getTypeScan(), info.getTypeThird())) {
|
|
|
|
|
uploadData(exportType, taskId, x -> x.getDocumentTypeData(info, taskId, now, syncTime));
|
|
|
|
|
}
|
|
|
|
@ -540,7 +539,7 @@ public class HeartService {
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
private boolean needExec(int... set) {
|
|
|
|
|
return CollectionUtil.contains(Collections.singleton(set), 1);
|
|
|
|
|
return Arrays.stream(set).filter(i->i==1).findAny().isPresent();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void uploadData(BasicExportTypeEnum exportType, String taskId, Function<HeartService, Object> dataMethod) {
|
|
|
|
|