Subversion Repositories SmartDukaan

Rev

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

Rev 23527 Rev 23914
Line 193... Line 193...
193
	
193
	
194
	public String getFormattedStartDateTime(){
194
	public String getFormattedStartDateTime(){
195
		if(startDateTime == null){
195
		if(startDateTime == null){
196
			return null;
196
			return null;
197
		}
197
		}
198
		DateTimeFormatter formatter = DateTimeFormatter.ofPattern("dd-MM-YYYY HH:mm");
198
		DateTimeFormatter formatter = DateTimeFormatter.ofPattern("dd-MM-YYYY");
199
		return startDateTime.format(formatter);
199
		return startDateTime.format(formatter);
200
    }
200
    }
201
	
201
	
202
	public String getFormattedEndDateTime(){
202
	public String getFormattedEndDateTime(){
203
		if(endDateTime == null){
203
		if(endDateTime == null){
204
			return null;
204
			return null;
205
		}
205
		}
206
		DateTimeFormatter formatter = DateTimeFormatter.ofPattern("dd-MM-YYYY HH:mm");
206
		DateTimeFormatter formatter = DateTimeFormatter.ofPattern("dd-MM-YYYY");
207
		return endDateTime.format(formatter);
207
		return endDateTime.format(formatter);
208
    }
208
    }
209
	
209
	
210
	public String getFormattedCreateTimestamp(){
210
	public String getFormattedCreateTimestamp(){
211
		if(createTimestamp == null){
211
		if(createTimestamp == null){