/***************
Ceated By : Mohit Dwivedi(KVP Business Solution Pvt Ltd).
Created Date :
Purpose : Thiscontroller is for Lead Age Report.
***************/
public classleadReportController{
public Date fromDate {get;set;}
public Date toDate {get;set;}
public BooleanshowHideTable{get;set;}
public List<wrapLead>wrapList{get;set;}
public IntegeropenCountRecord{get;set;}
public IntegerCallBackCountRecord{get;set;}
public IntegerContactedCountRecord{get;set;}
public IntegerFirmCountRecord{get;set;}
public IntegerLostCountRecord{get;set;}
public IntegerNotIntrestedCountRecord{get;set;}
public IntegerOthersCountRecord{get;set;}
public IntegerQualifiedCountRecord{get;set;}
public IntegerUnqualifiedCountRecord{get;set;}
public DecimalopenCountWrap {get;set;}
public DecimalCallBackCountWrap {get;set;}
public DecimalContactedCountWrap {get;set;}
public DecimalFirmCountWrap {get;set;}
public DecimalLostCountWrap {get;set;}
public DecimalNotIntrestedCountWrap {get;set;}
public DecimalOthersCountWrap {get;set;}
public DecimalQualifiedCountWrap {get;set;}
public DecimalUnqualifiedCountWrap {get;set;}
public booleanshowhidetable2{get;set;}
public boolean Flag{get;set;}
public List<SelectOption>LeadJunList{get;set;}
public StringselectedSource{get;set;}
public list<Wrapperclass>wrapperlistdata;
public stringAllstagesData{get;set;}
public boolean showhide{get;set;}
public String stagenames{get;set;}
publicleadReportController(){
showHideTable2=false;
showhide=false;
showHideTable = false;
wrapList = new list<wrapLead>();
wrapperlistdata =newlist<Wrapperclass>();
Set<String> sourceSet= new Set<String>();
LeadJunList = newList<SelectOption>();
Schema.DescribeFieldResult fieldResult = Lead.LeadSource.getDescribe();
List<Schema.PicklistEntry> ple = fieldResult.getPicklistValues();
// displayLeadTable();
for( Schema.PicklistEntry f : ple)
{
sourceSet.add(f.getLabel());
}
system.debug('------------sourceSet----------'+sourceSet);
LeadJunList.add(newSelectOption('-None-', '-None-'));
//LeadJunList.add(newSelectOption('All', 'All'));
for(String Source :sourceSet){
LeadJunList.add(new SelectOption(Source, Source));
}
}
public voiddisplayLeadTable() {
showHideTable2=true;
showhide=true;
map<String,double>stagenamesmap=new map<String,decimal>{'open'=>0,'CallBack'=>0,'Contacted'=>0,'Firm Enquiry'=>0,'Lost'=>0,'Not Interested'=>0,'Others'=>0,'Qualified'=>0,'Unqualified'=>0};
map<String,double>mapofstageswithdata =new map<String,decimal>();
map<String,double>mapofStatuscount = new map<String,decimal>();
list<Decimal>statuscountlist = new list<Decimal>();
list<Decimal>stagenameslist =new list<Decimal>();
wrapperlistdata.clear();
if(wrapList.size() >0){
wrapList.clear();
}
wrapList = new list<wrapLead>();
wrapperlistdata =newlist<Wrapperclass>();
List<Lead_Junction__c> ljList = new list<Lead_Junction__c>();
Integer openCount = 0;
Integer CallBackCount= 0;
IntegerContactedCount = 0;
Integer FirmCount = 0;
Integer LostCount = 0;
IntegerNotIntrestedCount = 0;
Integer OthersCount =0;
IntegerQualifiedCount = 0;
IntegerUnqualifiedCount = 0;
DecimalTotalOpenCount = 0;
DecimalTotalCallBackCount = 0;
DecimalTotalContactedCount = 0;
DecimalTotalFirmCount = 0;
DecimalTotalLostCount = 0;
DecimalTotalNotIntrestedCount = 0;
DecimalTotalOthersCount = 0;
DecimalTotalQualifiedCount = 0;
DecimalTotalUnqualifiedCount = 0;
system.debug('----------fromDate--------'+fromDate);
system.debug('----------toDate--------'+toDate);
if(fromDate ==null &&toDate == null){
showHideTable =False;
flag =showHideTable ;
}else if(fromDate !=null && toDate != null){
ljList = [SELECTName,Lead_Current_Status__c,LeadPrevious_Status__c,lead_sources__c,Total_Days_in_same_Status__c FROM Lead_Junction__c WHERE Total_Days_in_same_Status__c!= null AND DAY_ONLY(convertTimezone(CreatedDate)) >= : fromDate AND DAY_ONLY(convertTimezone(CreatedDate)) <= : toDate AND lead_sources__c =: selectedSource ];
system.debug('----------ljList(else)--------'+ljList);
}
if(test.isRunningTest()){
ljList = [SELECTName,Lead_Current_Status__c,LeadPrevious_Status__c,lead_sources__c,Total_Days_in_same_Status__c FROM Lead_Junction__c limit 100];
}
for(Lead_Junction__clj : ljList){
if(lj.LeadPrevious_Status__c == 'Open' && lj.Total_Days_in_same_Status__c != null && lj.lead_sources__c == selectedSource ){
openCount =openCount + 1;
TotalOpenCount = TotalOpenCount + lj.Total_Days_in_same_Status__c;
}
if(lj.LeadPrevious_Status__c == 'CallBack' && lj.Total_Days_in_same_Status__c != null && lj.lead_sources__c == selectedSource ){
CallBackCount= CallBackCount + 1;
TotalCallBackCount = TotalCallBackCount + lj.Total_Days_in_same_Status__c;
}
if(lj.LeadPrevious_Status__c == 'Contacted' && lj.Total_Days_in_same_Status__c != null && lj.lead_sources__c == selectedSource ){
ContactedCount = ContactedCount + 1;
TotalContactedCount = TotalContactedCount + lj.Total_Days_in_same_Status__c;
}
if(lj.LeadPrevious_Status__c == 'Firm Enquiry' && lj.Total_Days_in_same_Status__c != null && lj.lead_sources__c == selectedSource ){
FirmCount =FirmCount + 1;
TotalFirmCount = TotalFirmCount + lj.Total_Days_in_same_Status__c;
}
if(lj.LeadPrevious_Status__c == 'Lost' && lj.Total_Days_in_same_Status__c != null && lj.lead_sources__c == selectedSource ){
LostCount =LostCount + 1;
TotalLostCount = TotalLostCount + lj.Total_Days_in_same_Status__c;
}
if(lj.LeadPrevious_Status__c == 'Not Interested' && lj.Total_Days_in_same_Status__c != null && lj.lead_sources__c == selectedSource ){
NotIntrestedCount = NotIntrestedCount + 1;
TotalNotIntrestedCount = TotalNotIntrestedCount + lj.Total_Days_in_same_Status__c;
}
if(lj.LeadPrevious_Status__c == 'Others' && lj.Total_Days_in_same_Status__c != null && lj.lead_sources__c == selectedSource ){
OthersCount =OthersCount + 1;
TotalOthersCount = TotalOthersCount + lj.Total_Days_in_same_Status__c;
}
if(lj.LeadPrevious_Status__c == 'Qualified' && lj.Total_Days_in_same_Status__c != null && lj.lead_sources__c == selectedSource ){
QualifiedCount = QualifiedCount + 1;
TotalQualifiedCount = TotalQualifiedCount + lj.Total_Days_in_same_Status__c;
}
if(lj.LeadPrevious_Status__c == 'Unqualified' && lj.Total_Days_in_same_Status__c != null && lj.lead_sources__c == selectedSource ){
UnqualifiedCount = UnqualifiedCount + 1;
TotalUnqualifiedCount = TotalUnqualifiedCount + lj.Total_Days_in_same_Status__c;
}
wrapLead wl = newwrapLead();
wl.LeadName = lj.Name;
wl.prevStatus =lj.LeadPrevious_Status__c;
wl.CurrStatus =lj.Lead_Current_Status__c;
wl.leadsource =lj.lead_sources__c;
wl.totalDays = lj.Total_Days_in_same_Status__c;
wrapList.add(wl);
}
if(wrapList.size() >0){
if(showHideTable==false){
showHideTable = true;
}else if(showHideTable == true){
showHideTable= false;
}
}
if(openCount!=0){
openCountRecord =openCount;
}else{
openCountRecord =0;
}
if(CallBackCount!=0){
CallBackCountRecord = CallBackCount;
}else{
CallBackCountRecord = 0;
}
if(ContactedCount!=0){
ContactedCountRecord = ContactedCount;
}else{
ContactedCountRecord = 0;
}
if(FirmCount!=0){
FirmCountRecord =FirmCount;
}else{
FirmCountRecord =0;
}
if(LostCount!=0){
LostCountRecord =LostCount;
}else{
LostCountRecord =0;
}
if(NotIntrestedCount!=0){
NotIntrestedCountRecord = NotIntrestedCount;
Ceated By : Mohit Dwivedi(
Created Date :
Purpose : This
***************/
public class
public Date fromDate {get;
public Date toDate {get;
public Boolean
public List<wrapLead>
public Integer
public Integer
public Integer
public Integer
public Integer
public Integer
public Integer
public Integer
public Integer
public Decimal
public Decimal
public Decimal
public Decimal
public Decimal
public Decimal
public Decimal
public Decimal
public Decimal
public boolean
public boolean Flag{get;
public List<SelectOption>
public String
public list<Wrapperclass>
public string
public boolean showhide{
public String stagenames{
public
showHideTable2=false;
showhide=false;
showHideTable = false;
wrapList = new list<
wrapperlistdata =new
Set<String> sourceSet
LeadJunList = new
Schema.
List<Schema.
// displayLeadTable();
for( Schema.
{
sourceSet.add(f.
}
system.debug('--------
LeadJunList.add(new
//LeadJunList.add(new
for(String Source :
LeadJunList.add(
}
}
public void
showHideTable2=true;
showhide=true;
map<String,double>
map<String,double>
map<String,double>
list<Decimal>
list<Decimal>
wrapperlistdata.clear(
if(wrapList.size() >0)
wrapList.clear();
}
wrapList = new list<
wrapperlistdata =new
List<Lead_Junction__c>
Integer openCount = 0;
Integer CallBackCount
Integer
Integer FirmCount = 0;
Integer LostCount = 0;
Integer
Integer OthersCount =
Integer
Integer
Decimal
Decimal
Decimal
Decimal
Decimal
Decimal
Decimal
Decimal
Decimal
system.debug('--------
system.debug('--------
if(fromDate ==null &&
showHideTable =
flag =
}else if(fromDate !=
ljList = [SELECT
system.debug('----
}
if(test.isRunningTest(
ljList = [SELECT
}
for(Lead_Junction__c
if(lj.
openCount =
}
if(lj.
CallBackCount
}
if(lj.
}
if(lj.
FirmCount =
}
if(lj.
LostCount =
}
if(lj.
}
if(lj.
OthersCount =
}
if(lj.
}
if(lj.
}
wrapLead wl = new
wl.LeadName = lj.
wl.prevStatus =
wl.CurrStatus =lj.
wl.leadsource =
wl.totalDays = lj.
wrapList.add(wl);
}
if(wrapList.size() >
if(showHideTable==
showHideTable =
}else if(
}
}
if(openCount!=0){
openCountRecord =
}else{
openCountRecord =
}
if(CallBackCount!=0){
}else{
}
if(ContactedCount!=0){
}else{
}
if(FirmCount!=0){
FirmCountRecord =
}else{
FirmCountRecord =
}
if(LostCount!=0){
LostCountRecord =
}else{
LostCountRecord =
}
if(NotIntrestedCount!=