| | |
| | | StringBuilder builder = new StringBuilder(""); |
| | | List<PatrolRecordVO> patrolRecordVOList = taskPlaceRectificationVO.getPatrolRecordVOList(); |
| | | for (int i = 0; i < patrolRecordVOList.size(); i++) { |
| | | builder.append(i + 1).append(" : ").append(patrolRecordVOList.get(i).getItemsName()).append("; "); |
| | | if(patrolRecordVOList.get(i).getState().equals(0)){ |
| | | builder.append(i + 1).append(" : ").append(patrolRecordVOList.get(i).getItemsName()).append("; "); |
| | | } |
| | | } |
| | | taskPlaceRectificationVO.setHiddenDanger(builder.toString()); |
| | | } |
| | |
| | | StringBuilder builder = new StringBuilder(""); |
| | | List<PatrolRecordVO> patrolRecordVOList = taskPlaceRectificationExcel.getPatrolRecordVOList(); |
| | | for (int i = 0; i < patrolRecordVOList.size(); i++) { |
| | | builder.append(i + 1).append(" : ").append(patrolRecordVOList.get(i).getItemsName()).append("; "); |
| | | if(patrolRecordVOList.get(i).getState().equals(0)){ |
| | | builder.append(i + 1).append(" : ").append(patrolRecordVOList.get(i).getItemsName()).append("; "); |
| | | } |
| | | } |
| | | taskPlaceRectificationExcel.setHiddenDanger(builder.toString()); |
| | | } |