|
@@ -945,14 +945,14 @@ public class BidTenderController extends BaseController {
|
|
|
param.put("hid",hid);
|
|
|
BidQuote bidQuote = bidQuoteService.selectQuoteBySupplier(param);
|
|
|
if(bidQuote != null){
|
|
|
- bidQuote.setStatus(6L);
|
|
|
- bidQuoteService.updateBidQuote(bidQuote);
|
|
|
+// bidQuote.setStatus(6L);
|
|
|
+// bidQuoteService.updateBidQuote(bidQuote);
|
|
|
}
|
|
|
|
|
|
//TODO 冗余执行
|
|
|
// 更新公告退款状态
|
|
|
- bidNotice.setIsRefund(1L);
|
|
|
- bidNoticeService.updateBidNotice(bidNotice);
|
|
|
+// bidNotice.setIsRefund(1L);
|
|
|
+// bidNoticeService.updateBidNotice(bidNotice);
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -961,6 +961,7 @@ public class BidTenderController extends BaseController {
|
|
|
for (int i = 0; i < ids.size(); i++){
|
|
|
depositdescids[i] = ids.get(i);
|
|
|
}
|
|
|
+ System.out.println("LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL");
|
|
|
logger.info("depositdescids:{}",depositdescids);
|
|
|
int i = remoteDepositService.refundDeposit(depositdescids, SecurityConstants.INNER);
|
|
|
return i;
|
|
@@ -1122,18 +1123,18 @@ public class BidTenderController extends BaseController {
|
|
|
if(whid.equals(hid) == false){
|
|
|
ids.add(item.getDepositdescid());
|
|
|
|
|
|
- param.put("sid",sid);
|
|
|
- param.put("hid",hid);
|
|
|
- BidQuote bidQuote = bidQuoteService.selectQuoteBySupplier(param);
|
|
|
- System.out.println(bidQuote);
|
|
|
- if(bidQuote != null){
|
|
|
- bidQuote.setStatus(6L);
|
|
|
- bidQuoteService.updateBidQuote(bidQuote);
|
|
|
- }
|
|
|
+// param.put("sid",sid);
|
|
|
+// param.put("hid",hid);
|
|
|
+// BidQuote bidQuote = bidQuoteService.selectQuoteBySupplier(param);
|
|
|
+// System.out.println(bidQuote);
|
|
|
+// if(bidQuote != null){
|
|
|
+// bidQuote.setStatus(6L);
|
|
|
+// bidQuoteService.updateBidQuote(bidQuote);
|
|
|
+// }
|
|
|
}
|
|
|
}
|
|
|
- bidNotice.setIsRefund(1L);
|
|
|
- bidNoticeService.updateBidNotice(bidNotice);
|
|
|
+// bidNotice.setIsRefund(1L);
|
|
|
+// bidNoticeService.updateBidNotice(bidNotice);
|
|
|
}
|
|
|
|
|
|
String[] depositdescids = new String[ids.size()];
|