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

package com.bestray.trastrack.domain;

import java.util.Date;

/**
 *
 * @author sumitHome
 */
public class JobEntry {
    
    private Long id;
    //private Long job_scroll;
    private Date job_date;
    private Long vehicle_number_id;
    private Long vehicle_driver_id;
    private String job_transaction_type;
    private Long client_name_id;
    private String from_location;
    private String to_location;
    private Double distance;
    private Double goods_quantity;
    //private Float advanced_amount;
    private Double receivable_rate;
    private Double receivable_amount;
    private Double payable_rate;
    private Double payable_amount;
    private Double receivable_extra_charges;
    private Double payable_exira_charges;
    private Double total_receivable_amount;
    private Double total_payable_amount;
    private Double estimated_profit;
    private String remarks;
    private Vehicle vehicle;
    private ClientUser client;
    private Employee driver;

    public Employee getDriver() {
        return driver;
    }

    public void setDriver(Employee driver) {
        this.driver = driver;
    }

    public void setVehicle(Vehicle vehicle) {
        this.vehicle = vehicle;
    }

    public void setClient(ClientUser client) {
        this.client = client;
    }

    public Vehicle getVehicle() {
        return vehicle;
    }

    public ClientUser getClient() {
        return client;
    }
    
    
    public void setId(Long id) {
        this.id = id;
    }

   /* public void setJob_scroll(Long job_scroll) {
        this.job_scroll = job_scroll;
    }*/

    public void setJob_date(Date job_date) {
        this.job_date = job_date;
    }

    public void setVehicle_number_id(Long vehicle_number_id) {
        this.vehicle_number_id = vehicle_number_id;
    }

    public void setJob_transaction_type(String job_transaction_type) {
        this.job_transaction_type = job_transaction_type;
    }

    public void setClient_name_id(Long client_name_id) {
        this.client_name_id = client_name_id;
    }

    public void setFrom_location(String from_location) {
        this.from_location = from_location;
    }

    public void setTo_location(String to_location) {
        this.to_location = to_location;
    }

    public void setDistance(Double distance) {
        this.distance = distance;
    }

    public void setGoods_quantity(Double goods_quantity) {
        this.goods_quantity = goods_quantity;
    }

    //public void setAdvanced_amount(Float advanced_amount) {
        //this.advanced_amount = advanced_amount;
    //}

    public void setReceivable_rate(Double receivable_rate) {
        this.receivable_rate = receivable_rate;
    }

    public void setReceivable_amount(Double receivable_amount) {
        this.receivable_amount = receivable_amount;
    }

    public void setPayable_rate(Double payable_rate) {
        this.payable_rate = payable_rate;
    }

    public void setPayable_amount(Double payable_amount) {
        this.payable_amount = payable_amount;
    }

    public void setReceivable_extra_charges(Double receivable_extra_charges) {
        this.receivable_extra_charges = receivable_extra_charges;
    }

    public void setTotal_receivable_amount(Double total_receivable_amount) {
        this.total_receivable_amount = total_receivable_amount;
    }

    public void setTotal_payable_amount(Double total_payable_amount) {
        this.total_payable_amount = total_payable_amount;
    }

    public void setRemarks(String remarks) {
        this.remarks = remarks;
    }

    public Long getId() {
        return id;
    }

   /* public Long getJob_scroll() {
        return job_scroll;
    }*/

    public Date getJob_date() {
        return job_date;
    }

    public Long getVehicle_number_id() {
        return vehicle_number_id;
    }

    public String getJob_transaction_type() {
        return job_transaction_type;
    }

    public Long getClient_name_id() {
        return client_name_id;
    }

    public String getFrom_location() {
        return from_location;
    }

    public String getTo_location() {
        return to_location;
    }

    public Double getDistance() {
        return distance;
    }

    public Double getGoods_quantity() {
        return goods_quantity;
    }

    //public Float getAdvanced_amount() {
       // return advanced_amount;
    //}

    public Double getReceivable_rate() {
        return receivable_rate;
    }

    public Double getReceivable_amount() {
        return receivable_amount;
    }

    public Double getPayable_rate() {
        return payable_rate;
    }

    public Double getPayable_amount() {
        return payable_amount;
    }

    public Double getReceivable_extra_charges() {
        return receivable_extra_charges;
    }

    public Double getTotal_receivable_amount() {
        return total_receivable_amount;
    }

    public Double getTotal_payable_amount() {
        return total_payable_amount;
    }

    public String getRemarks() {
        return remarks;
    }

    public void setVehicle_driver_id(Long vehicle_driver_id) {
        this.vehicle_driver_id = vehicle_driver_id;
    }

    public void setPayable_exira_charges(Double payable_exira_charges) {
        this.payable_exira_charges = payable_exira_charges;
    }

    public void setEstimated_profit(Double estimated_profit) {
        this.estimated_profit = estimated_profit;
    }

    public Long getVehicle_driver_id() {
        return vehicle_driver_id;
    }

    public Double getPayable_exira_charges() {
        return payable_exira_charges;
    }

    public Double getEstimated_profit() {
        return estimated_profit;
    }
    
    
}

Commits for TransPort_Tracking/TransPortTracking/src/main/java/com/bestray/trastrack/domain/JobEntry.java

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