Commit b68ce569 authored by 吴琼's avatar 吴琼

xiugai

parent a142b7cb
......@@ -468,11 +468,11 @@ public class TransactionReceiptRecordServiceImpl implements ITransactionReceiptR
log.info("contractUrl /contract/batch/sign updateSuccessList,"+updateSuccessList);
//更新数据
JSONArray failList = jsonObject.getJSONArray("failList");
log.info("contractUrl /contract/batch/sign jsonArray,"+failList);
log.info("contractUrl /contract/batch/sign failList,"+failList);
List<String> updateFailList = new ArrayList<>();
if(failList !=null && failList.size()>0){
for(int i= 0;i <jsonArray.size() ;i++){
String path = (String) jsonArray.get(i);
for(int i= 0;i <failList.size() ;i++){
String path = (String) failList.get(i);
int begin = path.lastIndexOf("/")+1;
int end = path.indexOf(".");
path =path.substring(begin,end);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment