| Line 75... |
Line 75... |
| 75 |
private long openFailedPaymentsTicketCount;
|
75 |
private long openFailedPaymentsTicketCount;
|
| 76 |
private long openDelayedDeliveryTicketCount;
|
76 |
private long openDelayedDeliveryTicketCount;
|
| 77 |
private long openFlaggedPaymentsTicketCount;
|
77 |
private long openFlaggedPaymentsTicketCount;
|
| 78 |
private long openStorePickupTicketCount;
|
78 |
private long openStorePickupTicketCount;
|
| 79 |
private long lowInventoryTicketsCount;
|
79 |
private long lowInventoryTicketsCount;
|
| - |
|
80 |
//Start:- Added By Manish Sharma for Creating a new Ticket: Category- RTO Refund on 21-Jun-2013
|
| - |
|
81 |
private long RtoRefundsTicketCount;
|
| - |
|
82 |
//End:- Added By Manish Sharma for Creating a new Ticket: Category- RTO Refund on 21-Jun-2013
|
| 80 |
private long DoaRequestCount;
|
83 |
private long DoaRequestCount;
|
| 81 |
private long failedRechargeCount = 0;
|
84 |
private long failedRechargeCount = 0;
|
| 82 |
private long successfulRechargeCount = 0;
|
85 |
private long successfulRechargeCount = 0;
|
| 83 |
|
86 |
|
| 84 |
private long ReturnRequestCount;
|
87 |
private long ReturnRequestCount;
|
| Line 318... |
Line 321... |
| 318 |
searchFilter.getTicketStatuses().add(TicketStatus.REOPEN);
|
321 |
searchFilter.getTicketStatuses().add(TicketStatus.REOPEN);
|
| 319 |
searchFilter.setTicketCategory(TicketCategory.LOW_INVENTORY_CANCELLED_ORDERS);
|
322 |
searchFilter.setTicketCategory(TicketCategory.LOW_INVENTORY_CANCELLED_ORDERS);
|
| 320 |
crmServiceClient = new CRMClient().getClient();
|
323 |
crmServiceClient = new CRMClient().getClient();
|
| 321 |
lowInventoryTicketsCount = crmServiceClient.getTickets(searchFilter).size();
|
324 |
lowInventoryTicketsCount = crmServiceClient.getTickets(searchFilter).size();
|
| 322 |
}
|
325 |
}
|
| - |
|
326 |
//Start:- Added By Manish Sharma for Creating a new Ticket: Category- RTO Refund on 21-Jun-2013
|
| - |
|
327 |
if (canViewRTORefunds()) {
|
| - |
|
328 |
searchFilter = new SearchFilter();
|
| - |
|
329 |
searchFilter.setTicketStatuses(new ArrayList<TicketStatus>());
|
| - |
|
330 |
searchFilter.getTicketStatuses().add(TicketStatus.OPEN);
|
| - |
|
331 |
searchFilter.getTicketStatuses().add(TicketStatus.REOPEN);
|
| - |
|
332 |
searchFilter.setTicketCategory(TicketCategory.RTO_REFUND);
|
| - |
|
333 |
crmServiceClient = new CRMClient().getClient();
|
| - |
|
334 |
RtoRefundsTicketCount = crmServiceClient.getTickets(searchFilter).size();
|
| - |
|
335 |
}
|
| - |
|
336 |
//End:- Added By Manish Sharma for Creating a new Ticket: Category- RTO Refund on 21-Jun-2013
|
| 323 |
|
337 |
|
| 324 |
}
|
338 |
}
|
| 325 |
|
339 |
|
| 326 |
private void loadUserCommunicationDetails()
|
340 |
private void loadUserCommunicationDetails()
|
| 327 |
throws UserCommunicationException, TException {
|
341 |
throws UserCommunicationException, TException {
|
| Line 616... |
Line 630... |
| 616 |
}
|
630 |
}
|
| 617 |
|
631 |
|
| 618 |
public void setLowInventoryTicketsCount(long lowInventoryTicketsCount) {
|
632 |
public void setLowInventoryTicketsCount(long lowInventoryTicketsCount) {
|
| 619 |
this.lowInventoryTicketsCount = lowInventoryTicketsCount;
|
633 |
this.lowInventoryTicketsCount = lowInventoryTicketsCount;
|
| 620 |
}
|
634 |
}
|
| - |
|
635 |
|
| - |
|
636 |
//Start:- Added By Manish Sharma for Creating a new Ticket: Category- RTO Refund on 21-Jun-2013
|
| - |
|
637 |
public long getRTORefundsCount(){
|
| - |
|
638 |
return RtoRefundsTicketCount;
|
| - |
|
639 |
}
|
| 621 |
|
640 |
|
| - |
|
641 |
public void setRTORefundsCount(long RtoRefundsTicketCount) {
|
| - |
|
642 |
this.RtoRefundsTicketCount = RtoRefundsTicketCount;
|
| - |
|
643 |
}
|
| - |
|
644 |
//End:- Added By Manish Sharma for Creating a new Ticket: Category- RTO Refund on 21-Jun-2013
|
| - |
|
645 |
|
| 622 |
public String getDeviceNumber() {
|
646 |
public String getDeviceNumber() {
|
| 623 |
return deviceNumber;
|
647 |
return deviceNumber;
|
| 624 |
}
|
648 |
}
|
| 625 |
|
649 |
|
| 626 |
public void setDeviceNumber(String deviceNumber) {
|
650 |
public void setDeviceNumber(String deviceNumber) {
|