Subversion Repository Public Repository

TransPort_Tracking

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

import com.bestray.transporttracking.DataSourceObject;
import com.bestray.transtracking.dao.ClientDao;
import com.bestray.transtracking.dao.EmployeeDao;
import com.bestray.transtracking.dao.JobEntryDao;
import com.bestray.transtracking.dao.VehicleDao;
import com.bestray.transtracking.dao.impl.ClientDaoImpl;
import com.bestray.transtracking.dao.impl.EmployeeDaoImpl;
import com.bestray.transtracking.dao.impl.JobEntryDaoImpl;
import com.bestray.transtracking.dto.JobEntrySearchDTO;
import com.bestray.transtracking.exceptions.TransTrackException;
import com.bestray.transtracking.service.JobEntryService;
import com.bestray.transtracking.service.VehicleService;
import com.bestray.trastrack.domain.ClientUser;
import com.bestray.trastrack.domain.Employee;
import com.bestray.trastrack.domain.JobEntry;
import com.bestray.trastrack.domain.Party;
import com.bestray.trastrack.domain.Vehicle;
import java.util.List;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.sql.DataSource;

/**
 *
 * @author User1
 */
public class JobEntryServiceImpl implements JobEntryService {

    private JobEntryDao jedao;
    private DataSourceObject dobj;
    private VehicleService vehicleService;
    private ClientDao clientDao;
    private EmployeeDao empdao;
    private VehicleDao vehicleDao;

    public JobEntryServiceImpl() {
    }

    /*public boolean registerJob(JobEntry jobentry) {
        try {
            jedao = new JobEntryDaoImpl(DataSourceObject.getDataSourceObject());
            if (jobentry.getId() != null && jobentry.getId() > 0) {
                jedao.updateJob(jobentry);
            } else {
                if (jobentry.getId() == null) {
                    jedao.scheduleJob(jobentry);
                }
            }
            return true;
        } catch (Exception ex) {
            Logger.getLogger(JobEntryServiceImpl.class.getName()).log(Level.SEVERE, null, ex);
            throw new TransTrackException("Error in registering a job Records");
        }
    }*/
    
    public Long saveJobEntry(JobEntry jobentry) {
        try {
            jedao = new JobEntryDaoImpl(DataSourceObject.getDataSourceObject());
            
            Long jobentryId;
            if (jobentry.getId() != null && jobentry.getId() > 0) {
                jobentryId = jedao.updateJob(jobentry);
            } else {
                //if (jobentry.getId() == null) {
                jobentryId = jedao.saveVehicleJobEntry(jobentry);
             
            }

            return jobentryId;
        } catch (Exception ex) {
            Logger.getLogger(JobEntryServiceImpl.class.getName()).log(Level.SEVERE, null, ex);
            throw new TransTrackException("Error in Saveing Vehicle Job Entry");
        }

    }

    public List<JobEntry> getSearchResult(JobEntrySearchDTO search) {
        try {
            DataSource ds = DataSourceObject.getDataSourceObject();
            vehicleService = new VehicleServiceImpl();
            jedao = new JobEntryDaoImpl(ds);
            clientDao = new ClientDaoImpl(ds);
            empdao = new EmployeeDaoImpl(ds);
            List<JobEntry> results = jedao.getSearchResults(search);
            for (JobEntry object : results) {
                object.setClient(clientDao.findClientRegistraion(object.getClient_name_id()));
                object.setVehicle(vehicleService.getVehicleRegistrationDetails(object.getVehicle_number_id()));
                object.setDriver(empdao.findEmplRegistraion(object.getVehicle_driver_id()));
            }
            return results;
        } catch (Exception ex) {
            Logger.getLogger(JobEntryServiceImpl.class.getName()).log(Level.SEVERE, null, ex);
            throw new TransTrackException("Error in fetching job Records");
        }
    }

    public JobEntry getJobRegistrationDetails(Long JobId) {
        try {
            jedao = new JobEntryDaoImpl(DataSourceObject.getDataSourceObject());
            //vehicleDao = new VehicleDaoImpl( DataSourceObject.getDataSourceObject());
            clientDao = new ClientDaoImpl(DataSourceObject.getDataSourceObject());

            JobEntry jentry = jedao.findJobEntryRegistraion(JobId);

            /* if(jentry != null && jentry.getVehicle_number_id() != null){
             jentry.setVehicle(vehicleDao.getVehicleNumberById(jentry.getVehicle_number_id()));
             }
        
             if(jentry != null && jentry.getClient_name_id() != null){
             jentry.setClient(clientDao.getClientNameById(jentry.getClient_name_id()));
             }*/
            return jentry;
        } catch (Exception ex) {
            Logger.getLogger(JobEntryServiceImpl.class.getName()).log(Level.SEVERE, null, ex);
            throw new TransTrackException("Error in fetching job Records");
        }
    }

