Subversion Repository Public Repository

Aurocare_27_07_2018

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
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package com.bestray.healthcareemr.Controller;

import com.bestray.healthcarecommonutil.exception.ProcessingException;
import com.bestray.healthcarecommonutil.vo.TDepartmentMaster;
import com.bestray.healthcarecommonutil.vo.TRoomMaster;
import com.bestray.healthcarecommonutil.service.RoomMasterService;
import java.util.List;
import java.util.Vector;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.orm.hibernate3.HibernateOptimisticLockingFailureException;
import org.springframework.stereotype.Controller;

/**
 *
 * @author dell
 */
@Controller
public class RoomMasterController {
    
    @Autowired
    private RoomMasterService roomMasterService;
    
    public void saveRoomMaster(TRoomMaster roomMaster)throws ProcessingException,HibernateOptimisticLockingFailureException {
        try{
            roomMasterService.saveRoomMaster(roomMaster);
        }catch(  HibernateOptimisticLockingFailureException | ProcessingException e){
            throw e;
        }
    }
    
    public Vector<Vector<String>> getRoomsList(String expr,int min,int max)throws ProcessingException {
        try{
            return roomMasterService.getRoomsList(expr,min,max);
        }catch(ProcessingException e){
            throw e;
        }
    }

    public void deleteRoomMaster(Long roomId)throws ProcessingException,IllegalArgumentException {
        try{
            roomMasterService.deleteRoomMaster(roomId);
        }catch(  IllegalArgumentException | ProcessingException e){
            throw e;
        }
    }
    
    public TRoomMaster getRoomValues(Long roomId)throws ProcessingException {
        try{
            return roomMasterService.getRoomDetailsById(roomId);
        }catch(ProcessingException e){
            throw e;
        }
    }
    
    public int numberOfRoomRecords(String expr)throws ProcessingException {
        try{
            return roomMasterService.numberOfRoomRecords(expr);
        }catch(ProcessingException e){
            throw e;
        }
    }
    
    public Vector<TRoomMaster> getAllRooms() throws ProcessingException {
        try{
            Vector rooms = new Vector();
            TRoomMaster room ;
            List<TRoomMaster> roomList = roomMasterService.findAllRooms();
            for(TRoomMaster rm:roomList){
                room = new TRoomMaster();
                room.setId(rm.getId());
                room.setRoomNumber(rm.getRoomNumber());
                rooms.addElement(room);
            }
            return rooms;
        }catch(ProcessingException e){
            throw e;
        }
    }

    public Vector<String> getRoomTypesByDept(TDepartmentMaster dept)throws ProcessingException {
        try{
            return roomMasterService.getRoomTypesByDept(dept);
        }catch(ProcessingException e){
            throw e;
        }
    }

    public Vector<TRoomMaster> getRoomsByDeptRoomType(String selectedRoomType, TDepartmentMaster dept)throws ProcessingException {
        try{
            return roomMasterService.getRoomsByDeptRoomType(selectedRoomType,dept);
        }catch(ProcessingException e){
            throw e;
        }
    }

    public boolean isRoomAvailable(String roomNumber)throws ProcessingException {
        boolean flag =false;
        try{
            List<TRoomMaster> roomNumbers = roomMasterService.findAllRooms();
            for(TRoomMaster room:roomNumbers){
                if(room.getRoomNumber().equalsIgnoreCase(roomNumber)){
                    flag = true;
                }
            }
            return flag;
        }catch(ProcessingException e){
            throw e;
        }
    }
}

Commits for Aurocare_27_07_2018/AuroCareEMR/src/main/java/com/bestray/healthcareemr/Controller/RoomMasterController.java

Diff revisions: vs.
Revision Author Commited Message
1 girijabapi picture girijabapi Fri 27 Jul, 2018 07:21:55 +0000