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