    public void deleteJobEntryRecord(Long JobId) {
        //JobEntry jentry = jedao.findJobEntryRegistraion(JobId);
        try {
            jedao.delete(JobId);

        } catch (Exception ex) {
            Logger.getLogger(JobEntryServiceImpl.class.getName()).log(Level.SEVERE, null, ex);
            throw new TransTrackException("Error in deleteing Job Entry Records");
        }
    }

    public List<JobEntry> getSearchResult2(JobEntrySearchDTO search) {
        try {
            DataSource ds = DataSourceObject.getDataSourceObject();
            vehicleService = new VehicleServiceImpl();
            jedao = new JobEntryDaoImpl(ds);
            clientDao = new ClientDaoImpl(ds);
            empdao = new EmployeeDaoImpl(ds);
            List<JobEntry> results = jedao.getSearchResults2(search);
            for (JobEntry object : results) {
                object.setClient(clientDao.findClientRegistraion(object.getClient_name_id()));
                object.setVehicle(vehicleService.getVehicleRegistrationDetails(object.getVehicle_number_id()));
                object.setDriver(empdao.findEmplRegistraion(object.getVehicle_driver_id()));
            }
            return results;
        } catch (Exception ex) {
            Logger.getLogger(JobEntryServiceImpl.class.getName()).log(Level.SEVERE, null, ex);
            throw new TransTrackException("Error in fetching job Records");
        }
    }

    public List<Vehicle> getvehicleNumberList() throws TransTrackException {
        try {
            jedao = new JobEntryDaoImpl(DataSourceObject.getDataSourceObject());
            return jedao.findVehiclesList();
        } catch (Exception ex) {
            Logger.getLogger(JobEntryServiceImpl.class.getName()).log(Level.SEVERE, null, ex);
            throw new TransTrackException("Error in fetching  Vehicle Details");
        }
    }

    public List<Employee> getDriverNameList() throws TransTrackException {
        try {
            jedao = new JobEntryDaoImpl(DataSourceObject.getDataSourceObject());
            return jedao.findEmployeesList();
        } catch (Exception ex) {
            Logger.getLogger(JobEntryServiceImpl.class.getName()).log(Level.SEVERE, null, ex);
            throw new TransTrackException("Error in fetching Driver Record");
        }
    }

    public List<ClientUser> getAllClientNameList() throws TransTrackException {
        try {
            jedao = new JobEntryDaoImpl(DataSourceObject.getDataSourceObject());
            return jedao.findAllClientsList();
        } catch (Exception ex) {
            Logger.getLogger(JobEntryServiceImpl.class.getName()).log(Level.SEVERE, null, ex);
            throw new TransTrackException("Error in fetching Driver Record");
        }
    }

    public List<Employee> getAllDriverNameList() throws TransTrackException {
        try {
            jedao = new JobEntryDaoImpl(DataSourceObject.getDataSourceObject());
            return jedao.findAllEmployeesList();
        } catch (Exception ex) {
            Logger.getLogger(JobEntryServiceImpl.class.getName()).log(Level.SEVERE, null, ex);
            throw new TransTrackException("Error in fetching Driver Record");
        }
    }

    public List<Vehicle> getALLvehicleNumberList() throws TransTrackException {
        try {
            jedao = new JobEntryDaoImpl(DataSourceObject.getDataSourceObject());
            return jedao.findAllVehicleList();
        } catch (Exception ex) {
            Logger.getLogger(JobEntryServiceImpl.class.getName()).log(Level.SEVERE, null, ex);
            throw new TransTrackException("Error in fetching Driver Record");
        }
    }

    @Override
    public List<Party> getAllPartyNameList() throws TransTrackException {
       try {
            jedao = new JobEntryDaoImpl(DataSourceObject.getDataSourceObject());
            return jedao.findAllPartysNames();
        } catch (Exception ex) {
            Logger.getLogger(PaymentVoucherServiceImpl.class.getName()).log(Level.SEVERE, null, ex);
            throw new TransTrackException("Error in fetching Employee Name List");
        }
    }
}

Commits for TransPort_Tracking/TransPortTracking/src/main/java/com/bestray/transtracking/service/impl/JobEntryServiceImpl.java

Diff revisions: vs.
Revision Author Commited Message
1 girijabapi picture girijabapi Sat 28 Jul, 2018 05:29:14 +0000