| 21716 |
ashik.ali |
1 |
package com.spice.profitmandi.dao.entity.transaction;
|
| 21545 |
ashik.ali |
2 |
|
|
|
3 |
import java.io.Serializable;
|
|
|
4 |
import java.time.LocalDateTime;
|
| 23075 |
ashik.ali |
5 |
import java.time.format.DateTimeFormatter;
|
| 21545 |
ashik.ali |
6 |
|
| 21653 |
ashik.ali |
7 |
import javax.persistence.CascadeType;
|
| 21545 |
ashik.ali |
8 |
import javax.persistence.Column;
|
| 22009 |
ashik.ali |
9 |
import javax.persistence.Convert;
|
| 21545 |
ashik.ali |
10 |
import javax.persistence.Entity;
|
|
|
11 |
import javax.persistence.EnumType;
|
|
|
12 |
import javax.persistence.Enumerated;
|
| 21653 |
ashik.ali |
13 |
import javax.persistence.FetchType;
|
| 21545 |
ashik.ali |
14 |
import javax.persistence.GeneratedValue;
|
|
|
15 |
import javax.persistence.GenerationType;
|
|
|
16 |
import javax.persistence.Id;
|
| 21653 |
ashik.ali |
17 |
import javax.persistence.JoinColumn;
|
| 21984 |
kshitij.so |
18 |
import javax.persistence.ManyToOne;
|
| 21545 |
ashik.ali |
19 |
import javax.persistence.NamedQueries;
|
|
|
20 |
import javax.persistence.NamedQuery;
|
|
|
21 |
import javax.persistence.Table;
|
|
|
22 |
|
| 22009 |
ashik.ali |
23 |
import com.spice.profitmandi.dao.convertor.LocalDateTimeAttributeConverter;
|
|
|
24 |
|
| 21716 |
ashik.ali |
25 |
import in.shop2020.model.v1.order.OrderStatus;
|
|
|
26 |
import in.shop2020.model.v1.order.TaxType;
|
| 21545 |
ashik.ali |
27 |
|
|
|
28 |
/**
|
|
|
29 |
* This class basically contains order details
|
|
|
30 |
*
|
|
|
31 |
* @author ashikali
|
|
|
32 |
*
|
|
|
33 |
*/
|
| 21634 |
ashik.ali |
34 |
|
| 21545 |
ashik.ali |
35 |
@Entity
|
| 27723 |
tejbeer |
36 |
@Table(name = "transaction.`order`", schema = "transaction")
|
|
|
37 |
@NamedQueries({ @NamedQuery(name = "Order.selectAll", query = "select o from Order o"),
|
|
|
38 |
@NamedQuery(name = "Order.selectById", query = "select o from Order o where o.id= :id"),
|
|
|
39 |
@NamedQuery(name = "Order.selectByTransactionId", query = "select t.id, t.createTimestamp, o.retailerAddress1, o.retailerAddress2, o.retailerCity, "
|
|
|
40 |
+ "o.retailerPinCode, o.retailerState, o.shippingCost, o.statusDescription, o.invoiceNumber, o.airwayBillNumber, o.totalAmount, li.brand, li.modelName, "
|
|
|
41 |
+ "li.modelNumber, li.color, li.quantity, li.unitPrice, p.id, p.name, o.shippingTimestamp, o.status, o.promisedDeliveryTime, o.retailerName, t.status, i.catalogItemId from Transaction t join Order o on o.transactionId = t.id "
|
|
|
42 |
+ "join LineItem li on li.orderId = o.id left join Provider p on p.id = o.logisticsProviderId join Item i on i.id=li.itemId where o.transactionId = :transactionId"),
|
|
|
43 |
|
|
|
44 |
@NamedQuery(name = "Order.selectItemIdTypeQuantity", query = "select new com.spice.profitmandi.dao.model.ItemIdTypeQuantity(li.itemId, i.type, li.quantity) from Order o join LineItem li on li.orderId = o.id join Item i on i.id = li.itemId where o.invoiceNumber = :invoiceNumber and o.retailerId = :retailerId"),
|
|
|
45 |
|
|
|
46 |
@NamedQuery(name = "Order.selectAllBilledOrderGroupByBrand", query = "select new com.spice.profitmandi.dao.model.SecondaryOrderBillingModel(li.brand, "
|
|
|
47 |
+ "sum(case when o.billingTimestamp >= :today then CAST(o.totalAmount AS int) else 0 end),"
|
| 27749 |
tejbeer |
48 |
+ "sum(case when o.billingTimestamp >= :threedays and o.billingTimestamp < :endDate then CAST(o.totalAmount AS int) else 0 end),"
|
| 27723 |
tejbeer |
49 |
+ "sum(case when concat(year(o.billingTimestamp ), month(o.billingTimestamp ))= :mtd then CAST(o.totalAmount AS int) else 0 end),"
|
|
|
50 |
+ "sum(case when o.billingTimestamp between :lmtdStartDate and :lmtdEndDate then CAST(o.totalAmount AS int) else 0 end),"
|
| 27749 |
tejbeer |
51 |
+ "sum(case when o.billingTimestamp between :lmtdStartDate and :lmsEndDate then CAST(o.totalAmount AS int) else 0 end),"
|
| 27723 |
tejbeer |
52 |
+ " sum(case when o.billingTimestamp >= :today then li.quantity else 0 end),"
|
| 27726 |
tejbeer |
53 |
+ " sum(case when o.billingTimestamp >= :threedays and o.billingTimestamp < :endDate then li.quantity else 0 end),"
|
| 27723 |
tejbeer |
54 |
+ " sum(case when concat(year(o.billingTimestamp), month(o.billingTimestamp))= :mtd then li.quantity else 0 end),"
|
| 27749 |
tejbeer |
55 |
+ " sum(case when o.billingTimestamp between :lmtdStartDate and :lmtdEndDate then li.quantity else 0 end),"
|
|
|
56 |
+ " sum(case when o.billingTimestamp between :lmtdStartDate and :lmsEndDate then li.quantity else 0 end)"
|
|
|
57 |
+ " )"
|
| 27832 |
amit.gupta |
58 |
+ " from Order o join LineItem li on o.id = li.orderId join FofoStore fs on fs.id = o.retailerId where o.status in (7,9,10,12)"
|
| 27903 |
tejbeer |
59 |
+ " and o.billingTimestamp >= :lmtdStartDate and fs.warehouseId in :warehouseId and fs.internal = 0 group by li.brand"),
|
| 27723 |
tejbeer |
60 |
|
| 27867 |
tejbeer |
61 |
@NamedQuery(name = "Order.selectAllBilledOrderGroupByBrandWarehouse", query = "select new com.spice.profitmandi.dao.model.SecondaryWarehouseWiseOrderBilllingModel(fs.warehouseId,date(o.billingTimestamp), li.brand, "
|
|
|
62 |
+ "sum(CAST(o.totalAmount AS int)),sum( li.quantity))"
|
|
|
63 |
+ " from Order o join LineItem li on o.id = li.orderId join FofoStore fs on fs.id = o.retailerId where o.status in (7,9,10,12)"
|
| 27903 |
tejbeer |
64 |
+ " and o.billingTimestamp >= :startDate and o.billingTimestamp < :endDate and (null is :brand or li.brand = :brand) and fs.internal = 0 group by fs.warehouseId, date(o.billingTimestamp), li.brand"),
|
| 27867 |
tejbeer |
65 |
|
| 27749 |
tejbeer |
66 |
@NamedQuery(name = "Order.selectAllBilledOrderItemByBrand", query = "select new com.spice.profitmandi.dao.model.SecondaryOrderItemBillingModel(o.retailerName,li.brand,i.modelName, "
|
| 27738 |
tejbeer |
67 |
+ " i.modelNumber, i.color," + "o.totalAmount," + " li.quantity)"
|
| 27832 |
amit.gupta |
68 |
+ " from Order o join LineItem li on o.id = li.orderId join Item i on i.id = li.itemId join FofoStore fs on fs.id = o.retailerId where o.status in (7,9,10,12)"
|
| 27903 |
tejbeer |
69 |
+ " and date(o.billingTimestamp) in :date and fs.warehouseId in :warehouseId and li.brand = :brand and fs.internal = 0 order by li.itemId desc"),
|
| 27738 |
tejbeer |
70 |
|
| 27749 |
tejbeer |
71 |
@NamedQuery(name = "Order.selectTodayBilledOrderItemByBrand", query = "select new com.spice.profitmandi.dao.model.SecondaryOrderItemBillingModel(o.retailerName,li.brand,i.modelName, "
|
| 27738 |
tejbeer |
72 |
+ " i.modelNumber, i.color," + "o.totalAmount," + " li.quantity)"
|
| 27832 |
amit.gupta |
73 |
+ " from Order o join LineItem li on o.id = li.orderId join Item i on i.id = li.itemId join FofoStore fs on fs.id = o.retailerId where o.status in (7,9,10,12)"
|
| 27893 |
tejbeer |
74 |
+ " and o.billingTimestamp >= :startDate and fs.warehouseId in :warehouseId and li.brand in :brand order by li.itemId desc"),
|
| 27738 |
tejbeer |
75 |
|
| 27893 |
tejbeer |
76 |
@NamedQuery(name = "Order.selectAllBilledOrderBrandByFofoId", query = "select new com.spice.profitmandi.dao.model.InStockBrandModel(li.brand,"
|
|
|
77 |
+ " Sum(li.quantity),Sum(CAST(o.totalAmount As int)))"
|
|
|
78 |
+ " from Order o join LineItem li on o.id = li.orderId where o.status in (7,9,10,12)"
|
|
|
79 |
+ " and o.billingTimestamp >= :startDate and o.billingTimestamp <= :endDate and o.retailerId = :fofoId group by li.brand"),
|
|
|
80 |
|
|
|
81 |
@NamedQuery(name = "Order.selectAllBilledOrderBrandItemByFofoId", query = "select new com.spice.profitmandi.dao.model.InStockBrandItemModel("
|
|
|
82 |
+ " i.brand, i.modelName, i.modelNumber, i.color,Sum(li.quantity), Sum(CAST(o.totalAmount As int)))"
|
|
|
83 |
+ " from Order o join LineItem li on o.id = li.orderId join Item i on i.id = li.itemId where o.status in (7,9,10,12)"
|
|
|
84 |
+ " and o.billingTimestamp >= :startDate and o.billingTimestamp <= :endDate and o.retailerId = :fofoId group by i.id"),
|
|
|
85 |
|
| 28004 |
tejbeer |
86 |
@NamedQuery(name = "Order.selectAllGrnPendingOrderByCatalogId", query = "select new com.spice.profitmandi.dao.model.FofoIdQtyModel("
|
| 28020 |
tejbeer |
87 |
+ " fs.warehouseId,fs.id,sum(li.quantity )) from FofoStore fs join Order o on fs.id = o.retailerId "
|
| 28004 |
tejbeer |
88 |
+ " join LineItem li on o.id = li.orderId join TagListing tl on tl.itemId = li.itemId "
|
|
|
89 |
+ " join Item i on (i.id = tl.itemId ) where " + " fs.active = 1 and fs.internal = 0 and"
|
|
|
90 |
+ " o.billingTimestamp is not null and o.refundTimestamp is null and o.deliveryTimestamp is null"
|
| 28020 |
tejbeer |
91 |
+ " and i.catalogItemId in :catalogItemId group by fs.id"),
|
| 28004 |
tejbeer |
92 |
|
|
|
93 |
@NamedQuery(name = "Order.selectAllPendingIndentOrderByCatalogId", query = "select new com.spice.profitmandi.dao.model.FofoIdQtyModel("
|
| 28020 |
tejbeer |
94 |
+ " fs.warehouseId,fs.id,sum(case when li.quantity is null then 0 else li.quantity end))"
|
| 28004 |
tejbeer |
95 |
+ " from FofoStore fs join Order o on fs.id = o.retailerId"
|
|
|
96 |
+ " join LineItem li on o.id = li.orderId " + " join TagListing tl on tl.itemId = li.itemId "
|
|
|
97 |
+ " join Item i on i.id = tl.itemId where "
|
| 28020 |
tejbeer |
98 |
+ " fs.active = 1 and fs.internal = 0 and o.status in (3,4) and i.catalogItemId in :catalogItemId group by fs.id"),
|
| 28004 |
tejbeer |
99 |
|
|
|
100 |
@NamedQuery(name = "Order.selectAllGrnPendingOrderByRange", query = "select new com.spice.profitmandi.dao.model.FofoIdItemDetailModel("
|
| 28020 |
tejbeer |
101 |
+ " fs.warehouseId,fs.id,sum(li.quantity ),i.brand,i.modelName,i.modelNumber,i.catalogItemId) from FofoStore fs join Order o on fs.id = o.retailerId "
|
| 28004 |
tejbeer |
102 |
+ " join LineItem li on o.id = li.orderId join TagListing tl on tl.itemId = li.itemId "
|
|
|
103 |
+ " join Item i on (i.id = tl.itemId ) where " + " fs.active = 1 and fs.internal = 0 and"
|
|
|
104 |
+ " o.billingTimestamp is not null and o.refundTimestamp is null and o.deliveryTimestamp is null"
|
|
|
105 |
+ " and tl.mop between :startPrice and :endPrice and i.categoryId=10006 group by fs.id,i.catalogItemId,i.brand,i.modelName,i.modelNumber"),
|
|
|
106 |
|
|
|
107 |
@NamedQuery(name = "Order.selectAllPendingIndentOrderByRange", query = "select new com.spice.profitmandi.dao.model.FofoIdItemDetailModel("
|
| 28020 |
tejbeer |
108 |
+ " fs.warehouseId, fs.id,sum(case when li.quantity is null then 0 else li.quantity end),i.brand,i.modelName,i.modelNumber,i.catalogItemId)"
|
| 28004 |
tejbeer |
109 |
+ " from FofoStore fs join Order o on fs.id = o.retailerId"
|
|
|
110 |
+ " join LineItem li on o.id = li.orderId " + " join TagListing tl on tl.itemId = li.itemId "
|
|
|
111 |
+ " join Item i on i.id = tl.itemId where "
|
|
|
112 |
+ " fs.active = 1 and fs.internal = 0 and o.status in (3,4) and tl.mop between :startPrice and :endPrice and i.categoryId=10006 group by fs.id,i.catalogItemId,i.brand,i.modelName,i.modelNumber"),
|
|
|
113 |
|
| 21545 |
ashik.ali |
114 |
})
|
| 27723 |
tejbeer |
115 |
public class Order implements Serializable {
|
|
|
116 |
|
| 21545 |
ashik.ali |
117 |
private static final long serialVersionUID = 1L;
|
| 27723 |
tejbeer |
118 |
|
| 21545 |
ashik.ali |
119 |
public Order() {
|
|
|
120 |
}
|
| 27723 |
tejbeer |
121 |
|
| 21545 |
ashik.ali |
122 |
@Id
|
| 27723 |
tejbeer |
123 |
@Column(name = "id", unique = true, updatable = false)
|
| 21545 |
ashik.ali |
124 |
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
| 21629 |
kshitij.so |
125 |
private Integer id;
|
| 27723 |
tejbeer |
126 |
|
| 21545 |
ashik.ali |
127 |
@Column(name = "warehouse_id")
|
| 21629 |
kshitij.so |
128 |
private Integer warehouseId;
|
| 27723 |
tejbeer |
129 |
|
| 21545 |
ashik.ali |
130 |
@Column(name = "seller_id")
|
| 21629 |
kshitij.so |
131 |
private Integer sellerId;
|
| 27723 |
tejbeer |
132 |
|
| 21545 |
ashik.ali |
133 |
@Column(name = "warehouse_address_id")
|
| 21629 |
kshitij.so |
134 |
private Integer warehouseAddressId;
|
| 27723 |
tejbeer |
135 |
|
| 21545 |
ashik.ali |
136 |
@Column(name = "logistics_provider_id")
|
| 21629 |
kshitij.so |
137 |
private Integer logisticsProviderId;
|
| 27723 |
tejbeer |
138 |
|
| 21614 |
kshitij.so |
139 |
@Column(name = "airwaybill_no", length = 50)
|
| 21545 |
ashik.ali |
140 |
private String airwayBillNumber;
|
| 27723 |
tejbeer |
141 |
|
| 21545 |
ashik.ali |
142 |
@Column(name = "tracking_id", length = 50)
|
|
|
143 |
private String trackingId;
|
| 27723 |
tejbeer |
144 |
|
| 22009 |
ashik.ali |
145 |
@Convert(converter = LocalDateTimeAttributeConverter.class)
|
| 21545 |
ashik.ali |
146 |
@Column(name = "expected_delivery_time")
|
|
|
147 |
private LocalDateTime expectedDeliveryTime;
|
| 27723 |
tejbeer |
148 |
|
| 22009 |
ashik.ali |
149 |
@Convert(converter = LocalDateTimeAttributeConverter.class)
|
| 21545 |
ashik.ali |
150 |
@Column(name = "promised_delivery_time")
|
|
|
151 |
private LocalDateTime promisedDeliveryTime;
|
| 27723 |
tejbeer |
152 |
|
| 22009 |
ashik.ali |
153 |
@Convert(converter = LocalDateTimeAttributeConverter.class)
|
| 21545 |
ashik.ali |
154 |
@Column(name = "expected_shipping_time")
|
|
|
155 |
private LocalDateTime expectedShippingTime;
|
| 27723 |
tejbeer |
156 |
|
| 22009 |
ashik.ali |
157 |
@Convert(converter = LocalDateTimeAttributeConverter.class)
|
| 21545 |
ashik.ali |
158 |
@Column(name = "promised_shipping_time")
|
|
|
159 |
private LocalDateTime promisedShippingTime;
|
| 27723 |
tejbeer |
160 |
|
| 23884 |
amit.gupta |
161 |
@Convert(converter = LocalDateTimeAttributeConverter.class)
|
|
|
162 |
@Column(name = "partner_grn_timestamp")
|
|
|
163 |
private LocalDateTime partnerGrnTimestamp;
|
| 27723 |
tejbeer |
164 |
|
| 23902 |
amit.gupta |
165 |
public LocalDateTime getPartnerGrnTimestamp() {
|
| 23884 |
amit.gupta |
166 |
return partnerGrnTimestamp;
|
|
|
167 |
}
|
| 27723 |
tejbeer |
168 |
|
| 23902 |
amit.gupta |
169 |
public void setPartnerGrnTimestamp(LocalDateTime partnerGrnTimestamp) {
|
| 23884 |
amit.gupta |
170 |
this.partnerGrnTimestamp = partnerGrnTimestamp;
|
|
|
171 |
}
|
|
|
172 |
|
| 21545 |
ashik.ali |
173 |
@Column(name = "customer_id")
|
| 21629 |
kshitij.so |
174 |
private Integer retailerId;
|
| 27723 |
tejbeer |
175 |
|
| 21545 |
ashik.ali |
176 |
@Column(name = "customer_name", length = 50)
|
|
|
177 |
private String retailerName;
|
| 27723 |
tejbeer |
178 |
|
| 21545 |
ashik.ali |
179 |
@Column(name = "customer_mobilenumber", length = 20)
|
|
|
180 |
private String retailerMobileNumber;
|
| 27723 |
tejbeer |
181 |
|
| 21545 |
ashik.ali |
182 |
@Column(name = "customer_pincode", length = 10)
|
|
|
183 |
private String retailerPinCode;
|
| 27723 |
tejbeer |
184 |
|
| 21545 |
ashik.ali |
185 |
@Column(name = "customer_address1", length = 100)
|
|
|
186 |
private String retailerAddress1;
|
| 27723 |
tejbeer |
187 |
|
| 21545 |
ashik.ali |
188 |
@Column(name = "customer_address2", length = 100)
|
|
|
189 |
private String retailerAddress2;
|
| 27723 |
tejbeer |
190 |
|
| 21545 |
ashik.ali |
191 |
@Column(name = "customer_city", length = 100)
|
|
|
192 |
private String retailerCity;
|
| 27723 |
tejbeer |
193 |
|
| 21545 |
ashik.ali |
194 |
@Column(name = "customer_state", length = 100)
|
|
|
195 |
private String retailerState;
|
| 27723 |
tejbeer |
196 |
|
| 21545 |
ashik.ali |
197 |
@Column(name = "customer_email", length = 50)
|
|
|
198 |
private String retailerEmailId;
|
| 27723 |
tejbeer |
199 |
|
| 21545 |
ashik.ali |
200 |
@Column(name = "status")
|
|
|
201 |
@Enumerated(EnumType.ORDINAL)
|
|
|
202 |
private OrderStatus status;
|
| 27723 |
tejbeer |
203 |
|
| 21545 |
ashik.ali |
204 |
@Column(name = "statusDescription", length = 50)
|
|
|
205 |
private String statusDescription;
|
| 27723 |
tejbeer |
206 |
|
| 21545 |
ashik.ali |
207 |
@Column(name = "total_amount")
|
| 21629 |
kshitij.so |
208 |
private Float totalAmount;
|
| 27723 |
tejbeer |
209 |
|
| 21545 |
ashik.ali |
210 |
@Column(name = "gvAmount")
|
| 21629 |
kshitij.so |
211 |
private Float gvAmount;
|
| 27723 |
tejbeer |
212 |
|
| 21545 |
ashik.ali |
213 |
@Column(name = "total_weight")
|
| 21629 |
kshitij.so |
214 |
private Float totalWeight;
|
| 27723 |
tejbeer |
215 |
|
| 21545 |
ashik.ali |
216 |
@Column(name = "invoice_number", length = 30)
|
|
|
217 |
private String invoiceNumber;
|
| 27723 |
tejbeer |
218 |
|
| 21545 |
ashik.ali |
219 |
@Column(name = "billed_by", length = 30)
|
|
|
220 |
private String billedBy;
|
| 27723 |
tejbeer |
221 |
|
| 22009 |
ashik.ali |
222 |
@Convert(converter = LocalDateTimeAttributeConverter.class)
|
| 21545 |
ashik.ali |
223 |
@Column(name = "created_timestamp")
|
|
|
224 |
private LocalDateTime createTimestamp;
|
| 27723 |
tejbeer |
225 |
|
| 22009 |
ashik.ali |
226 |
@Convert(converter = LocalDateTimeAttributeConverter.class)
|
| 21545 |
ashik.ali |
227 |
@Column(name = "accepted_timestamp")
|
|
|
228 |
private LocalDateTime acceptedTimestamp;
|
| 27723 |
tejbeer |
229 |
|
| 22009 |
ashik.ali |
230 |
@Convert(converter = LocalDateTimeAttributeConverter.class)
|
| 21545 |
ashik.ali |
231 |
@Column(name = "billing_timestamp")
|
|
|
232 |
private LocalDateTime billingTimestamp;
|
| 27723 |
tejbeer |
233 |
|
| 22009 |
ashik.ali |
234 |
@Convert(converter = LocalDateTimeAttributeConverter.class)
|
| 21545 |
ashik.ali |
235 |
@Column(name = "shipping_timestamp")
|
|
|
236 |
private LocalDateTime shippingTimestamp;
|
| 27723 |
tejbeer |
237 |
|
| 22009 |
ashik.ali |
238 |
@Convert(converter = LocalDateTimeAttributeConverter.class)
|
| 21545 |
ashik.ali |
239 |
@Column(name = "pickup_timestamp")
|
|
|
240 |
private LocalDateTime pickupTimestamp;
|
| 27723 |
tejbeer |
241 |
|
| 22009 |
ashik.ali |
242 |
@Convert(converter = LocalDateTimeAttributeConverter.class)
|
| 21545 |
ashik.ali |
243 |
@Column(name = "delivery_timestamp")
|
|
|
244 |
private LocalDateTime deliveryTimestamp;
|
| 27723 |
tejbeer |
245 |
|
| 22009 |
ashik.ali |
246 |
@Convert(converter = LocalDateTimeAttributeConverter.class)
|
| 21545 |
ashik.ali |
247 |
@Column(name = "outofstock_timestamp")
|
|
|
248 |
private LocalDateTime outOfStockTimestamp;
|
| 27723 |
tejbeer |
249 |
|
| 21545 |
ashik.ali |
250 |
@Column(name = "transaction_id")
|
| 27723 |
tejbeer |
251 |
private Integer transactionId;
|
|
|
252 |
|
|
|
253 |
/*
|
|
|
254 |
* @Column(name = "jacket_number", length = 10) private Integer jacketNumber;
|
|
|
255 |
*/
|
|
|
256 |
|
| 21545 |
ashik.ali |
257 |
@Column(name = "receiver", length = 50)
|
|
|
258 |
private String receiver;
|
| 27723 |
tejbeer |
259 |
|
| 21545 |
ashik.ali |
260 |
@Column(name = "batchNo")
|
| 21629 |
kshitij.so |
261 |
private Integer batchNumber;
|
| 27723 |
tejbeer |
262 |
|
| 21545 |
ashik.ali |
263 |
@Column(name = "serialNo")
|
| 21629 |
kshitij.so |
264 |
private Integer serialNumber;
|
| 27723 |
tejbeer |
265 |
|
|
|
266 |
@Column(name = "doaFlag", columnDefinition = "tinyInteger(1) default 0")
|
| 21629 |
kshitij.so |
267 |
private Boolean doaFlag;
|
| 27723 |
tejbeer |
268 |
|
| 21545 |
ashik.ali |
269 |
@Column(name = "pickupRequestNo")
|
| 21629 |
kshitij.so |
270 |
private Integer pickupRequestNumber;
|
| 27723 |
tejbeer |
271 |
|
| 21545 |
ashik.ali |
272 |
@Column(name = "new_order_id")
|
| 21629 |
kshitij.so |
273 |
private Integer newOrderId;
|
| 27723 |
tejbeer |
274 |
|
| 21545 |
ashik.ali |
275 |
@Column(name = "doa_auth_timestamp")
|
|
|
276 |
private LocalDateTime doaAuthTimestamp;
|
| 27723 |
tejbeer |
277 |
|
| 22009 |
ashik.ali |
278 |
@Convert(converter = LocalDateTimeAttributeConverter.class)
|
| 21545 |
ashik.ali |
279 |
@Column(name = "doa_pickup_timestamp")
|
|
|
280 |
private LocalDateTime doaPickupTimestamp;
|
| 27723 |
tejbeer |
281 |
|
| 22009 |
ashik.ali |
282 |
@Convert(converter = LocalDateTimeAttributeConverter.class)
|
| 21545 |
ashik.ali |
283 |
@Column(name = "received_return_timestamp")
|
|
|
284 |
private LocalDateTime receiverReturnTimestamp;
|
| 27723 |
tejbeer |
285 |
|
| 22009 |
ashik.ali |
286 |
@Convert(converter = LocalDateTimeAttributeConverter.class)
|
| 21545 |
ashik.ali |
287 |
@Column(name = "reship_timestamp")
|
|
|
288 |
private LocalDateTime reShipTimestamp;
|
| 27723 |
tejbeer |
289 |
|
| 22009 |
ashik.ali |
290 |
@Convert(converter = LocalDateTimeAttributeConverter.class)
|
| 21545 |
ashik.ali |
291 |
@Column(name = "refund_timestamp")
|
|
|
292 |
private LocalDateTime refundTimestamp;
|
| 27723 |
tejbeer |
293 |
|
| 21545 |
ashik.ali |
294 |
@Column(name = "purchase_order_id")
|
| 21629 |
kshitij.so |
295 |
private Integer purchaseOrderId;
|
| 27723 |
tejbeer |
296 |
|
|
|
297 |
@Column(name = "cod", columnDefinition = "tinyInteger(1) default 0")
|
| 21629 |
kshitij.so |
298 |
private Boolean cod;
|
| 27723 |
tejbeer |
299 |
|
| 22009 |
ashik.ali |
300 |
@Convert(converter = LocalDateTimeAttributeConverter.class)
|
| 21545 |
ashik.ali |
301 |
@Column(name = "verification_timestamp")
|
|
|
302 |
private LocalDateTime verificationTimestamp;
|
| 27723 |
tejbeer |
303 |
|
| 21629 |
kshitij.so |
304 |
@Column(name = "refunded_by", length = 30)
|
| 21545 |
ashik.ali |
305 |
private String refundBy;
|
| 27723 |
tejbeer |
306 |
|
| 21545 |
ashik.ali |
307 |
@Column(name = "refund_reason", length = 256)
|
|
|
308 |
private String refundReason;
|
| 27723 |
tejbeer |
309 |
|
|
|
310 |
/*
|
|
|
311 |
* @Column(name = "delay_reason") private DelayReason delayReason;
|
|
|
312 |
*/
|
|
|
313 |
|
| 22009 |
ashik.ali |
314 |
@Convert(converter = LocalDateTimeAttributeConverter.class)
|
| 21545 |
ashik.ali |
315 |
@Column(name = "cod_reconciliation_timestamp")
|
|
|
316 |
private LocalDateTime codReconciliationTimestamp;
|
| 27723 |
tejbeer |
317 |
|
| 21629 |
kshitij.so |
318 |
private Integer previousStatus;
|
| 27723 |
tejbeer |
319 |
|
| 21545 |
ashik.ali |
320 |
@Column(name = "vendorId")
|
| 21629 |
kshitij.so |
321 |
private Integer vendorId;
|
| 27723 |
tejbeer |
322 |
|
| 21545 |
ashik.ali |
323 |
@Column(name = "delayReasonText", length = 250)
|
|
|
324 |
private String delayReasonText;
|
| 27723 |
tejbeer |
325 |
|
| 21545 |
ashik.ali |
326 |
@Column(name = "doa_logistics_provider_id")
|
| 21629 |
kshitij.so |
327 |
private Integer doaLogisticsProviderId;
|
| 27723 |
tejbeer |
328 |
|
|
|
329 |
@Column(name = "vendor_paid", columnDefinition = "tinyInteger(1) default 0")
|
| 21629 |
kshitij.so |
330 |
private Boolean vendorPaid;
|
| 27723 |
tejbeer |
331 |
|
| 22009 |
ashik.ali |
332 |
@Convert(converter = LocalDateTimeAttributeConverter.class)
|
| 21545 |
ashik.ali |
333 |
@Column(name = "local_connected_timestamp")
|
|
|
334 |
private LocalDateTime localConnectedTimestamp;
|
| 27723 |
tejbeer |
335 |
|
| 22009 |
ashik.ali |
336 |
@Convert(converter = LocalDateTimeAttributeConverter.class)
|
| 21545 |
ashik.ali |
337 |
@Column(name = "reached_destination_timestamp")
|
|
|
338 |
private LocalDateTime reachedDestinationTimestamp;
|
| 27723 |
tejbeer |
339 |
|
| 22009 |
ashik.ali |
340 |
@Convert(converter = LocalDateTimeAttributeConverter.class)
|
| 21545 |
ashik.ali |
341 |
@Column(name = "first_dlvyatmp_timestamp")
|
|
|
342 |
private LocalDateTime firstDlvyatmpTimestamp;
|
| 27723 |
tejbeer |
343 |
|
| 21545 |
ashik.ali |
344 |
@Column(name = "originalOrderId")
|
| 21629 |
kshitij.so |
345 |
private Integer originalOrderId;
|
| 27723 |
tejbeer |
346 |
|
| 21545 |
ashik.ali |
347 |
@Column(name = "fulfilmentWarehouseId")
|
| 21629 |
kshitij.so |
348 |
private Integer fulfilmentWarehouseId;
|
| 27723 |
tejbeer |
349 |
|
| 21545 |
ashik.ali |
350 |
@Column(name = "orderType")
|
| 21629 |
kshitij.so |
351 |
private Integer orderType;
|
| 27723 |
tejbeer |
352 |
|
| 21545 |
ashik.ali |
353 |
@Column(name = "pickupStoreId")
|
| 21629 |
kshitij.so |
354 |
private Integer pickupStoreId;
|
| 27723 |
tejbeer |
355 |
|
|
|
356 |
@Column(name = "otg", columnDefinition = "tinyInteger(1) default 0")
|
| 21629 |
kshitij.so |
357 |
private Boolean otg;
|
| 27723 |
tejbeer |
358 |
|
| 22009 |
ashik.ali |
359 |
@Convert(converter = LocalDateTimeAttributeConverter.class)
|
| 21545 |
ashik.ali |
360 |
@Column(name = "courier_delivery_time")
|
|
|
361 |
private LocalDateTime courierDeliveryTimestamp;
|
| 27723 |
tejbeer |
362 |
|
| 21545 |
ashik.ali |
363 |
@Column(name = "insurer")
|
| 21629 |
kshitij.so |
364 |
private Integer insurer;
|
| 27723 |
tejbeer |
365 |
|
| 21545 |
ashik.ali |
366 |
@Column(name = "insuranceAmount")
|
| 21629 |
kshitij.so |
367 |
private Float insuranceAmount;
|
| 27723 |
tejbeer |
368 |
|
| 21545 |
ashik.ali |
369 |
@Column(name = "freebieItemId")
|
| 21629 |
kshitij.so |
370 |
private Integer freebieItemId;
|
| 27723 |
tejbeer |
371 |
|
| 21545 |
ashik.ali |
372 |
@Column(name = "source")
|
| 21629 |
kshitij.so |
373 |
private Integer source;
|
| 27723 |
tejbeer |
374 |
|
| 21545 |
ashik.ali |
375 |
@Column(name = "advanceAmount")
|
| 21629 |
kshitij.so |
376 |
private Float advanceAmount;
|
| 27723 |
tejbeer |
377 |
|
| 21545 |
ashik.ali |
378 |
@Column(name = "storeId")
|
| 21629 |
kshitij.so |
379 |
private Integer storeId;
|
| 27723 |
tejbeer |
380 |
|
| 21545 |
ashik.ali |
381 |
@Column(name = "productCondition")
|
| 21629 |
kshitij.so |
382 |
private Integer productCondition;
|
| 27723 |
tejbeer |
383 |
|
| 21545 |
ashik.ali |
384 |
@Column(name = "dataProtectionInsurer")
|
| 21629 |
kshitij.so |
385 |
private Integer dataProtectionInsurer;
|
| 27723 |
tejbeer |
386 |
|
| 21545 |
ashik.ali |
387 |
@Column(name = "dataProtectionAmount")
|
| 21629 |
kshitij.so |
388 |
private Integer dataProtectionAmount;
|
| 27723 |
tejbeer |
389 |
|
| 21545 |
ashik.ali |
390 |
@Column(name = "taxType")
|
| 21629 |
kshitij.so |
391 |
@Enumerated(EnumType.ORDINAL)
|
| 21545 |
ashik.ali |
392 |
private TaxType taxType;
|
| 27723 |
tejbeer |
393 |
|
| 21545 |
ashik.ali |
394 |
@Column(name = "logisticsTransactionId", length = 100)
|
|
|
395 |
private String logisticsTransactionId;
|
| 27723 |
tejbeer |
396 |
|
| 21545 |
ashik.ali |
397 |
@Column(name = "shippingCost")
|
| 21629 |
kshitij.so |
398 |
private Float shippingCost;
|
| 27723 |
tejbeer |
399 |
|
| 21545 |
ashik.ali |
400 |
@Column(name = "codCharges")
|
| 21629 |
kshitij.so |
401 |
private Float codCharges;
|
| 27723 |
tejbeer |
402 |
|
| 21545 |
ashik.ali |
403 |
@Column(name = "wallet_amount")
|
| 21629 |
kshitij.so |
404 |
private Float walletAmount;
|
| 27723 |
tejbeer |
405 |
|
| 21545 |
ashik.ali |
406 |
@Column(name = "net_payable_amount")
|
| 21629 |
kshitij.so |
407 |
private Float netPayableAmount;
|
| 27723 |
tejbeer |
408 |
|
| 21545 |
ashik.ali |
409 |
@Column(name = "shippingRefund")
|
| 21629 |
kshitij.so |
410 |
private Float shippingRefund;
|
| 27723 |
tejbeer |
411 |
|
|
|
412 |
@ManyToOne(cascade = CascadeType.ALL, fetch = FetchType.EAGER)
|
|
|
413 |
@JoinColumn(name = "id", insertable = false, updatable = false, nullable = false, referencedColumnName = "order_id")
|
| 21653 |
ashik.ali |
414 |
private LineItem lineItem;
|
| 27723 |
tejbeer |
415 |
|
| 21629 |
kshitij.so |
416 |
public Integer getId() {
|
| 21545 |
ashik.ali |
417 |
return id;
|
|
|
418 |
}
|
| 27723 |
tejbeer |
419 |
|
| 21629 |
kshitij.so |
420 |
public void setId(Integer id) {
|
| 21545 |
ashik.ali |
421 |
this.id = id;
|
|
|
422 |
}
|
| 27723 |
tejbeer |
423 |
|
| 21629 |
kshitij.so |
424 |
public Integer getWarehouseId() {
|
| 21545 |
ashik.ali |
425 |
return warehouseId;
|
|
|
426 |
}
|
| 27723 |
tejbeer |
427 |
|
| 21629 |
kshitij.so |
428 |
public void setWarehouseId(Integer warehouseId) {
|
| 21545 |
ashik.ali |
429 |
this.warehouseId = warehouseId;
|
|
|
430 |
}
|
| 27723 |
tejbeer |
431 |
|
| 21629 |
kshitij.so |
432 |
public Integer getSellerId() {
|
| 21545 |
ashik.ali |
433 |
return sellerId;
|
|
|
434 |
}
|
| 27723 |
tejbeer |
435 |
|
| 21629 |
kshitij.so |
436 |
public void setSellerId(Integer sellerId) {
|
| 21545 |
ashik.ali |
437 |
this.sellerId = sellerId;
|
|
|
438 |
}
|
| 27723 |
tejbeer |
439 |
|
| 21629 |
kshitij.so |
440 |
public Integer getWarehouseAddressId() {
|
| 21545 |
ashik.ali |
441 |
return warehouseAddressId;
|
|
|
442 |
}
|
| 27723 |
tejbeer |
443 |
|
| 21629 |
kshitij.so |
444 |
public void setWarehouseAddressId(Integer warehouseAddressId) {
|
| 21545 |
ashik.ali |
445 |
this.warehouseAddressId = warehouseAddressId;
|
|
|
446 |
}
|
| 27723 |
tejbeer |
447 |
|
| 21629 |
kshitij.so |
448 |
public Integer getLogisticsProviderId() {
|
| 21545 |
ashik.ali |
449 |
return logisticsProviderId;
|
|
|
450 |
}
|
| 27723 |
tejbeer |
451 |
|
| 21629 |
kshitij.so |
452 |
public void setLogisticsProviderId(Integer logisticsProviderId) {
|
| 21545 |
ashik.ali |
453 |
this.logisticsProviderId = logisticsProviderId;
|
|
|
454 |
}
|
| 27723 |
tejbeer |
455 |
|
| 21545 |
ashik.ali |
456 |
public String getAirwayBillNumber() {
|
|
|
457 |
return airwayBillNumber;
|
|
|
458 |
}
|
| 27723 |
tejbeer |
459 |
|
| 21545 |
ashik.ali |
460 |
public void setAirwayBillNumber(String airwayBillNumber) {
|
|
|
461 |
this.airwayBillNumber = airwayBillNumber;
|
|
|
462 |
}
|
| 27723 |
tejbeer |
463 |
|
| 21545 |
ashik.ali |
464 |
public String getTrackingId() {
|
|
|
465 |
return trackingId;
|
|
|
466 |
}
|
| 27723 |
tejbeer |
467 |
|
| 21545 |
ashik.ali |
468 |
public void setTrackingId(String trackingId) {
|
|
|
469 |
this.trackingId = trackingId;
|
|
|
470 |
}
|
| 27723 |
tejbeer |
471 |
|
| 21545 |
ashik.ali |
472 |
public LocalDateTime getExpectedDeliveryTime() {
|
|
|
473 |
return expectedDeliveryTime;
|
|
|
474 |
}
|
| 27723 |
tejbeer |
475 |
|
| 21545 |
ashik.ali |
476 |
public void setExpectedDeliveryTime(LocalDateTime expectedDeliveryTime) {
|
|
|
477 |
this.expectedDeliveryTime = expectedDeliveryTime;
|
|
|
478 |
}
|
| 27723 |
tejbeer |
479 |
|
| 21545 |
ashik.ali |
480 |
public LocalDateTime getPromisedDeliveryTime() {
|
|
|
481 |
return promisedDeliveryTime;
|
|
|
482 |
}
|
| 27723 |
tejbeer |
483 |
|
| 21545 |
ashik.ali |
484 |
public void setPromisedDeliveryTime(LocalDateTime promisedDeliveryTime) {
|
|
|
485 |
this.promisedDeliveryTime = promisedDeliveryTime;
|
|
|
486 |
}
|
| 27723 |
tejbeer |
487 |
|
| 21545 |
ashik.ali |
488 |
public LocalDateTime getExpectedShippingTime() {
|
|
|
489 |
return expectedShippingTime;
|
|
|
490 |
}
|
| 27723 |
tejbeer |
491 |
|
| 21545 |
ashik.ali |
492 |
public void setExpectedShippingTime(LocalDateTime expectedShippingTime) {
|
|
|
493 |
this.expectedShippingTime = expectedShippingTime;
|
|
|
494 |
}
|
| 27723 |
tejbeer |
495 |
|
| 21545 |
ashik.ali |
496 |
public LocalDateTime getPromisedShippingTime() {
|
|
|
497 |
return promisedShippingTime;
|
|
|
498 |
}
|
| 27723 |
tejbeer |
499 |
|
| 21545 |
ashik.ali |
500 |
public void setPromisedShippingTime(LocalDateTime promisedShippingTime) {
|
|
|
501 |
this.promisedShippingTime = promisedShippingTime;
|
|
|
502 |
}
|
| 27723 |
tejbeer |
503 |
|
| 21629 |
kshitij.so |
504 |
public Integer getRetailerId() {
|
| 21545 |
ashik.ali |
505 |
return retailerId;
|
|
|
506 |
}
|
| 27723 |
tejbeer |
507 |
|
| 21629 |
kshitij.so |
508 |
public void setRetailerId(Integer retailerId) {
|
| 21545 |
ashik.ali |
509 |
this.retailerId = retailerId;
|
|
|
510 |
}
|
| 27723 |
tejbeer |
511 |
|
| 21545 |
ashik.ali |
512 |
public String getRetailerName() {
|
|
|
513 |
return retailerName;
|
|
|
514 |
}
|
| 27723 |
tejbeer |
515 |
|
| 21545 |
ashik.ali |
516 |
public void setRetailerName(String retailerName) {
|
|
|
517 |
this.retailerName = retailerName;
|
|
|
518 |
}
|
| 27723 |
tejbeer |
519 |
|
| 21545 |
ashik.ali |
520 |
public String getRetailerMobileNumber() {
|
|
|
521 |
return retailerMobileNumber;
|
|
|
522 |
}
|
| 27723 |
tejbeer |
523 |
|
| 21545 |
ashik.ali |
524 |
public void setRetailerMobileNumber(String retailerMobileNumber) {
|
|
|
525 |
this.retailerMobileNumber = retailerMobileNumber;
|
|
|
526 |
}
|
| 27723 |
tejbeer |
527 |
|
| 21545 |
ashik.ali |
528 |
public String getRetailerPinCode() {
|
|
|
529 |
return retailerPinCode;
|
|
|
530 |
}
|
| 27723 |
tejbeer |
531 |
|
| 21545 |
ashik.ali |
532 |
public void setRetailerPinCode(String retailerPinCode) {
|
|
|
533 |
this.retailerPinCode = retailerPinCode;
|
|
|
534 |
}
|
| 27723 |
tejbeer |
535 |
|
| 21545 |
ashik.ali |
536 |
public String getRetailerAddress1() {
|
|
|
537 |
return retailerAddress1;
|
|
|
538 |
}
|
| 27723 |
tejbeer |
539 |
|
| 21545 |
ashik.ali |
540 |
public void setRetailerAddress1(String retailerAddress1) {
|
|
|
541 |
this.retailerAddress1 = retailerAddress1;
|
|
|
542 |
}
|
| 27723 |
tejbeer |
543 |
|
| 21545 |
ashik.ali |
544 |
public String getRetailerAddress2() {
|
|
|
545 |
return retailerAddress2;
|
|
|
546 |
}
|
| 27723 |
tejbeer |
547 |
|
| 21545 |
ashik.ali |
548 |
public void setRetailerAddress2(String retailerAddress2) {
|
|
|
549 |
this.retailerAddress2 = retailerAddress2;
|
|
|
550 |
}
|
| 27723 |
tejbeer |
551 |
|
| 21545 |
ashik.ali |
552 |
public String getRetailerCity() {
|
|
|
553 |
return retailerCity;
|
|
|
554 |
}
|
| 27723 |
tejbeer |
555 |
|
| 21545 |
ashik.ali |
556 |
public void setRetailerCity(String retailerCity) {
|
|
|
557 |
this.retailerCity = retailerCity;
|
|
|
558 |
}
|
| 27723 |
tejbeer |
559 |
|
| 21545 |
ashik.ali |
560 |
public String getRetailerState() {
|
|
|
561 |
return retailerState;
|
|
|
562 |
}
|
| 27723 |
tejbeer |
563 |
|
| 21545 |
ashik.ali |
564 |
public void setRetailerState(String retailerState) {
|
|
|
565 |
this.retailerState = retailerState;
|
|
|
566 |
}
|
| 27723 |
tejbeer |
567 |
|
| 21545 |
ashik.ali |
568 |
public String getRetailerEmailId() {
|
|
|
569 |
return retailerEmailId;
|
|
|
570 |
}
|
| 27723 |
tejbeer |
571 |
|
| 21545 |
ashik.ali |
572 |
public void setRetailerEmailId(String retailerEmailId) {
|
|
|
573 |
this.retailerEmailId = retailerEmailId;
|
|
|
574 |
}
|
| 27723 |
tejbeer |
575 |
|
| 21545 |
ashik.ali |
576 |
public OrderStatus getStatus() {
|
|
|
577 |
return status;
|
|
|
578 |
}
|
| 27723 |
tejbeer |
579 |
|
| 21545 |
ashik.ali |
580 |
public void setStatus(OrderStatus status) {
|
|
|
581 |
this.status = status;
|
|
|
582 |
}
|
| 27723 |
tejbeer |
583 |
|
| 21545 |
ashik.ali |
584 |
public String getStatusDescription() {
|
|
|
585 |
return statusDescription;
|
|
|
586 |
}
|
| 27723 |
tejbeer |
587 |
|
| 21545 |
ashik.ali |
588 |
public void setStatusDescription(String statusDescription) {
|
|
|
589 |
this.statusDescription = statusDescription;
|
|
|
590 |
}
|
| 27723 |
tejbeer |
591 |
|
| 21629 |
kshitij.so |
592 |
public Float getTotalAmount() {
|
| 21545 |
ashik.ali |
593 |
return totalAmount;
|
|
|
594 |
}
|
| 27723 |
tejbeer |
595 |
|
| 21629 |
kshitij.so |
596 |
public void setTotalAmount(Float totalAmount) {
|
| 21545 |
ashik.ali |
597 |
this.totalAmount = totalAmount;
|
|
|
598 |
}
|
| 27723 |
tejbeer |
599 |
|
| 21629 |
kshitij.so |
600 |
public Float getGvAmount() {
|
| 21545 |
ashik.ali |
601 |
return gvAmount;
|
|
|
602 |
}
|
| 27723 |
tejbeer |
603 |
|
| 21629 |
kshitij.so |
604 |
public void setGvAmount(Float gvAmount) {
|
| 21545 |
ashik.ali |
605 |
this.gvAmount = gvAmount;
|
|
|
606 |
}
|
| 27723 |
tejbeer |
607 |
|
| 21629 |
kshitij.so |
608 |
public Float getTotalWeight() {
|
| 21545 |
ashik.ali |
609 |
return totalWeight;
|
|
|
610 |
}
|
| 27723 |
tejbeer |
611 |
|
| 21629 |
kshitij.so |
612 |
public void setTotalWeight(Float totalWeight) {
|
| 21545 |
ashik.ali |
613 |
this.totalWeight = totalWeight;
|
|
|
614 |
}
|
| 27723 |
tejbeer |
615 |
|
| 21545 |
ashik.ali |
616 |
public String getInvoiceNumber() {
|
|
|
617 |
return invoiceNumber;
|
|
|
618 |
}
|
| 27723 |
tejbeer |
619 |
|
| 21545 |
ashik.ali |
620 |
public void setInvoiceNumber(String invoiceNumber) {
|
|
|
621 |
this.invoiceNumber = invoiceNumber;
|
|
|
622 |
}
|
| 27723 |
tejbeer |
623 |
|
| 21545 |
ashik.ali |
624 |
public String getBilledBy() {
|
|
|
625 |
return billedBy;
|
|
|
626 |
}
|
| 27723 |
tejbeer |
627 |
|
| 21545 |
ashik.ali |
628 |
public void setBilledBy(String billedBy) {
|
|
|
629 |
this.billedBy = billedBy;
|
|
|
630 |
}
|
| 27723 |
tejbeer |
631 |
|
| 21545 |
ashik.ali |
632 |
public LocalDateTime getCreateTimestamp() {
|
|
|
633 |
return createTimestamp;
|
|
|
634 |
}
|
| 27723 |
tejbeer |
635 |
|
| 21545 |
ashik.ali |
636 |
public void setCreateTimestamp(LocalDateTime createTimestamp) {
|
|
|
637 |
this.createTimestamp = createTimestamp;
|
|
|
638 |
}
|
| 27723 |
tejbeer |
639 |
|
| 21545 |
ashik.ali |
640 |
public LocalDateTime getAcceptedTimestamp() {
|
|
|
641 |
return acceptedTimestamp;
|
|
|
642 |
}
|
| 27723 |
tejbeer |
643 |
|
| 21545 |
ashik.ali |
644 |
public void setAcceptedTimestamp(LocalDateTime acceptedTimestamp) {
|
|
|
645 |
this.acceptedTimestamp = acceptedTimestamp;
|
|
|
646 |
}
|
| 27723 |
tejbeer |
647 |
|
| 21545 |
ashik.ali |
648 |
public LocalDateTime getBillingTimestamp() {
|
|
|
649 |
return billingTimestamp;
|
|
|
650 |
}
|
| 27723 |
tejbeer |
651 |
|
| 21545 |
ashik.ali |
652 |
public void setBillingTimestamp(LocalDateTime billingTimestamp) {
|
|
|
653 |
this.billingTimestamp = billingTimestamp;
|
|
|
654 |
}
|
| 27723 |
tejbeer |
655 |
|
| 21545 |
ashik.ali |
656 |
public LocalDateTime getShippingTimestamp() {
|
|
|
657 |
return shippingTimestamp;
|
|
|
658 |
}
|
| 27723 |
tejbeer |
659 |
|
| 21545 |
ashik.ali |
660 |
public void setShippingTimestamp(LocalDateTime shippingTimestamp) {
|
|
|
661 |
this.shippingTimestamp = shippingTimestamp;
|
|
|
662 |
}
|
| 27723 |
tejbeer |
663 |
|
| 21545 |
ashik.ali |
664 |
public LocalDateTime getPickupTimestamp() {
|
|
|
665 |
return pickupTimestamp;
|
|
|
666 |
}
|
| 27723 |
tejbeer |
667 |
|
| 21545 |
ashik.ali |
668 |
public void setPickupTimestamp(LocalDateTime pickupTimestamp) {
|
|
|
669 |
this.pickupTimestamp = pickupTimestamp;
|
|
|
670 |
}
|
| 27723 |
tejbeer |
671 |
|
| 21545 |
ashik.ali |
672 |
public LocalDateTime getDeliveryTimestamp() {
|
|
|
673 |
return deliveryTimestamp;
|
|
|
674 |
}
|
| 27723 |
tejbeer |
675 |
|
| 21545 |
ashik.ali |
676 |
public void setDeliveryTimestamp(LocalDateTime deliveryTimestamp) {
|
|
|
677 |
this.deliveryTimestamp = deliveryTimestamp;
|
|
|
678 |
}
|
| 27723 |
tejbeer |
679 |
|
| 21545 |
ashik.ali |
680 |
public LocalDateTime getOutOfStockTimestamp() {
|
|
|
681 |
return outOfStockTimestamp;
|
|
|
682 |
}
|
| 27723 |
tejbeer |
683 |
|
| 21545 |
ashik.ali |
684 |
public void setOutOfStockTimestamp(LocalDateTime outOfStockTimestamp) {
|
|
|
685 |
this.outOfStockTimestamp = outOfStockTimestamp;
|
|
|
686 |
}
|
| 27723 |
tejbeer |
687 |
|
| 21629 |
kshitij.so |
688 |
public Integer getTransactionId() {
|
| 21545 |
ashik.ali |
689 |
return transactionId;
|
|
|
690 |
}
|
| 27723 |
tejbeer |
691 |
|
| 21629 |
kshitij.so |
692 |
public void setTransactionId(Integer transactionId) {
|
| 21545 |
ashik.ali |
693 |
this.transactionId = transactionId;
|
|
|
694 |
}
|
| 27723 |
tejbeer |
695 |
|
|
|
696 |
/*
|
|
|
697 |
* public Integer getJacketNumber() { return jacketNumber; } public void
|
|
|
698 |
* setJacketNumber(Integer jacketNumber) { this.jacketNumber = jacketNumber; }
|
|
|
699 |
*/
|
| 21545 |
ashik.ali |
700 |
public String getReceiver() {
|
|
|
701 |
return receiver;
|
|
|
702 |
}
|
| 27723 |
tejbeer |
703 |
|
| 21545 |
ashik.ali |
704 |
public void setReceiver(String receiver) {
|
|
|
705 |
this.receiver = receiver;
|
|
|
706 |
}
|
| 27723 |
tejbeer |
707 |
|
| 21629 |
kshitij.so |
708 |
public Integer getBatchNumber() {
|
| 21545 |
ashik.ali |
709 |
return batchNumber;
|
|
|
710 |
}
|
| 27723 |
tejbeer |
711 |
|
| 21629 |
kshitij.so |
712 |
public void setBatchNumber(Integer batchNumber) {
|
| 21545 |
ashik.ali |
713 |
this.batchNumber = batchNumber;
|
|
|
714 |
}
|
| 27723 |
tejbeer |
715 |
|
| 21629 |
kshitij.so |
716 |
public Integer getSerialNumber() {
|
| 21545 |
ashik.ali |
717 |
return serialNumber;
|
|
|
718 |
}
|
| 27723 |
tejbeer |
719 |
|
| 21629 |
kshitij.so |
720 |
public void setSerialNumber(Integer serialNumber) {
|
| 21545 |
ashik.ali |
721 |
this.serialNumber = serialNumber;
|
|
|
722 |
}
|
| 27723 |
tejbeer |
723 |
|
| 21629 |
kshitij.so |
724 |
public Boolean isDoaFlag() {
|
| 21545 |
ashik.ali |
725 |
return doaFlag;
|
|
|
726 |
}
|
| 27723 |
tejbeer |
727 |
|
| 21629 |
kshitij.so |
728 |
public void setDoaFlag(Boolean doaFlag) {
|
| 21545 |
ashik.ali |
729 |
this.doaFlag = doaFlag;
|
|
|
730 |
}
|
| 27723 |
tejbeer |
731 |
|
| 21629 |
kshitij.so |
732 |
public Integer getPickupRequestNumber() {
|
| 21545 |
ashik.ali |
733 |
return pickupRequestNumber;
|
|
|
734 |
}
|
| 27723 |
tejbeer |
735 |
|
| 21629 |
kshitij.so |
736 |
public void setPickupRequestNumber(Integer pickupRequestNumber) {
|
| 21545 |
ashik.ali |
737 |
this.pickupRequestNumber = pickupRequestNumber;
|
|
|
738 |
}
|
| 27723 |
tejbeer |
739 |
|
| 21629 |
kshitij.so |
740 |
public Integer getNewOrderId() {
|
| 21545 |
ashik.ali |
741 |
return newOrderId;
|
|
|
742 |
}
|
| 27723 |
tejbeer |
743 |
|
| 21629 |
kshitij.so |
744 |
public void setNewOrderId(Integer newOrderId) {
|
| 21545 |
ashik.ali |
745 |
this.newOrderId = newOrderId;
|
|
|
746 |
}
|
| 27723 |
tejbeer |
747 |
|
| 21545 |
ashik.ali |
748 |
public LocalDateTime getDoaAuthTimestamp() {
|
|
|
749 |
return doaAuthTimestamp;
|
|
|
750 |
}
|
| 27723 |
tejbeer |
751 |
|
| 21545 |
ashik.ali |
752 |
public void setDoaAuthTimestamp(LocalDateTime doaAuthTimestamp) {
|
|
|
753 |
this.doaAuthTimestamp = doaAuthTimestamp;
|
|
|
754 |
}
|
| 27723 |
tejbeer |
755 |
|
| 21545 |
ashik.ali |
756 |
public LocalDateTime getDoaPickupTimestamp() {
|
|
|
757 |
return doaPickupTimestamp;
|
|
|
758 |
}
|
| 27723 |
tejbeer |
759 |
|
| 21545 |
ashik.ali |
760 |
public void setDoaPickupTimestamp(LocalDateTime doaPickupTimestamp) {
|
|
|
761 |
this.doaPickupTimestamp = doaPickupTimestamp;
|
|
|
762 |
}
|
| 27723 |
tejbeer |
763 |
|
| 21545 |
ashik.ali |
764 |
public LocalDateTime getReceiverReturnTimestamp() {
|
|
|
765 |
return receiverReturnTimestamp;
|
|
|
766 |
}
|
| 27723 |
tejbeer |
767 |
|
| 21545 |
ashik.ali |
768 |
public void setReceiverReturnTimestamp(LocalDateTime receiverReturnTimestamp) {
|
|
|
769 |
this.receiverReturnTimestamp = receiverReturnTimestamp;
|
|
|
770 |
}
|
| 27723 |
tejbeer |
771 |
|
| 21545 |
ashik.ali |
772 |
public LocalDateTime getReShipTimestamp() {
|
|
|
773 |
return reShipTimestamp;
|
|
|
774 |
}
|
| 27723 |
tejbeer |
775 |
|
| 21545 |
ashik.ali |
776 |
public void setReShipTimestamp(LocalDateTime reShipTimestamp) {
|
|
|
777 |
this.reShipTimestamp = reShipTimestamp;
|
|
|
778 |
}
|
| 27723 |
tejbeer |
779 |
|
| 21545 |
ashik.ali |
780 |
public LocalDateTime getRefundTimestamp() {
|
|
|
781 |
return refundTimestamp;
|
|
|
782 |
}
|
| 27723 |
tejbeer |
783 |
|
| 21545 |
ashik.ali |
784 |
public void setRefundTimestamp(LocalDateTime refundTimestamp) {
|
|
|
785 |
this.refundTimestamp = refundTimestamp;
|
|
|
786 |
}
|
| 27723 |
tejbeer |
787 |
|
| 21629 |
kshitij.so |
788 |
public Integer getPurchaseOrderId() {
|
| 21545 |
ashik.ali |
789 |
return purchaseOrderId;
|
|
|
790 |
}
|
| 27723 |
tejbeer |
791 |
|
| 21629 |
kshitij.so |
792 |
public void setPurchaseOrderId(Integer purchaseOrderId) {
|
| 21545 |
ashik.ali |
793 |
this.purchaseOrderId = purchaseOrderId;
|
|
|
794 |
}
|
| 27723 |
tejbeer |
795 |
|
| 21629 |
kshitij.so |
796 |
public Boolean isCod() {
|
| 21545 |
ashik.ali |
797 |
return cod;
|
|
|
798 |
}
|
| 27723 |
tejbeer |
799 |
|
| 21629 |
kshitij.so |
800 |
public void setCod(Boolean cod) {
|
| 21545 |
ashik.ali |
801 |
this.cod = cod;
|
|
|
802 |
}
|
| 27723 |
tejbeer |
803 |
|
| 21545 |
ashik.ali |
804 |
public LocalDateTime getVerificationTimestamp() {
|
|
|
805 |
return verificationTimestamp;
|
|
|
806 |
}
|
| 27723 |
tejbeer |
807 |
|
| 21545 |
ashik.ali |
808 |
public void setVerificationTimestamp(LocalDateTime verificationTimestamp) {
|
|
|
809 |
this.verificationTimestamp = verificationTimestamp;
|
|
|
810 |
}
|
| 27723 |
tejbeer |
811 |
|
| 21545 |
ashik.ali |
812 |
public String getRefundBy() {
|
|
|
813 |
return refundBy;
|
|
|
814 |
}
|
| 27723 |
tejbeer |
815 |
|
| 21545 |
ashik.ali |
816 |
public void setRefundBy(String refundBy) {
|
|
|
817 |
this.refundBy = refundBy;
|
|
|
818 |
}
|
| 27723 |
tejbeer |
819 |
|
| 21545 |
ashik.ali |
820 |
public String getRefundReason() {
|
|
|
821 |
return refundReason;
|
|
|
822 |
}
|
| 27723 |
tejbeer |
823 |
|
| 21545 |
ashik.ali |
824 |
public void setRefundReason(String refundReason) {
|
|
|
825 |
this.refundReason = refundReason;
|
|
|
826 |
}
|
| 27723 |
tejbeer |
827 |
|
|
|
828 |
/*
|
|
|
829 |
* public DelayReason getDelayReason() { return delayReason; } public void
|
|
|
830 |
* setDelayReason(DelayReason delayReason) { this.delayReason = delayReason; }
|
|
|
831 |
*/
|
| 21545 |
ashik.ali |
832 |
public LocalDateTime getCodReconciliationTimestamp() {
|
|
|
833 |
return codReconciliationTimestamp;
|
|
|
834 |
}
|
| 27723 |
tejbeer |
835 |
|
| 21545 |
ashik.ali |
836 |
public void setCodReconciliationTimestamp(LocalDateTime codReconciliationTimestamp) {
|
|
|
837 |
this.codReconciliationTimestamp = codReconciliationTimestamp;
|
|
|
838 |
}
|
| 27723 |
tejbeer |
839 |
|
| 21629 |
kshitij.so |
840 |
public Integer getPreviousStatus() {
|
| 21545 |
ashik.ali |
841 |
return previousStatus;
|
|
|
842 |
}
|
| 27723 |
tejbeer |
843 |
|
| 21629 |
kshitij.so |
844 |
public void setPreviousStatus(Integer previousStatus) {
|
| 21545 |
ashik.ali |
845 |
this.previousStatus = previousStatus;
|
|
|
846 |
}
|
| 27723 |
tejbeer |
847 |
|
| 21629 |
kshitij.so |
848 |
public Integer getVendorId() {
|
| 21545 |
ashik.ali |
849 |
return vendorId;
|
|
|
850 |
}
|
| 27723 |
tejbeer |
851 |
|
| 21629 |
kshitij.so |
852 |
public void setVendorId(Integer vendorId) {
|
| 21545 |
ashik.ali |
853 |
this.vendorId = vendorId;
|
|
|
854 |
}
|
| 27723 |
tejbeer |
855 |
|
| 21545 |
ashik.ali |
856 |
public String getDelayReasonText() {
|
|
|
857 |
return delayReasonText;
|
|
|
858 |
}
|
| 27723 |
tejbeer |
859 |
|
| 21545 |
ashik.ali |
860 |
public void setDelayReasonText(String delayReasonText) {
|
|
|
861 |
this.delayReasonText = delayReasonText;
|
|
|
862 |
}
|
| 27723 |
tejbeer |
863 |
|
| 21629 |
kshitij.so |
864 |
public Integer getDoaLogisticsProviderId() {
|
| 21545 |
ashik.ali |
865 |
return doaLogisticsProviderId;
|
|
|
866 |
}
|
| 27723 |
tejbeer |
867 |
|
| 21629 |
kshitij.so |
868 |
public void setDoaLogisticsProviderId(Integer doaLogisticsProviderId) {
|
| 21545 |
ashik.ali |
869 |
this.doaLogisticsProviderId = doaLogisticsProviderId;
|
|
|
870 |
}
|
| 27723 |
tejbeer |
871 |
|
| 21629 |
kshitij.so |
872 |
public Boolean isVendorPaid() {
|
| 21545 |
ashik.ali |
873 |
return vendorPaid;
|
|
|
874 |
}
|
| 27723 |
tejbeer |
875 |
|
| 21629 |
kshitij.so |
876 |
public void setVendorPaid(Boolean vendorPaid) {
|
| 21545 |
ashik.ali |
877 |
this.vendorPaid = vendorPaid;
|
|
|
878 |
}
|
| 27723 |
tejbeer |
879 |
|
| 21545 |
ashik.ali |
880 |
public LocalDateTime getLocalConnectedTimestamp() {
|
|
|
881 |
return localConnectedTimestamp;
|
|
|
882 |
}
|
| 27723 |
tejbeer |
883 |
|
| 21545 |
ashik.ali |
884 |
public void setLocalConnectedTimestamp(LocalDateTime localConnectedTimestamp) {
|
|
|
885 |
this.localConnectedTimestamp = localConnectedTimestamp;
|
|
|
886 |
}
|
| 27723 |
tejbeer |
887 |
|
| 21545 |
ashik.ali |
888 |
public LocalDateTime getReachedDestinationTimestamp() {
|
|
|
889 |
return reachedDestinationTimestamp;
|
|
|
890 |
}
|
| 27723 |
tejbeer |
891 |
|
| 21545 |
ashik.ali |
892 |
public void setReachedDestinationTimestamp(LocalDateTime reachedDestinationTimestamp) {
|
|
|
893 |
this.reachedDestinationTimestamp = reachedDestinationTimestamp;
|
|
|
894 |
}
|
| 27723 |
tejbeer |
895 |
|
| 21545 |
ashik.ali |
896 |
public LocalDateTime getFirstDlvyatmpTimestamp() {
|
|
|
897 |
return firstDlvyatmpTimestamp;
|
|
|
898 |
}
|
| 27723 |
tejbeer |
899 |
|
| 21545 |
ashik.ali |
900 |
public void setFirstDlvyatmpTimestamp(LocalDateTime firstDlvyatmpTimestamp) {
|
|
|
901 |
this.firstDlvyatmpTimestamp = firstDlvyatmpTimestamp;
|
|
|
902 |
}
|
| 27723 |
tejbeer |
903 |
|
| 21629 |
kshitij.so |
904 |
public Integer getOriginalOrderId() {
|
| 21545 |
ashik.ali |
905 |
return originalOrderId;
|
|
|
906 |
}
|
| 27723 |
tejbeer |
907 |
|
| 21629 |
kshitij.so |
908 |
public void setOriginalOrderId(Integer originalOrderId) {
|
| 21545 |
ashik.ali |
909 |
this.originalOrderId = originalOrderId;
|
|
|
910 |
}
|
| 27723 |
tejbeer |
911 |
|
| 21629 |
kshitij.so |
912 |
public Integer getFulfilmentWarehouseId() {
|
| 21545 |
ashik.ali |
913 |
return fulfilmentWarehouseId;
|
|
|
914 |
}
|
| 27723 |
tejbeer |
915 |
|
| 21629 |
kshitij.so |
916 |
public void setFulfilmentWarehouseId(Integer fulfilmentWarehouseId) {
|
| 21545 |
ashik.ali |
917 |
this.fulfilmentWarehouseId = fulfilmentWarehouseId;
|
|
|
918 |
}
|
| 27723 |
tejbeer |
919 |
|
| 21629 |
kshitij.so |
920 |
public Integer getOrderType() {
|
| 21545 |
ashik.ali |
921 |
return orderType;
|
|
|
922 |
}
|
| 27723 |
tejbeer |
923 |
|
| 21629 |
kshitij.so |
924 |
public void setOrderType(Integer orderType) {
|
| 21545 |
ashik.ali |
925 |
this.orderType = orderType;
|
|
|
926 |
}
|
| 27723 |
tejbeer |
927 |
|
| 21629 |
kshitij.so |
928 |
public Integer getPickupStoreId() {
|
| 21545 |
ashik.ali |
929 |
return pickupStoreId;
|
|
|
930 |
}
|
| 27723 |
tejbeer |
931 |
|
| 21629 |
kshitij.so |
932 |
public void setPickupStoreId(Integer pickupStoreId) {
|
| 21545 |
ashik.ali |
933 |
this.pickupStoreId = pickupStoreId;
|
|
|
934 |
}
|
| 27723 |
tejbeer |
935 |
|
| 21629 |
kshitij.so |
936 |
public Boolean isOtg() {
|
| 21545 |
ashik.ali |
937 |
return otg;
|
|
|
938 |
}
|
| 27723 |
tejbeer |
939 |
|
| 21629 |
kshitij.so |
940 |
public void setOtg(Boolean otg) {
|
| 21545 |
ashik.ali |
941 |
this.otg = otg;
|
|
|
942 |
}
|
| 27723 |
tejbeer |
943 |
|
| 21545 |
ashik.ali |
944 |
public LocalDateTime getCourierDeliveryTimestamp() {
|
|
|
945 |
return courierDeliveryTimestamp;
|
|
|
946 |
}
|
| 27723 |
tejbeer |
947 |
|
| 21545 |
ashik.ali |
948 |
public void setCourierDeliveryTimestamp(LocalDateTime courierDeliveryTimestamp) {
|
|
|
949 |
this.courierDeliveryTimestamp = courierDeliveryTimestamp;
|
|
|
950 |
}
|
| 27723 |
tejbeer |
951 |
|
| 21629 |
kshitij.so |
952 |
public Integer getInsurer() {
|
| 21545 |
ashik.ali |
953 |
return insurer;
|
|
|
954 |
}
|
| 27723 |
tejbeer |
955 |
|
| 21629 |
kshitij.so |
956 |
public void setInsurer(Integer insurer) {
|
| 21545 |
ashik.ali |
957 |
this.insurer = insurer;
|
|
|
958 |
}
|
| 27723 |
tejbeer |
959 |
|
| 21629 |
kshitij.so |
960 |
public Float getInsuranceAmount() {
|
| 21545 |
ashik.ali |
961 |
return insuranceAmount;
|
|
|
962 |
}
|
| 27723 |
tejbeer |
963 |
|
| 21629 |
kshitij.so |
964 |
public void setInsuranceAmount(Float insuranceAmount) {
|
| 21545 |
ashik.ali |
965 |
this.insuranceAmount = insuranceAmount;
|
|
|
966 |
}
|
| 27723 |
tejbeer |
967 |
|
| 21629 |
kshitij.so |
968 |
public Integer getFreebieItemId() {
|
| 21545 |
ashik.ali |
969 |
return freebieItemId;
|
|
|
970 |
}
|
| 27723 |
tejbeer |
971 |
|
| 21629 |
kshitij.so |
972 |
public void setFreebieItemId(Integer freebieItemId) {
|
| 21545 |
ashik.ali |
973 |
this.freebieItemId = freebieItemId;
|
|
|
974 |
}
|
| 27723 |
tejbeer |
975 |
|
| 21629 |
kshitij.so |
976 |
public Integer getSource() {
|
| 21545 |
ashik.ali |
977 |
return source;
|
|
|
978 |
}
|
| 27723 |
tejbeer |
979 |
|
| 21629 |
kshitij.so |
980 |
public void setSource(Integer source) {
|
| 21545 |
ashik.ali |
981 |
this.source = source;
|
|
|
982 |
}
|
| 27723 |
tejbeer |
983 |
|
| 21629 |
kshitij.so |
984 |
public Float getAdvanceAmount() {
|
| 21545 |
ashik.ali |
985 |
return advanceAmount;
|
|
|
986 |
}
|
| 27723 |
tejbeer |
987 |
|
| 21629 |
kshitij.so |
988 |
public void setAdvanceAmount(Float advanceAmount) {
|
| 21545 |
ashik.ali |
989 |
this.advanceAmount = advanceAmount;
|
|
|
990 |
}
|
| 27723 |
tejbeer |
991 |
|
| 21629 |
kshitij.so |
992 |
public Integer getStoreId() {
|
| 21545 |
ashik.ali |
993 |
return storeId;
|
|
|
994 |
}
|
| 27723 |
tejbeer |
995 |
|
| 21629 |
kshitij.so |
996 |
public void setStoreId(Integer storeId) {
|
| 21545 |
ashik.ali |
997 |
this.storeId = storeId;
|
|
|
998 |
}
|
| 27723 |
tejbeer |
999 |
|
| 21629 |
kshitij.so |
1000 |
public Integer getProductCondition() {
|
| 21545 |
ashik.ali |
1001 |
return productCondition;
|
|
|
1002 |
}
|
| 27723 |
tejbeer |
1003 |
|
| 21629 |
kshitij.so |
1004 |
public void setProductCondition(Integer productCondition) {
|
| 21545 |
ashik.ali |
1005 |
this.productCondition = productCondition;
|
|
|
1006 |
}
|
| 27723 |
tejbeer |
1007 |
|
| 21629 |
kshitij.so |
1008 |
public Integer getDataProtectionInsurer() {
|
| 21545 |
ashik.ali |
1009 |
return dataProtectionInsurer;
|
|
|
1010 |
}
|
| 27723 |
tejbeer |
1011 |
|
| 21629 |
kshitij.so |
1012 |
public void setDataProtectionInsurer(Integer dataProtectionInsurer) {
|
| 21545 |
ashik.ali |
1013 |
this.dataProtectionInsurer = dataProtectionInsurer;
|
|
|
1014 |
}
|
| 27723 |
tejbeer |
1015 |
|
| 21629 |
kshitij.so |
1016 |
public Integer getDataProtectionAmount() {
|
| 21545 |
ashik.ali |
1017 |
return dataProtectionAmount;
|
|
|
1018 |
}
|
| 27723 |
tejbeer |
1019 |
|
| 21629 |
kshitij.so |
1020 |
public void setDataProtectionAmount(Integer dataProtectionAmount) {
|
| 21545 |
ashik.ali |
1021 |
this.dataProtectionAmount = dataProtectionAmount;
|
|
|
1022 |
}
|
| 27723 |
tejbeer |
1023 |
|
| 21545 |
ashik.ali |
1024 |
public TaxType getTaxType() {
|
|
|
1025 |
return taxType;
|
|
|
1026 |
}
|
| 27723 |
tejbeer |
1027 |
|
| 21545 |
ashik.ali |
1028 |
public void setTaxType(TaxType taxType) {
|
|
|
1029 |
this.taxType = taxType;
|
|
|
1030 |
}
|
| 27723 |
tejbeer |
1031 |
|
| 21545 |
ashik.ali |
1032 |
public String getLogisticsTransactionId() {
|
|
|
1033 |
return logisticsTransactionId;
|
|
|
1034 |
}
|
| 27723 |
tejbeer |
1035 |
|
| 21545 |
ashik.ali |
1036 |
public void setLogisticsTransactionId(String logisticsTransactionId) {
|
|
|
1037 |
this.logisticsTransactionId = logisticsTransactionId;
|
|
|
1038 |
}
|
| 27723 |
tejbeer |
1039 |
|
| 21629 |
kshitij.so |
1040 |
public Float getShippingCost() {
|
| 21545 |
ashik.ali |
1041 |
return shippingCost;
|
|
|
1042 |
}
|
| 27723 |
tejbeer |
1043 |
|
| 21629 |
kshitij.so |
1044 |
public void setShippingCost(Float shippingCost) {
|
| 21545 |
ashik.ali |
1045 |
this.shippingCost = shippingCost;
|
|
|
1046 |
}
|
| 27723 |
tejbeer |
1047 |
|
| 21629 |
kshitij.so |
1048 |
public Float getCodCharges() {
|
| 21545 |
ashik.ali |
1049 |
return codCharges;
|
|
|
1050 |
}
|
| 27723 |
tejbeer |
1051 |
|
| 21629 |
kshitij.so |
1052 |
public void setCodCharges(Float codCharges) {
|
| 21545 |
ashik.ali |
1053 |
this.codCharges = codCharges;
|
|
|
1054 |
}
|
| 27723 |
tejbeer |
1055 |
|
| 21629 |
kshitij.so |
1056 |
public Float getWalletAmount() {
|
| 21545 |
ashik.ali |
1057 |
return walletAmount;
|
|
|
1058 |
}
|
| 27723 |
tejbeer |
1059 |
|
| 21629 |
kshitij.so |
1060 |
public void setWalletAmount(Float walletAmount) {
|
| 21545 |
ashik.ali |
1061 |
this.walletAmount = walletAmount;
|
|
|
1062 |
}
|
| 27723 |
tejbeer |
1063 |
|
| 21629 |
kshitij.so |
1064 |
public Float getNetPayableAmount() {
|
| 21545 |
ashik.ali |
1065 |
return netPayableAmount;
|
|
|
1066 |
}
|
| 27723 |
tejbeer |
1067 |
|
| 21629 |
kshitij.so |
1068 |
public void setNetPayableAmount(Float netPayableAmount) {
|
| 21545 |
ashik.ali |
1069 |
this.netPayableAmount = netPayableAmount;
|
|
|
1070 |
}
|
| 27723 |
tejbeer |
1071 |
|
| 21629 |
kshitij.so |
1072 |
public Float getShippingRefund() {
|
| 21545 |
ashik.ali |
1073 |
return shippingRefund;
|
|
|
1074 |
}
|
| 27723 |
tejbeer |
1075 |
|
| 21629 |
kshitij.so |
1076 |
public void setShippingRefund(Float shippingRefund) {
|
| 21545 |
ashik.ali |
1077 |
this.shippingRefund = shippingRefund;
|
|
|
1078 |
}
|
| 27723 |
tejbeer |
1079 |
|
| 21653 |
ashik.ali |
1080 |
public LineItem getLineItem() {
|
|
|
1081 |
return lineItem;
|
|
|
1082 |
}
|
| 27723 |
tejbeer |
1083 |
|
| 21653 |
ashik.ali |
1084 |
public void setLineItem(LineItem lineItem) {
|
|
|
1085 |
this.lineItem = lineItem;
|
|
|
1086 |
}
|
| 27723 |
tejbeer |
1087 |
|
|
|
1088 |
public String getFormattedDate() {
|
|
|
1089 |
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("dd-MM-yyyy HH:mm");
|
| 23075 |
ashik.ali |
1090 |
return this.createTimestamp.format(formatter);
|
| 27723 |
tejbeer |
1091 |
}
|
|
|
1092 |
|
| 21545 |
ashik.ali |
1093 |
@Override
|
| 21924 |
ashik.ali |
1094 |
public int hashCode() {
|
|
|
1095 |
final int prime = 31;
|
|
|
1096 |
int result = 1;
|
|
|
1097 |
result = prime * result + ((id == null) ? 0 : id.hashCode());
|
|
|
1098 |
return result;
|
|
|
1099 |
}
|
| 27723 |
tejbeer |
1100 |
|
| 21924 |
ashik.ali |
1101 |
@Override
|
|
|
1102 |
public boolean equals(Object obj) {
|
|
|
1103 |
if (this == obj)
|
|
|
1104 |
return true;
|
|
|
1105 |
if (obj == null)
|
|
|
1106 |
return false;
|
|
|
1107 |
if (getClass() != obj.getClass())
|
|
|
1108 |
return false;
|
|
|
1109 |
Order other = (Order) obj;
|
|
|
1110 |
if (id == null) {
|
|
|
1111 |
if (other.id != null)
|
|
|
1112 |
return false;
|
|
|
1113 |
} else if (!id.equals(other.id))
|
|
|
1114 |
return false;
|
|
|
1115 |
return true;
|
|
|
1116 |
}
|
| 27723 |
tejbeer |
1117 |
|
| 21924 |
ashik.ali |
1118 |
@Override
|
| 21545 |
ashik.ali |
1119 |
public String toString() {
|
|
|
1120 |
return "Order [id=" + id + ", warehouseId=" + warehouseId + ", sellerId=" + sellerId + ", warehouseAddressId="
|
|
|
1121 |
+ warehouseAddressId + ", logisticsProviderId=" + logisticsProviderId + ", airwayBillNumber="
|
|
|
1122 |
+ airwayBillNumber + ", trackingId=" + trackingId + ", expectedDeliveryTime=" + expectedDeliveryTime
|
|
|
1123 |
+ ", promisedDeliveryTime=" + promisedDeliveryTime + ", expectedShippingTime=" + expectedShippingTime
|
| 27723 |
tejbeer |
1124 |
+ ", promisedShippingTime=" + promisedShippingTime + ", partnerPurchaseTimestamp=" + partnerGrnTimestamp
|
|
|
1125 |
+ ", retailerId=" + retailerId + ", retailerName=" + retailerName + ", retailerMobileNumber="
|
|
|
1126 |
+ retailerMobileNumber + ", retailerPinCode=" + retailerPinCode + ", retailerAddress1="
|
|
|
1127 |
+ retailerAddress1 + ", retailerAddress2=" + retailerAddress2 + ", retailerCity=" + retailerCity
|
|
|
1128 |
+ ", retailerState=" + retailerState + ", retailerEmailId=" + retailerEmailId + ", status=" + status
|
|
|
1129 |
+ ", statusDescription=" + statusDescription + ", totalAmount=" + totalAmount + ", gvAmount=" + gvAmount
|
|
|
1130 |
+ ", totalWeight=" + totalWeight + ", invoiceNumber=" + invoiceNumber + ", billedBy=" + billedBy
|
|
|
1131 |
+ ", createTimestamp=" + createTimestamp + ", acceptedTimestamp=" + acceptedTimestamp
|
|
|
1132 |
+ ", billingTimestamp=" + billingTimestamp + ", shippingTimestamp=" + shippingTimestamp
|
|
|
1133 |
+ ", pickupTimestamp=" + pickupTimestamp + ", deliveryTimestamp=" + deliveryTimestamp
|
|
|
1134 |
+ ", outOfStockTimestamp=" + outOfStockTimestamp + ", transactionId=" + transactionId + ", receiver="
|
|
|
1135 |
+ receiver + ", batchNumber=" + batchNumber + ", serialNumber=" + serialNumber + ", doaFlag=" + doaFlag
|
|
|
1136 |
+ ", pickupRequestNumber=" + pickupRequestNumber + ", newOrderId=" + newOrderId + ", doaAuthTimestamp="
|
|
|
1137 |
+ doaAuthTimestamp + ", doaPickupTimestamp=" + doaPickupTimestamp + ", receiverReturnTimestamp="
|
|
|
1138 |
+ receiverReturnTimestamp + ", reShipTimestamp=" + reShipTimestamp + ", refundTimestamp="
|
|
|
1139 |
+ refundTimestamp + ", purchaseOrderId=" + purchaseOrderId + ", cod=" + cod + ", verificationTimestamp="
|
|
|
1140 |
+ verificationTimestamp + ", refundBy=" + refundBy + ", refundReason=" + refundReason
|
|
|
1141 |
+ ", codReconciliationTimestamp=" + codReconciliationTimestamp + ", previousStatus=" + previousStatus
|
|
|
1142 |
+ ", vendorId=" + vendorId + ", delayReasonText=" + delayReasonText + ", doaLogisticsProviderId="
|
|
|
1143 |
+ doaLogisticsProviderId + ", vendorPaid=" + vendorPaid + ", localConnectedTimestamp="
|
|
|
1144 |
+ localConnectedTimestamp + ", reachedDestinationTimestamp=" + reachedDestinationTimestamp
|
|
|
1145 |
+ ", firstDlvyatmpTimestamp=" + firstDlvyatmpTimestamp + ", originalOrderId=" + originalOrderId
|
|
|
1146 |
+ ", fulfilmentWarehouseId=" + fulfilmentWarehouseId + ", orderType=" + orderType + ", pickupStoreId="
|
|
|
1147 |
+ pickupStoreId + ", otg=" + otg + ", courierDeliveryTimestamp=" + courierDeliveryTimestamp
|
|
|
1148 |
+ ", insurer=" + insurer + ", insuranceAmount=" + insuranceAmount + ", freebieItemId=" + freebieItemId
|
|
|
1149 |
+ ", source=" + source + ", advanceAmount=" + advanceAmount + ", storeId=" + storeId
|
|
|
1150 |
+ ", productCondition=" + productCondition + ", dataProtectionInsurer=" + dataProtectionInsurer
|
|
|
1151 |
+ ", dataProtectionAmount=" + dataProtectionAmount + ", taxType=" + taxType
|
|
|
1152 |
+ ", logisticsTransactionId=" + logisticsTransactionId + ", shippingCost=" + shippingCost
|
|
|
1153 |
+ ", codCharges=" + codCharges + ", walletAmount=" + walletAmount + ", netPayableAmount="
|
| 23884 |
amit.gupta |
1154 |
+ netPayableAmount + ", shippingRefund=" + shippingRefund + ", lineItem=" + lineItem + "]";
|
| 21545 |
ashik.ali |
1155 |
}
|
| 27723 |
tejbeer |
1156 |
|
| 21545 |
ashik.ali |
1157 |
}
|