| 14450 |
amit.gupta |
1 |
'''
|
|
|
2 |
Created on Mar 13, 2015
|
|
|
3 |
|
|
|
4 |
@author: amit
|
|
|
5 |
'''
|
|
|
6 |
from datetime import date, datetime, timedelta
|
|
|
7 |
from dtr.storage.Mysql import getOrdersAfterDate
|
|
|
8 |
from email import encoders
|
|
|
9 |
from email.mime.base import MIMEBase
|
|
|
10 |
from email.mime.multipart import MIMEMultipart
|
|
|
11 |
from email.mime.text import MIMEText
|
|
|
12 |
from pymongo.mongo_client import MongoClient
|
| 14460 |
amit.gupta |
13 |
from xlrd import open_workbook
|
|
|
14 |
from xlwt.Workbook import Workbook
|
| 14450 |
amit.gupta |
15 |
import MySQLdb
|
| 14460 |
amit.gupta |
16 |
from xlutils.copy import copy
|
| 14450 |
amit.gupta |
17 |
import smtplib
|
|
|
18 |
import time
|
|
|
19 |
import xlwt
|
| 14460 |
amit.gupta |
20 |
#from xlwt import
|
| 14450 |
amit.gupta |
21 |
|
|
|
22 |
client = MongoClient('mongodb://localhost:27017/')
|
|
|
23 |
|
|
|
24 |
SENDER = "cnc.center@shop2020.in"
|
|
|
25 |
PASSWORD = "5h0p2o2o"
|
|
|
26 |
SUBJECT = "DTR User Segmentation report for " + date.today().isoformat()
|
|
|
27 |
SMTP_SERVER = "smtp.gmail.com"
|
|
|
28 |
SMTP_PORT = 587
|
|
|
29 |
|
| 14460 |
amit.gupta |
30 |
XLS_FILENAME = "dtrsourcesreco.xls"
|
|
|
31 |
boldStyle = xlwt.XFStyle()
|
|
|
32 |
f = xlwt.Font()
|
|
|
33 |
f.bold = True
|
|
|
34 |
boldStyle.font = f
|
|
|
35 |
i = -1
|
| 14450 |
amit.gupta |
36 |
def generateFlipkartReco():
|
| 14460 |
amit.gupta |
37 |
curs = getOrdersAfterDate(datetime.now() - timedelta(days=30), 2)
|
|
|
38 |
db = client.Dtr
|
|
|
39 |
rb = open_workbook(XLS_FILENAME)
|
|
|
40 |
wb = copy(rb)
|
|
|
41 |
#wb = xlwt.Workbook()
|
|
|
42 |
row = 0
|
|
|
43 |
worksheet = wb.add_sheet("Flipkart")
|
|
|
44 |
worksheet.write(row, inc(), 'Order Id', boldStyle)
|
|
|
45 |
worksheet.write(row, inc(), 'User Id', boldStyle)
|
| 14474 |
amit.gupta |
46 |
worksheet.write(row, inc(), 'Username', boldStyle)
|
| 14460 |
amit.gupta |
47 |
worksheet.write(row, inc(), 'Merchant Order Id', boldStyle)
|
|
|
48 |
worksheet.write(row, inc(), 'Product Title', boldStyle)
|
|
|
49 |
worksheet.write(row, inc(), 'Price', boldStyle)
|
|
|
50 |
worksheet.write(row, inc(), 'Quantity', boldStyle)
|
|
|
51 |
worksheet.write(row, inc(), 'Status', boldStyle)
|
|
|
52 |
worksheet.write(row, inc(), 'Detailed Status', boldStyle)
|
|
|
53 |
worksheet.write(row, inc(), 'Cashback Status', boldStyle)
|
|
|
54 |
worksheet.write(row, inc(), 'Our CashBack', boldStyle)
|
|
|
55 |
worksheet.write(row, inc(), 'Sale Date', boldStyle)
|
|
|
56 |
worksheet.write(row, inc(), 'SubtagId', boldStyle)
|
|
|
57 |
worksheet.write(row, inc(), 'Category', boldStyle)
|
|
|
58 |
worksheet.write(row, inc(), 'Aff PayOut', boldStyle)
|
|
|
59 |
worksheet.write(row, inc(), 'Aff Sale Amount', boldStyle)
|
|
|
60 |
worksheet.write(row, inc(), 'Aff Sale Date', boldStyle)
|
|
|
61 |
for row1 in curs:
|
|
|
62 |
orderId = row1[0]
|
|
|
63 |
order = db.merchantOrder.find_one({"orderId":orderId})
|
|
|
64 |
if order is None:
|
|
|
65 |
continue
|
|
|
66 |
saleTime = int(time.mktime(datetime.strptime(order['placedOn'], "%d %B, %Y %I:%M %p").replace(hour=0, minute=0, second=0, microsecond=0).timetuple()))
|
|
|
67 |
#saleTime1 = int(time.mktime((datetime.strptime(order['placedOn'], "%b %d, %Y %I:%M %p") + timedelta(seconds=-60)).timetuple()))
|
|
|
68 |
|
|
|
69 |
for subOrder in order['subOrders']:
|
| 14489 |
amit.gupta |
70 |
affs = list(db.flipkartOrderAffiliateInfo.find({"subOrders.productCode":subOrder.get("productCode"), "saleDateInt":saleTime}))
|
| 14460 |
amit.gupta |
71 |
row += 1
|
|
|
72 |
global i
|
|
|
73 |
i=-1
|
|
|
74 |
worksheet.write(row, inc(), orderId)
|
|
|
75 |
worksheet.write(row, inc(), row1[1])
|
| 14474 |
amit.gupta |
76 |
worksheet.write(row, inc(), row1[-1])
|
| 14460 |
amit.gupta |
77 |
worksheet.write(row, inc(), order['merchantOrderId'])
|
|
|
78 |
worksheet.write(row, inc(), subOrder['productTitle'])
|
|
|
79 |
worksheet.write(row, inc(), subOrder['amountPaid'])
|
|
|
80 |
worksheet.write(row, inc(), subOrder['quantity'])
|
|
|
81 |
worksheet.write(row, inc(), subOrder['status'])
|
|
|
82 |
worksheet.write(row, inc(), subOrder['detailedStatus'])
|
|
|
83 |
worksheet.write(row, inc(), subOrder['cashBackStatus'])
|
|
|
84 |
worksheet.write(row, inc(), subOrder['cashBackAmount'])
|
|
|
85 |
worksheet.write(row, inc(), subOrder['placedOn'])
|
|
|
86 |
worksheet.write(row, inc(), order['subTagId'])
|
|
|
87 |
for aff in affs:
|
| 14487 |
amit.gupta |
88 |
if aff['subTagId']== subOrder['subTagId']:
|
| 14460 |
amit.gupta |
89 |
worksheet.write(row, inc(), aff['category'])
|
|
|
90 |
worksheet.write(row, inc(), aff['payOut'])
|
|
|
91 |
worksheet.write(row, inc(), aff['saleAmount'])
|
|
|
92 |
worksheet.write(row, inc(), aff['saleDate'])
|
|
|
93 |
break
|
|
|
94 |
|
|
|
95 |
|
|
|
96 |
wb.save(XLS_FILENAME)
|
| 14450 |
amit.gupta |
97 |
def generateSnapDealReco():
|
| 14460 |
amit.gupta |
98 |
curs = getOrdersAfterDate(datetime.now() - timedelta(days=30), 3)
|
| 14450 |
amit.gupta |
99 |
db = client.Dtr
|
|
|
100 |
|
| 14487 |
amit.gupta |
101 |
matchedList = []
|
| 14450 |
amit.gupta |
102 |
workbook = xlwt.Workbook()
|
| 14501 |
amit.gupta |
103 |
worksheet = workbook.add_sheet("Snapdeal Reconciled")
|
|
|
104 |
worksheet1 = workbook.add_sheet("Snapdeal Reconciled All")
|
|
|
105 |
setHeaders(worksheet, worksheet1)
|
| 14450 |
amit.gupta |
106 |
row = 0
|
| 14501 |
amit.gupta |
107 |
anotherrow = 0
|
| 14450 |
amit.gupta |
108 |
for row1 in curs:
|
|
|
109 |
orderId = row1[0]
|
|
|
110 |
order = db.merchantOrder.find_one({"orderId":orderId})
|
|
|
111 |
if order is None:
|
|
|
112 |
continue
|
| 14496 |
amit.gupta |
113 |
#saleTime = int(time.mktime(datetime.strptime(order['placedOn'], "%b %d, %Y, %I:%M %p").timetuple()))
|
| 14450 |
amit.gupta |
114 |
aff = list(db.snapdealOrderAffiliateInfo.find({"subTagId":order["subTagId"]}))
|
| 14501 |
amit.gupta |
115 |
anotherrow += 1
|
| 14488 |
amit.gupta |
116 |
if len(aff) > 0 and order["subTagId"] not in matchedList:
|
| 14501 |
amit.gupta |
117 |
matchedList.append(order["subTagId"])
|
|
|
118 |
aff[0]['reconciled'] = True
|
|
|
119 |
db.snapdealOrderAffiliateInfo.save(aff[0])
|
|
|
120 |
order['reconciled'] = True
|
|
|
121 |
db.merchantOrder.save(order)
|
|
|
122 |
row += 1
|
|
|
123 |
global i
|
|
|
124 |
i=-1
|
|
|
125 |
worksheet.write(row, inc(), orderId)
|
|
|
126 |
worksheet1.write(anotherrow, i, orderId)
|
|
|
127 |
worksheet.write(row, inc(), row1[1])
|
|
|
128 |
worksheet1.write(anotherrow, i, row1[1])
|
|
|
129 |
worksheet.write(row, inc(), row1[-1])
|
|
|
130 |
worksheet1.write(anotherrow, i, row1[-1])
|
|
|
131 |
worksheet.write(row, inc(), order['merchantOrderId'])
|
|
|
132 |
worksheet1.write(anotherrow, i, order['merchantOrderId'])
|
|
|
133 |
worksheet.write(row, inc(), order['subTagId'])
|
|
|
134 |
worksheet1.write(anotherrow, i, order['subTagId'])
|
|
|
135 |
worksheet.write(row, inc(), order['placedOn'])
|
|
|
136 |
worksheet1.write(anotherrow, i, order['placedOn'])
|
|
|
137 |
worksheet.write(row, inc(), int(order['paidAmount']))
|
|
|
138 |
worksheet1.write(anotherrow, i, int(order['paidAmount']))
|
| 14500 |
amit.gupta |
139 |
if int(order["paidAmount"]) == aff[0]["saleAmount"]:
|
| 14501 |
amit.gupta |
140 |
worksheet.write(row, inc(), aff[0]['saleDate'])
|
|
|
141 |
worksheet1.write(anotherrow, i, aff[0]['saleDate'])
|
|
|
142 |
worksheet.write(row, inc(), aff[0]['saleAmount'])
|
|
|
143 |
worksheet1.write(anotherrow, i, aff[0]['saleAmount'])
|
|
|
144 |
worksheet.write(row, inc(), aff[0]['payOut'])
|
|
|
145 |
worksheet1.write(anotherrow, i, aff[0]['payOut'])
|
|
|
146 |
k = i
|
|
|
147 |
for subOrder in order['subOrders']:
|
|
|
148 |
i = k
|
|
|
149 |
worksheet.write(row, inc(), subOrder['productTitle'])
|
|
|
150 |
worksheet1.write(anotherrow, i, subOrder['productTitle'])
|
|
|
151 |
worksheet.write(row, inc(), subOrder['amountPaid'])
|
|
|
152 |
worksheet1.write(anotherrow, i, subOrder['amountPaid'])
|
|
|
153 |
worksheet.write(row, inc(), subOrder['quantity'])
|
|
|
154 |
worksheet1.write(anotherrow, i, subOrder['quantity'])
|
|
|
155 |
worksheet.write(row, inc(), subOrder['status'])
|
|
|
156 |
worksheet1.write(anotherrow, i, subOrder['status'])
|
|
|
157 |
worksheet.write(row, inc(), subOrder['cashBackStatus'])
|
|
|
158 |
worksheet1.write(anotherrow, i, subOrder['cashBackStatus'])
|
|
|
159 |
worksheet.write(row, inc(), subOrder['cashBackAmount'])
|
|
|
160 |
worksheet1.write(anotherrow, i, subOrder['cashBackAmount'])
|
|
|
161 |
else:
|
|
|
162 |
worksheet1.write(anotherrow, inc(), orderId)
|
|
|
163 |
worksheet1.write(anotherrow, inc(), row1[1])
|
|
|
164 |
worksheet1.write(anotherrow, inc(), row1[-1])
|
|
|
165 |
worksheet1.write(anotherrow, inc(), order['merchantOrderId'])
|
|
|
166 |
worksheet1.write(anotherrow, inc(), order['subTagId'])
|
|
|
167 |
worksheet1.write(anotherrow, inc(), order['placedOn'])
|
|
|
168 |
worksheet1.write(anotherrow, inc(), int(order['paidAmount']))
|
|
|
169 |
worksheet1.write(anotherrow, inc(), "")
|
|
|
170 |
worksheet1.write(anotherrow, inc(), "")
|
|
|
171 |
worksheet1.write(anotherrow, inc(), "")
|
|
|
172 |
worksheet1.write(anotherrow, inc(), 'Product Title', boldStyle)
|
|
|
173 |
worksheet1.write(anotherrow, inc(), 'Price', boldStyle)
|
|
|
174 |
worksheet1.write(anotherrow, inc(), 'Amoun Paid', boldStyle)
|
|
|
175 |
worksheet1.write(anotherrow, inc(), 'Status', boldStyle)
|
|
|
176 |
worksheet1.write(anotherrow, inc(), 'Cashback Status', boldStyle)
|
|
|
177 |
worksheet1.write(anotherrow, inc(), 'CashBack', boldStyle)
|
|
|
178 |
k = i
|
|
|
179 |
for subOrder in order['subOrders']:
|
|
|
180 |
i = k
|
|
|
181 |
worksheet.write(anotherrow, inc(), subOrder['productTitle'])
|
|
|
182 |
worksheet.write(anotherrow, inc(), subOrder['amountPaid'])
|
|
|
183 |
worksheet.write(anotherrow, inc(), subOrder['quantity'])
|
|
|
184 |
worksheet.write(anotherrow, inc(), subOrder['status'])
|
|
|
185 |
worksheet.write(anotherrow, inc(), subOrder['cashBackStatus'])
|
|
|
186 |
worksheet.write(anotherrow, inc(), subOrder['cashBackAmount'])
|
|
|
187 |
|
|
|
188 |
|
| 14460 |
amit.gupta |
189 |
workbook.save(XLS_FILENAME)
|
| 14450 |
amit.gupta |
190 |
|
|
|
191 |
def sendmail(email, message, title):
|
|
|
192 |
if email == "":
|
|
|
193 |
return
|
|
|
194 |
mailServer = smtplib.SMTP(SMTP_SERVER, SMTP_PORT)
|
|
|
195 |
mailServer.ehlo()
|
|
|
196 |
mailServer.starttls()
|
|
|
197 |
mailServer.ehlo()
|
|
|
198 |
|
|
|
199 |
# Create the container (outer) email message.
|
|
|
200 |
msg = MIMEMultipart()
|
|
|
201 |
msg['Subject'] = title
|
|
|
202 |
msg.preamble = title
|
|
|
203 |
html_msg = MIMEText(message, 'html')
|
|
|
204 |
msg.attach(html_msg)
|
|
|
205 |
|
|
|
206 |
#snapdeal more to be added here
|
|
|
207 |
snapdeal = MIMEBase('application', 'vnd.ms-excel')
|
| 14460 |
amit.gupta |
208 |
snapdeal.set_payload(file(XLS_FILENAME).read())
|
| 14450 |
amit.gupta |
209 |
encoders.encode_base64(snapdeal)
|
| 14460 |
amit.gupta |
210 |
snapdeal.add_header('Content-Disposition', 'attachment;filename=' + XLS_FILENAME)
|
| 14450 |
amit.gupta |
211 |
msg.attach(snapdeal)
|
|
|
212 |
|
|
|
213 |
|
|
|
214 |
email.append('amit.gupta@shop2020.in')
|
|
|
215 |
MAILTO = email
|
|
|
216 |
mailServer.login(SENDER, PASSWORD)
|
|
|
217 |
mailServer.sendmail(PASSWORD, MAILTO, msg.as_string())
|
|
|
218 |
|
| 14501 |
amit.gupta |
219 |
def setHeaders(worksheet, worksheet1):
|
|
|
220 |
row = 0
|
|
|
221 |
global i
|
|
|
222 |
i=-1
|
|
|
223 |
worksheet.write(row, inc(), 'Order Id', boldStyle)
|
|
|
224 |
worksheet.write(row, inc(), 'User Id', boldStyle)
|
|
|
225 |
worksheet.write(row, inc(), 'Username', boldStyle)
|
|
|
226 |
worksheet.write(row, inc(), 'Merchant Order Id', boldStyle)
|
|
|
227 |
worksheet.write(row, inc(), 'SubtagId', boldStyle)
|
|
|
228 |
worksheet.write(row, inc(), 'Sale Date', boldStyle)
|
|
|
229 |
worksheet.write(row, inc(), 'Sale Amount', boldStyle)
|
|
|
230 |
worksheet.write(row, inc(), 'Aff Sale Date', boldStyle)
|
|
|
231 |
worksheet.write(row, inc(), 'Aff Sale Amt', boldStyle)
|
|
|
232 |
worksheet.write(row, inc(), 'Aff PayOut', boldStyle)
|
|
|
233 |
worksheet.write(row, inc(), 'Product Title', boldStyle)
|
|
|
234 |
worksheet.write(row, inc(), 'Price', boldStyle)
|
|
|
235 |
worksheet.write(row, inc(), 'Quantity', boldStyle)
|
|
|
236 |
worksheet.write(row, inc(), 'Status', boldStyle)
|
|
|
237 |
worksheet.write(row, inc(), 'Cashback Status', boldStyle)
|
|
|
238 |
worksheet.write(row, inc(), 'CashBack', boldStyle)
|
|
|
239 |
|
|
|
240 |
worksheet1.write(row, inc(), 'Order Id', boldStyle)
|
|
|
241 |
worksheet1.write(row, inc(), 'User Id', boldStyle)
|
|
|
242 |
worksheet1.write(row, inc(), 'Username', boldStyle)
|
|
|
243 |
worksheet1.write(row, inc(), 'Merchant Order Id', boldStyle)
|
|
|
244 |
worksheet1.write(row, inc(), 'SubtagId', boldStyle)
|
|
|
245 |
worksheet1.write(row, inc(), 'Sale Date', boldStyle)
|
|
|
246 |
worksheet1.write(row, inc(), 'Sale Amount', boldStyle)
|
|
|
247 |
worksheet1.write(row, inc(), 'Aff Sale Date', boldStyle)
|
|
|
248 |
worksheet1.write(row, inc(), 'Aff Sale Amt', boldStyle)
|
|
|
249 |
worksheet1.write(row, inc(), 'Aff PayOut', boldStyle)
|
|
|
250 |
worksheet1.write(row, inc(), 'Product Title', boldStyle)
|
|
|
251 |
worksheet1.write(row, inc(), 'Price', boldStyle)
|
|
|
252 |
worksheet1.write(row, inc(), 'Quantity', boldStyle)
|
|
|
253 |
worksheet1.write(row, inc(), 'Status', boldStyle)
|
|
|
254 |
worksheet1.write(row, inc(), 'Cashback Status', boldStyle)
|
|
|
255 |
worksheet1.write(row, inc(), 'CashBack', boldStyle)
|
| 14450 |
amit.gupta |
256 |
|
| 14460 |
amit.gupta |
257 |
|
|
|
258 |
def inc():
|
|
|
259 |
global i
|
|
|
260 |
i+=1
|
|
|
261 |
return i
|
|
|
262 |
|
| 14450 |
amit.gupta |
263 |
def main():
|
|
|
264 |
generateSnapDealReco()
|
| 14460 |
amit.gupta |
265 |
generateFlipkartReco()
|
| 14452 |
amit.gupta |
266 |
sendmail(["amit.gupta@shop2020.in"], "", "DTR Affiliate Reco")
|
| 14450 |
amit.gupta |
267 |
|
|
|
268 |
if __name__ == '__main__':
|
| 14460 |
amit.gupta |
269 |
main()
|
|
|
270 |
|