Subversion Repositories SmartDukaan

Rev

Rev 34428 | Rev 34622 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 34428 Rev 34429
Line 1092... Line 1092...
1092
//                    as of now all party is showing to rbm
1092
//                    as of now all party is showing to rbm
1093
                    /*filteredPtams = ptams.stream()
1093
                    /*filteredPtams = ptams.stream()
1094
                            .filter(ptam -> !(CollectionRemark.RBM_L2_ESCALATION.equals(ptam.getRemark()) || CollectionRemark.SALES_ESCALATION.equals(ptam.getRemark())))
1094
                            .filter(ptam -> !(CollectionRemark.RBM_L2_ESCALATION.equals(ptam.getRemark()) || CollectionRemark.SALES_ESCALATION.equals(ptam.getRemark())))
1095
                            .collect(Collectors.toList());*/
1095
                            .collect(Collectors.toList());*/
1096
                } else if (isRBMAndNotL1) {
1096
                } else if (isRBMAndNotL1) {
-
 
1097
                    filteredPtams = ptams;
1097
                    filteredPtams = ptams.stream()
1098
                    /*filteredPtams = ptams.stream()
1098
                            .filter(ptam -> !(CollectionRemark.SALES_ESCALATION.equals(ptam.getRemark())))
1099
                            .filter(ptam -> !(CollectionRemark.SALES_ESCALATION.equals(ptam.getRemark())))
1099
                            .collect(Collectors.toList());
1100
                            .collect(Collectors.toList());*/
1100
                } else if (isSales) {
1101
                } else if (isSales) {
1101
                    filteredPtams = ptams.stream()
1102
                    filteredPtams = ptams.stream()
1102
                            .filter(ptam -> !(CollectionRemark.RBM_L2_ESCALATION.equals(ptam.getRemark())))
1103
                            .filter(ptam -> !(CollectionRemark.RBM_L2_ESCALATION.equals(ptam.getRemark())))
1103
                            .collect(Collectors.toList());
1104
                            .collect(Collectors.toList());
1104
                } else {
1105
                } else {