Subversion Repository Public Repository

Satyam

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package com.bestray.healthcareinpatient.serviceimpl;

import com.bestray.healthcarecommonutil.dao.MedicationMasterDao;
import com.bestray.healthcarecommonutil.exception.DataAccessException;
import com.bestray.healthcarecommonutil.exception.HealthCareException;
import com.bestray.healthcarecommonutil.exception.ProcessingException;
import com.bestray.healthcarecommonutil.service.MedicationMasterService;
import com.bestray.healthcarecommonutil.vo.TAnesthesiaDetails;
import com.bestray.healthcarecommonutil.vo.TDiagnosisMaster;
import com.bestray.healthcarecommonutil.vo.TEncounterDiagnosis;
import com.bestray.healthcarecommonutil.vo.TEncounterMedication;
import com.bestray.healthcarecommonutil.vo.TEncounterProcedure;
import com.bestray.healthcarecommonutil.vo.TEncounterVitalSign;
import com.bestray.healthcarecommonutil.vo.TMedicationMaster;
import com.bestray.healthcarecommonutil.vo.TPatEncToDo;
import com.bestray.healthcarecommonutil.vo.TPatient;
import com.bestray.healthcarecommonutil.vo.TPatientEncounter;
import com.bestray.healthcareinpatient.dao.InpatientRoundingDao;
import com.bestray.healthcareinpatient.service.InpatientRoundingService;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.List;
import java.util.logging.Level;
import java.util.logging.Logger;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.orm.hibernate3.HibernateOptimisticLockingFailureException;
import org.springframework.stereotype.Service;

/**
 *
 * @author user3
 */
@Service
public class InpatientRoundingServiceImpl implements InpatientRoundingService{
    
    @Autowired
    private InpatientRoundingDao inpatientRoundingDao;
    @Autowired
    private MedicationMasterService medicationMasterService;
    @Autowired
    private MedicationMasterDao medicationMasterDao;
    
    private TMedicationMaster medication;
    private SimpleDateFormat sdf;

    public InpatientRoundingServiceImpl() {
        
        sdf = new SimpleDateFormat("dd-MM-YYYY");
    }

    @Override
    public TPatientEncounter getIPEncounterByPatient(TPatient pat) throws ProcessingException {
        try{
            return inpatientRoundingDao.getIPEncounterByPatient(pat);
        }catch (DataAccessException ex) {
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, ex);
            throw new ProcessingException();
        }catch(Exception e){
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, e);
            throw new HealthCareException("Error in retriving...");
        }
    }

    /*@Override
    public TPatientEncounter createIPEncounter(TPatientEncounter enc) throws ProcessingException,HibernateOptimisticLockingFailureException {
        try{
            if(enc.getEncId()!=null){
                enc.setEncUpdateDate(new Date());
            }else{
                enc.setEncDate(new Date());
                enc.setEncStatus("Opened");
                enc.setEncType("IP");
            }
            return inpatientRoundingDao.createIPEncounter(enc);
        }catch(HibernateOptimisticLockingFailureException e){
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, e);
            throw e;
        }catch (DataAccessException ex) {
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, ex);
            throw new ProcessingException();
        }catch(Exception e){
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, e);
            throw new HealthCareException("Error in retriving...");
        }
    }*/

    @Override
    public TEncounterMedication saveMedication(TEncounterMedication encounterMedication) throws ProcessingException,HibernateOptimisticLockingFailureException {
        try {
            return inpatientRoundingDao.saveMedication(encounterMedication);
        }catch(HibernateOptimisticLockingFailureException e){
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, e);
            throw e;
        }catch(DataAccessException ex) {
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, ex);
            throw new ProcessingException();
        }
    }

    @Override
    public List<TEncounterMedication> getEncounterMedication(TPatientEncounter encounter,int status) throws ProcessingException {
        try{
            return inpatientRoundingDao.getEncounterMedication(encounter,status);
        }catch (DataAccessException ex) {
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, ex);
            throw new ProcessingException();
        }catch(Exception e){
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, e);
            throw new HealthCareException("Error in retriving...");
        }
    }
    
    @Override
    public List<TEncounterMedication> getEncounterMedicationByEncIdnType(TPatientEncounter encounter,String type)throws ProcessingException {
        try{
            return inpatientRoundingDao.getEncounterMedicationByEncIdnType(encounter,type);
        }catch (DataAccessException ex) {
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, ex);
            throw new ProcessingException();
        }catch(Exception e){
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, e);
            throw new HealthCareException("Error in retriving...");
        }
    }
    
    
    @Override
     public List<TEncounterProcedure>  getEncounterProcedureByEncIdnType(TPatientEncounter encounter,String type) throws ProcessingException {
        try{
            return inpatientRoundingDao.getEncounterProcedureByEncIdnType(encounter,type);
        }catch (DataAccessException ex) {
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, ex);
            throw new ProcessingException();
        }catch(Exception e){
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, e);
            throw new HealthCareException("Error in retriving...");
        }
    }
    
    @Override
   public List<TEncounterVitalSign> getEncounterVitalsignByEncIdnType(TPatientEncounter encounter,String type) throws ProcessingException{
      try{
            return inpatientRoundingDao.getEncounterVitalsignByEncIdnType(encounter,type);
        }catch (DataAccessException ex) {
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, ex);
            throw new ProcessingException();
        }catch(Exception e){
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, e);
            throw new HealthCareException("Error in retriving...");
        } 
   }

    @Override
    public TEncounterMedication getEncounterMedicationById(Long encmedid) throws ProcessingException {
        try{
            return inpatientRoundingDao.getEncounterMedicationById(encmedid);
        }catch (DataAccessException ex) {
            ex.printStackTrace();
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, ex);
            throw new ProcessingException();
        }catch(Exception e){
            e.printStackTrace();
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, e);
            throw new HealthCareException("Error in retriving...");
        }
    }
    
    

    @Override
    public TEncounterMedication reorderMedication(TEncounterMedication encmed) throws ProcessingException {
        try{
            TEncounterMedication medclone = encmed;
            saveMedication(encmed);
            TEncounterMedication med = new TEncounterMedication();
            med.setStatus(1);
            med.setMedication(medclone.getMedication());
            med.setFrequency(medclone.getFrequency());
            med.setDose(medclone.getDose());
            med.setRoute(medclone.getRoute());
            med.setEncounterMed(medclone.getEncounterMed());
            med.setComments(medclone.getComments());
            return saveMedication(med);
        }catch (ProcessingException ex) {
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, ex);
            throw new ProcessingException();
        }catch(Exception e){
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, e);
            throw new HealthCareException("Error in retriving...");
        }
    }

    @Override
    public TPatientEncounter getEncounterById(Long encid) throws ProcessingException {
        try{
            return inpatientRoundingDao.getEncounterById(encid);
        }catch (DataAccessException ex) {
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, ex);
            throw new ProcessingException();
        }catch(Exception e){
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, e);
            throw new HealthCareException("Error in retriving...");
        }
    }

    @Override
    public TEncounterProcedure saveProcedure(TEncounterProcedure encounterProcedure) throws ProcessingException,HibernateOptimisticLockingFailureException {
        try {
            return inpatientRoundingDao.saveProcedure(encounterProcedure);
        }catch(HibernateOptimisticLockingFailureException e){
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, e);
            throw e;
        }catch(DataAccessException ex) {
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, ex);
            throw new ProcessingException();
        }
    }

    @Override
    public List<TEncounterProcedure> getEncounterProcedure(TPatientEncounter encounter) throws ProcessingException {
        try{
            return inpatientRoundingDao.getEncounterProcedure(encounter);
        }catch (DataAccessException ex) {
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, ex);
            throw new ProcessingException();
        }catch(Exception e){
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, e);
            throw new HealthCareException("Error in retriving...");
        }
    }

    @Override
    public TEncounterProcedure getEncProcedure(Long encprocid) throws ProcessingException {
        try{
            return inpatientRoundingDao.getEncProcedure(encprocid);
        }catch (DataAccessException ex) {
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, ex);
            throw new ProcessingException();
        }catch(Exception e){
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, e);
            throw new HealthCareException("Error in retriving...");
        }
    }

    @Override
    public void deleteEncProc(TEncounterProcedure encproc) throws ProcessingException {
        try{
            inpatientRoundingDao.deleteEncProc(encproc);
        }catch (DataAccessException ex) {
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, ex);
            throw new ProcessingException();
        }catch(Exception e){
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, e);
            throw new HealthCareException("Error in deleting...");
        }
    }

    @Override
    public TPatientEncounter saveIPEncounter(boolean b,TPatientEncounter inpatenc) throws ProcessingException {
        try{
            if(b==true){
                inpatenc.setEncUpdateDate(new Date());
            }else if(b==false){
                inpatenc.setEncDate(new Date());
                inpatenc.setEncStatus("Opened");
                inpatenc.setEncType("IP");
            }
            return inpatientRoundingDao.saveIPEncounter(inpatenc);
        }catch(HibernateOptimisticLockingFailureException e){
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, e);
            throw e;
        }catch (DataAccessException ex) {
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, ex);
            throw new ProcessingException();
        }catch(Exception e){
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, e);
            throw new HealthCareException("Error in retriving...");
        }
    }

    @Override
    public TPatEncToDo saveToDo(TPatEncToDo encounterToDo) throws ProcessingException,HibernateOptimisticLockingFailureException {
        try {
            return inpatientRoundingDao.saveToDo(encounterToDo);
        }catch(HibernateOptimisticLockingFailureException e){
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, e);
            throw e;
        }catch(DataAccessException ex) {
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, ex);
            throw new ProcessingException();
        }
    }
    
      @Override
    public void saveVitalSign(TEncounterVitalSign encounterVitalSign) throws ProcessingException,HibernateOptimisticLockingFailureException {
        try {
            inpatientRoundingDao.saveVitalSign(encounterVitalSign);
        }catch(HibernateOptimisticLockingFailureException e){
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, e);
            throw e;
        }catch(ProcessingException ex) {
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, ex);
            throw new ProcessingException();
        }
    }
      @Override
    public void saveAnesthesiaDetails(TAnesthesiaDetails anesthesiaDetails)throws ProcessingException{
        try {
            inpatientRoundingDao.saveAnesthesiaDetails(anesthesiaDetails);
        
        }catch(Exception ex) {
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, ex);
            ex.printStackTrace();
        }
    }
     
