Subversion Repositories SmartDukaan

Rev

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

Rev 32032 Rev 32033
Line 785... Line 785...
785
                    finalPayout = eligiblePayoutValue;
785
                    finalPayout = eligiblePayoutValue;
786
                    Map<Integer, Double> fofoCriteriaMap = fixedSlabCriteriaPartnerMap.get(criteriaId);
786
                    Map<Integer, Double> fofoCriteriaMap = fixedSlabCriteriaPartnerMap.get(criteriaId);
787
                    if (fofoCriteriaMap != null) {
787
                    if (fofoCriteriaMap != null) {
788
                        if (fofoCriteriaMap.containsKey(fofoId)) {
788
                        if (fofoCriteriaMap.containsKey(fofoId)) {
789
                            double totalPayout = fofoCriteriaMap.get(fofoId);
789
                            double totalPayout = fofoCriteriaMap.get(fofoId);
790
                            if (Math.abs(eligiblePayoutValue - finalPayout) < Utils.DOUBLE_EPSILON)
790
                            if (Math.abs(totalPayout - finalPayout) < Utils.DOUBLE_EPSILON)
791
                                finalPayout = 0;
791
                                finalPayout = 0;
792
                        }
792
                        }
793
                    }
793
                    }
794
                }
794
                }
795
 
795