|
|
@@ -163,7 +163,7 @@ public class PortalController extends BaseController {
|
|
|
//获得项目抵用券
|
|
|
List<JtVoucherListBo> vlist=voucherService.selectActivityVoucher();
|
|
|
for (JtVoucherListBo j : vlist) {
|
|
|
- if (j.getName().length()>12) {
|
|
|
+ if (j!=null&&j.getName().length()>12) {
|
|
|
j.setName(j.getName().substring(0, 11)+"…");
|
|
|
}
|
|
|
}
|