public TEncounterVitalSign  getVitalsignDetailById(long id)throws ProcessingException {
        try{
            return inpatientRoundingDao.getVitalsignDetailById(id);
        }
        catch(ProcessingException e){
            throw e;
        }
    }
public List<TEncounterVitalSign> getAllVitalSignsForPatient(TPatientEncounter encounter) throws ProcessingException{
    try{
            return inpatientRoundingDao.getAllVitalSignsForPatient(encounter);
        }
        catch(Exception e){
             Logger.getLogger(InPatientPaidServiceImpl.class.getName()).log(Level.SEVERE, null, e);
            throw new HealthCareException("Error in populating inpatient Vitalsign list");
        }
}
 @Override
 public TAnesthesiaDetails getAnesthesiaDetailById(long id)throws ProcessingException {
        try {
            return inpatientRoundingDao.getAnesthesiaDetailById(id);
        } catch (DataAccessException ex) {
            ex.printStackTrace();
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, ex);
            throw new HealthCareException("Error in populating inpatient Anesthesia list");
        }
}
public List<TAnesthesiaDetails> getAllAnesthesiaDetailsForPatient(TPatientEncounter encounter) throws ProcessingException{
   try{
            return inpatientRoundingDao.getAllAnesthesiaDetailsForPatient(encounter);
        }
        catch(Exception e){
             Logger.getLogger(InPatientPaidServiceImpl.class.getName()).log(Level.SEVERE, null, e);
            throw new HealthCareException("Error in populating inpatient Vitalsign list");
        } 
}
    @Override
    public List<TPatEncToDo> getTasksForEncounter(TPatientEncounter encounter) throws ProcessingException {
        try{
            return inpatientRoundingDao.getTasksForEncounter(encounter);
        }catch (DataAccessException ex) {
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, ex);
            throw new ProcessingException();
        }catch(Exception e){
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, e);
            throw new HealthCareException("Error in retriving...");
        }
    }

    @Override
    public TPatEncToDo getEncTask(Long enctaskid) throws ProcessingException {
        try{
            return inpatientRoundingDao.getEncTask(enctaskid);
        }catch (DataAccessException ex) {
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, ex);
            throw new ProcessingException();
        }catch(Exception e){
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, e);
            throw new HealthCareException("Error in retriving...");
        }
    }

    @Override
    public void deleteEncTask(TPatEncToDo enctodo) throws ProcessingException {
        try{
            inpatientRoundingDao.deleteEncTask(enctodo);
        }catch (DataAccessException ex) {
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, ex);
            throw new ProcessingException();
        }catch(Exception e){
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, e);
            throw new HealthCareException("Error in deleting...");
        }
    }
     @Override
    public void deleteEncounterMedication(TEncounterMedication encmed) throws ProcessingException{
         try{
            inpatientRoundingDao.deleteEncounterMedication(encmed);
        }catch (DataAccessException ex) {
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, ex);
            throw new ProcessingException();
        }catch(Exception e){
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, e);
            throw new HealthCareException("Error in deleting...");
        }
        
    }
     
      @Override
     public void  deleteEncounterVitalSign(TEncounterVitalSign encVitalSign)throws ProcessingException{
         try{
            inpatientRoundingDao.deleteEncounterVitalSign(encVitalSign);
        }catch (DataAccessException ex) {
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, ex);
            throw new ProcessingException();
        }catch(Exception e){
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, e);
            throw new HealthCareException("Error in deleting...");
        }
     }
     @Override
     public void deleteEncounterProcedure(TEncounterProcedure encProc)throws ProcessingException{
        try{
            inpatientRoundingDao.deleteEncounterProcedure(encProc);
        }catch (DataAccessException ex) {
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, ex);
            throw new ProcessingException();
        }catch(Exception e){
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, e);
            throw new HealthCareException("Error in deleting...");
        }
         
     }
    @Override
