Subversion Repositories SmartDukaan

Rev

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

Rev 4008 Rev 4142
Line 70... Line 70...
70
    public String convertDate(Long date) {
70
    public String convertDate(Long date) {
71
        if (date == null || date == 0) {
71
        if (date == null || date == 0) {
72
            return "N/A";
72
            return "N/A";
73
        }
73
        }
74
 
74
 
75
        return SDF.format(new Date(date));
75
        return new Date(date).toString();
76
    }
76
    }
77
 
77
 
78
    public String getCurrentAgentEmailId() {
78
    public String getCurrentAgentEmailId() {
79
        return currentAgentEmailId;
79
        return currentAgentEmailId;
80
    }
80
    }