|
@@ -193,6 +193,19 @@ public class OTMSController {
|
|
|
String resultSignedNotePhoto = (String) imageFileUtils.downloadFile(map.get("resultReceiveNotePhoto").toString());
|
|
|
map.put("resultReceiveNotePhoto",resultSignedNotePhoto);
|
|
|
}
|
|
|
+ //追加的图片
|
|
|
+ if(map.containsKey("otherPhoto1") && map.get("otherPhoto1")!=null){
|
|
|
+ String resultSignedNotePhoto =(String) imageFileUtils.downloadFile(map.get("otherPhoto1").toString());
|
|
|
+ map.put("otherPhoto1",resultSignedNotePhoto);
|
|
|
+ }
|
|
|
+ if(map.containsKey("otherPhoto2") && map.get("otherPhoto2") !=null){
|
|
|
+ String resultSignedNotePhoto =(String) imageFileUtils.downloadFile(map.get("otherPhoto2").toString());
|
|
|
+ map.put("otherPhoto2",resultSignedNotePhoto);
|
|
|
+ }
|
|
|
+ if(map.containsKey("otherPhoto3") && map.get("otherPhoto3") !=null){
|
|
|
+ String resultSignedNotePhoto =(String) imageFileUtils.downloadFile(map.get("otherPhoto3").toString());
|
|
|
+ map.put("otherPhoto3",resultSignedNotePhoto);
|
|
|
+ }
|
|
|
return map;
|
|
|
}
|
|
|
|