|
@@ -93,7 +93,7 @@ public class ViewController extends Controller {
|
|
|
//状态4:下载中
|
|
|
studyidfind.set("status", 4);
|
|
|
Db.use("local").update("study", studyidfind);
|
|
|
- dicomfind = Db.use("connected_dicom").find("select top 1000 * from dicominfo where studyuid=?",studyidfind.getStr("studyuid"));
|
|
|
+ dicomfind = Db.use("connected_dicom").find("select top 2000 * from dicominfo where studyuid=?",studyidfind.getStr("studyuid"));
|
|
|
for (Record record : dicomfind) {
|
|
|
Request request = new Request.Builder()
|
|
|
.url(record.getStr("URL"))
|
|
@@ -114,9 +114,9 @@ public class ViewController extends Controller {
|
|
|
studyidfind.set("status", 3);
|
|
|
Db.use("local").update("study", studyidfind);
|
|
|
}
|
|
|
-// renderText(aString+"**************"+bString);
|
|
|
+ renderText(aString+"**************"+bString);
|
|
|
|
|
|
- renderText(dicomfind.toString());
|
|
|
+// renderText(dicomfind.toString());
|
|
|
}
|
|
|
|
|
|
|