|
@@ -1026,6 +1026,8 @@ public class BidTenderController extends BaseController {
|
|
|
BidQuote bidQuote = bidQuoteService.selectQuoteBySupplier(map);
|
|
|
// 已退款
|
|
|
if(bidQuote.getStatus() == 6){
|
|
|
+ item.setIsRefund(1);
|
|
|
+ bidContractService.updateBidContract(item);
|
|
|
continue;
|
|
|
}
|
|
|
|
|
@@ -1049,6 +1051,9 @@ public class BidTenderController extends BaseController {
|
|
|
// 更新公告退款状态
|
|
|
bidNotice.setIsRefund(bidNotice.getIsRefund() == null?1:bidNotice.getIsRefund()+1);
|
|
|
bidNoticeService.updateBidNotice(bidNotice);
|
|
|
+
|
|
|
+ item.setIsRefund(1);
|
|
|
+ bidContractService.updateBidContract(item);
|
|
|
}
|
|
|
String[] depositdescids = new String[ids.size()];
|
|
|
|