|
@@ -212,7 +212,7 @@ public class BizPaymentController extends BaseController {
|
|
|
startPage();
|
|
|
List<BizArchiveInputDetail> list = contractDetailService.getList(condition);
|
|
|
list.forEach(l -> {
|
|
|
- if(l.getTaskTypeId() == 4){
|
|
|
+ if(l.getTaskTypeId() == 4 && l.getBelongRegion() != null){
|
|
|
SysDictData sysDictData = sysDictDataService.selectDictDataById(l.getBelongRegion().longValue());
|
|
|
l.setExplain( sysDictData.getDictLabel()+":");
|
|
|
}
|
|
@@ -308,7 +308,7 @@ public class BizPaymentController extends BaseController {
|
|
|
detailCondition.setPaymentId(payment.getId());
|
|
|
List<BizPaymentDetail> details = paymentDetailService.getListByBean(detailCondition);
|
|
|
details.forEach(l -> {
|
|
|
- if(l.getTaskTypeId() == 4){
|
|
|
+ if(l.getTaskTypeId() == 4 && l.getBelongRegion() != null){
|
|
|
SysDictData sysDictData = sysDictDataService.selectDictDataById(l.getBelongRegion().longValue());
|
|
|
l.setExplain( sysDictData.getDictLabel()+":");
|
|
|
}
|