|
@@ -90,7 +90,6 @@ public class PaymentService extends ServiceImpl<PaymentMapper, Payment> {
|
|
|
}
|
|
|
item.setFileList(fileList);
|
|
|
}
|
|
|
- continue;
|
|
|
}
|
|
|
response.setDetail(detail);
|
|
|
response.setPaymentList(paymentList);
|
|
@@ -242,20 +241,6 @@ public class PaymentService extends ServiceImpl<PaymentMapper, Payment> {
|
|
|
*/
|
|
|
List<Payment> paymentList = request.getPaymentList();
|
|
|
|
|
|
- String tempUrl = "";
|
|
|
- for (Payment item : paymentList) {
|
|
|
- List<String> fields = item.getFileList();
|
|
|
- for (int i = 0; i <= fields.size() - 1; i++) {
|
|
|
- if (i == fields.size() - 1) {
|
|
|
- tempUrl = tempUrl + fields.get(i);
|
|
|
- } else {
|
|
|
- tempUrl = tempUrl + fields.get(i) + ",";
|
|
|
- }
|
|
|
- item.setNoteImgUrl(tempUrl);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
/**
|
|
|
* 获取付款列表的全部id
|
|
|
*/
|