Subversion Repositories SmartDukaan

Rev

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

Rev 34916 Rev 34918
Line 624... Line 624...
624
            }else {
624
            }else {
625
                managerName = bmName;
625
                managerName = bmName;
626
            }
626
            }
627
            String abmName ="";
627
            String abmName ="";
628
            int abmId = csService.getAuthUserId(ProfitMandiConstants.TICKET_CATEGORY_ABM,EscalationType.L1,fofoId);
628
            int abmId = csService.getAuthUserId(ProfitMandiConstants.TICKET_CATEGORY_ABM,EscalationType.L1,fofoId);
-
 
629
            int abmL2Id = csService.getAuthUserId(ProfitMandiConstants.TICKET_CATEGORY_ABM,EscalationType.L2,fofoId);
-
 
630
            int abmL3Id = csService.getAuthUserId(ProfitMandiConstants.TICKET_CATEGORY_ABM,EscalationType.L3,fofoId);
629
            if(abmId !=0){
631
            if(abmId !=0){
630
                abmName = authRepository.selectById(abmId).getFullName();
632
                abmName = authRepository.selectById(abmId).getFullName();
631
            }else{
633
            }else if(abmL2Id != 0){
632
                int abmL2Id = csService.getAuthUserId(ProfitMandiConstants.TICKET_CATEGORY_ABM,EscalationType.L2,fofoId);
-
 
633
                abmName = authRepository.selectById(abmL2Id).getFullName();
634
                abmName = authRepository.selectById(abmL2Id).getFullName();
-
 
635
            }else {
-
 
636
                abmName = authRepository.selectById(abmL3Id).getFullName();
634
            }
637
            }
635
            AST ast = astRepository.selectById(customRetailers.get(fofoId).getAstId());
638
            AST ast = astRepository.selectById(customRetailers.get(fofoId).getAstId());
636
 
639
 
637
            PartnerType partnerTypeThisMonth = partnerTypeChangeService.getTypeOnMonth(fofoId, currentMonth);
640
            PartnerType partnerTypeThisMonth = partnerTypeChangeService.getTypeOnMonth(fofoId, currentMonth);
638
 
641