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