Subversion Repositories SmartDukaan

Rev

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

Rev 23945 Rev 24251
Line 37... Line 37...
37
	public static String formatDate(LocalDateTime dateTime) {
37
	public static String formatDate(LocalDateTime dateTime) {
38
		return dateTime.format(dateFormatter);
38
		return dateTime.format(dateFormatter);
39
	}
39
	}
40
	
40
	
41
	public static String formatReporitcoDate(LocalDateTime dateTime) {
41
	public static String formatReporitcoDate(LocalDateTime dateTime) {
-
 
42
		if(dateTime==null) return "-";
42
		return dateTime.format(reporticoFormatter);
43
		return dateTime.format(reporticoFormatter);
43
	}
44
	}
44
}
45
}