public void deleteAnesthesiaDetails(TAnesthesiaDetails anesthesiaDetails) throws ProcessingException{
        try{
            inpatientRoundingDao.deleteAnesthesiaDetails(anesthesiaDetails);
        }catch (DataAccessException ex) {
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, ex);
            throw new ProcessingException();
        }catch(Exception e){
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, e);
            throw new HealthCareException("Error in deleting...");
        }
    
}
    @Override
    public List<TDiagnosisMaster> getDiagnosis(String expr) throws ProcessingException {
        try{
            return inpatientRoundingDao.getDiagnosis(expr);
        }catch (DataAccessException ex) {
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, ex);
            throw new ProcessingException();
        }catch(Exception e){
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, e);
            throw new HealthCareException("Error in retriving...");
        }
    }

    @Override
    public TEncounterDiagnosis saveDiagnosis(TEncounterDiagnosis encounterDiagnosis) throws ProcessingException {
        try {
            return inpatientRoundingDao.saveDiagnosis(encounterDiagnosis);
        }catch(HibernateOptimisticLockingFailureException e){
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, e);
            throw e;
        }catch(DataAccessException ex) {
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, ex);
            throw new ProcessingException();
        }
    }

    @Override
    public List<TEncounterDiagnosis> getEncounterDiagnosis(TPatientEncounter encounter) throws ProcessingException {
        try{
            return inpatientRoundingDao.getEncounterDiagnosis(encounter);
        }catch (DataAccessException ex) {
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, ex);
            throw new ProcessingException();
        }catch(Exception e){
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, e);
            throw new HealthCareException("Error in retriving...");
        }
    }

    @Override
    public void deleteEncDiag(TEncounterDiagnosis ediag) throws ProcessingException {
        try{
            inpatientRoundingDao.deleteEncDiag(ediag);
        }catch (DataAccessException ex) {
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, ex);
            throw new ProcessingException();
        }catch(Exception e){
            Logger.getLogger(InpatientRoundingServiceImpl.class.getName()).log(Level.SEVERE, null, e);
            throw new HealthCareException("Error in deleting...");
        }
    }
    
}

Commits for Satyam/AuroCareHealthCareInPatient/src/main/java/com/bestray/healthcareinpatient/serviceimpl/InpatientRoundingServiceImpl.java

Diff revisions: vs.
Revision Author Commited Message
1 girijabapi picture girijabapi Fri 20 Jul, 2018 05:59:17 +0000