|
@@ -377,7 +377,7 @@ public class BillServiceImpl extends ServiceImpl<BillMapper, Bill> implements IB
|
377
|
377
|
messageModelAPP.setMessageType("7");
|
378
|
378
|
messageModelAPP.setAdviceType("1");
|
379
|
379
|
messageModelAPP.setModelType("2");
|
380
|
|
- messageModelAPP.setUuid(e.getTaUserId().toString());
|
|
380
|
+ messageModelAPP.setUuid(null != e.getTaUserId() ? e.getTaUserId().toString() : "");
|
381
|
381
|
messageModelAPP.setUuidType("1");
|
382
|
382
|
// 消息是物业端 发过来的, 就是 2
|
383
|
383
|
messageModelAPP.setSource("2");
|
|
@@ -390,7 +390,7 @@ public class BillServiceImpl extends ServiceImpl<BillMapper, Bill> implements IB
|
390
|
390
|
return messageModelAPP;
|
391
|
391
|
|
392
|
392
|
}).collect(Collectors.toList());
|
393
|
|
- iMessageService.saveBatch(messageList);
|
|
393
|
+// iMessageService.saveBatch(messageList);
|
394
|
394
|
}
|
395
|
395
|
|
396
|
396
|
}
|
|
@@ -442,9 +442,9 @@ public class BillServiceImpl extends ServiceImpl<BillMapper, Bill> implements IB
|
442
|
442
|
roomNoQueryWrapper.eq("org_id", orgId);
|
443
|
443
|
roomNoQueryWrapper.eq("id", roomId);
|
444
|
444
|
TpRoomNo tpRoomNo = tpRoomNoMapper.selectOne(roomNoQueryWrapper);
|
445
|
|
- if (null == tpRoomNo) {
|
446
|
|
- throw new WisdomException("编号: " + roomId + " 不是本小区的房产");
|
447
|
|
- }
|
|
445
|
+// if (null == tpRoomNo) {
|
|
446
|
+// throw new WisdomException("编号: " + roomId + " 不是本小区的房产");
|
|
447
|
+// }
|
448
|
448
|
cell = getCell(row.getCell(1));
|
449
|
449
|
if (null == cell) {
|
450
|
450
|
throw new WisdomException("第" + currentRow + "行 期/区 不能为空");
|