pitcher_panel.py 64 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060
  1. from model.DateUtils import DateUtils
  2. from model.DataBaseUtils import *
  3. from model.log import logger
  4. from model.CommonUtils import *
  5. from model import UserAuthUtils
  6. from model.UserAuthUtils import super_auth
  7. du = DateUtils()
  8. from data_manage.operate import get_pitcher
  9. log = logger()
  10. """根据公众号获取投手"""
  11. # def get_channel_belong_pitcher(channel):
  12. #
  13. # sql = f"select pitcher,channel from dw_daily_channel_cost where dt='{du.get_n_days(-1)}' and pitcher!='' and channel!=''"
  14. # data=ck.execute(sql)
  15. # di={}
  16. # for i in data:
  17. # di[i[1]]=i[0]
  18. # return di.get(channel,'')
  19. """根据名字获取其归属的公众号"""
  20. def get_channels_from_user(user):
  21. sql = f"""SELECT a.nick_name FROM t_mp_account a
  22. left join t_sys_user b on a.oper_user_id=b.user_id where b.nick_name='{user}'"""
  23. return tuple(MysqlUtils().zx.getOneList(sql))
  24. def get_pitcher_panel_channel(pitcher, channel, start, end, page, page_size, order_by, order):
  25. db = MysqlUtils()
  26. op1 = f" and pitcher='{pitcher}'" if pitcher else ''
  27. op2 = f" and channel='{channel}'" if channel else ''
  28. sql = f"""select channel,stage,platform,book,
  29. dt as date,cost,first_order_amount,
  30. if(cost=0,0,first_order_amount/cost) first_roi,
  31. first_order_user,first_order_count,
  32. round(if(first_order_user=0,0,cost/first_order_user),2) first_per_cost,
  33. view_count,click_count,follow_user,
  34. round(if(click_count=0,0,follow_user/click_count),4) follow_rate,
  35. round(if(follow_user=0,0,cost/follow_user),2) follow_per_cost,
  36. total_cost,
  37. round(if(total_cost=0,0,total_amount/total_cost),4) back_rate
  38. from dw_channel_daily where dt>='{start}' and dt<='{end}' {op1} {op2}
  39. order by {order_by} {order}
  40. """
  41. return getLimitData(db.quchen_text, sql, page, page_size)
  42. def get_pitcher_panel_daily(pitcher, start, end, page, page_size, order_by, order):
  43. db = MysqlUtils()
  44. op1 = f" and pitcher='{pitcher}'" if pitcher else ''
  45. op2 = f" and dt>='{start}' " if start else ''
  46. op3 = f" and dt<='{end}' " if end else ''
  47. op4 = f" order by {order_by} {order}" if order_by and order else ''
  48. sql = f"""
  49. select dt date,
  50. pitcher,cost,
  51. first_order_amount,
  52. reg_amount,
  53. round(if(cost=0,0,first_order_amount/cost),4) first_roi,
  54. amount order_amount,
  55. round(if(cost=0,0,reg_amount/cost),4) today_roi,
  56. reg_amount-cost profit
  57. from dw_pitcher_trend where 1=1 {op1} {op2} {op3} {op4}
  58. """
  59. print(sql)
  60. sumSql = f"""
  61. select '总计' date,sum(cost) cost,
  62. sum(first_order_amount) first_order_amount,sum(reg_amount) reg_amount,
  63. round(if(sum(cost)=0,0,sum(first_order_amount)/sum(cost)),4) first_roi,
  64. sum(order_amount) order_amount,
  65. round(if(sum(cost)=0,0,sum(reg_amount)/sum(cost)),4) today_roi,
  66. sum(profit) profit
  67. from ({sql}) b """
  68. print(sumSql)
  69. return getLimitSumData(db.dm, sql, sumSql, page, page_size)
  70. def get_pitcher_panel_overview(pitcher):
  71. db = MysqlUtils()
  72. op1 = f" and pitcher='{pitcher}'" if pitcher else ''
  73. sql = f"""select pitcher,
  74. total_cost cost,
  75. total_amount amount,
  76. if(total_cost=0,0,total_amount/total_cost) roi,
  77. channel_count,
  78. on_channel_count,
  79. off_channel_count,
  80. this_month_cost this_month_cost,
  81. this_month_amount this_month_amount,
  82. this_month_roi this_month_roi,
  83. last_month_cost last_month_cost,
  84. last_month_amount last_month_amount,
  85. last_month_roi last_month_roi,
  86. last_month_far_amount last_month_far_amount,
  87. follow_user,
  88. last_month_far_roi last_month_far_roi
  89. from dm_pitcher_daily_overview a
  90. left join (
  91. select sum(cost) total_cost,sum(reg_amount) total_amount,pitcher pitcher2 from dw_pitcher_trend group by pitcher) b on pitcher=pitcher2
  92. where 1=1 {op1}
  93. """
  94. print(sql)
  95. return db.dm.getData_json(sql)
  96. def get_channel_overview(user_id, channel, pitcher, stage, book, start, end, page, page_size, order_by, order):
  97. db = MysqlUtils()
  98. if user_id in super_auth():
  99. op = ''
  100. else:
  101. if len(UserAuthUtils.get_auth_channel(user_id)) == 0:
  102. return None, None, None
  103. elif len(UserAuthUtils.get_auth_channel(user_id)) == 1:
  104. op = f" and channel = '{UserAuthUtils.get_auth_channel(user_id)[0]}'"
  105. else:
  106. op = f" and channel in {str(UserAuthUtils.get_auth_channel(user_id))}"
  107. op1 = f" and pitcher ='{pitcher}' " if pitcher else ''
  108. op2 = f" and channel='{channel}'" if channel else ''
  109. op3 = f" and dt>='{start}' " if start else ''
  110. op4 = f" and dt<='{end}' " if end else ''
  111. op5 = f" order by {order_by} {order}" if order_by and order else ''
  112. op6 = f" and stage='{stage}'" if stage else ''
  113. op7 = f" and book='{book}'" if book else ''
  114. sql = f"""select channel,dt date,
  115. view_count,click_count,
  116. round(if(view_count=0,0,click_count/view_count),4) click_rate,
  117. follow_user,
  118. round(if(click_count=0,0,follow_user/click_count),4) follow_rate,
  119. round(if(follow_user=0,0,cost/follow_user),2) follow_per_cost,
  120. round(if(click_count=0,0,first_order_count/click_count),4) order_rate,
  121. round(if(first_order_user=0,0,cost/first_order_user),2) order_per_cost,
  122. cost,
  123. first_order_count,first_order_user,
  124. first_order_amount,
  125. order_count,order_user,
  126. order_amount,
  127. order_amount-first_order_amount old_order_amount,
  128. round(if(first_order_user=0,0,first_order_amount/first_order_user),2) first_amount_per_user,
  129. round(if(follow_user=0,0,first_order_amount/follow_user),2) amount_per_follow,
  130. round(if(first_order_user=0,0,cost/reg_order_user),2) first_cost_per_user,
  131. round(if(follow_user=0,0,first_order_user/follow_user),4) new_user_order_rate,
  132. reg_order_amount reg_user_amount,
  133. round(if(cost=0,0,first_order_amount/cost),4) day_roi,
  134. round(reg_order_amount/cost,4) roi,
  135. reg_order_user_again,
  136. reg_order_user,
  137. round(if(reg_order_user=0,0,reg_order_user_again/reg_order_user),4) old_user_once_order_rate,
  138. pitcher,stage,book,type,
  139. round(cost/first_order_user,2) first_order_user_per_cost,
  140. round(reg_order_amount/reg_order_user,2) user_per_amount,
  141. round(follow_user/click_count,4) click_follow_rate,
  142. round(reg_order_user/follow_user,4) follow_order_rate
  143. from dw_channel where 1=1 {op} {op1} {op2} {op3} {op4} {op6} {op7} {op5} """
  144. print(sql)
  145. sumsql = f"""select '总计' date,
  146. sum(view_count) view_count,
  147. sum(click_count) click_count,
  148. round(sum(click_count)/sum(view_count),4) click_rate,
  149. sum(follow_user) follow_user,
  150. round(sum(follow_user)/sum(click_count),4) follow_rate,
  151. round(sum(cost)/sum(follow_user),2) follow_per_cost,
  152. round(sum(first_order_count)/sum(click_count),4) order_rate,
  153. round(sum(cost)/sum(first_order_user),2) order_per_cost,
  154. sum(cost) cost,
  155. sum(first_order_count) first_order_count,
  156. sum(first_order_user) first_order_user,
  157. sum(first_order_amount) first_order_amount,
  158. sum(order_count) order_count,
  159. sum(order_user) order_user,
  160. sum(order_amount) order_amount,
  161. sum(old_order_amount) old_order_amount,
  162. round(sum(first_order_amount)/sum(first_order_user),2) first_amount_per_user,
  163. round(sum(first_order_amount)/sum(follow_user),2) amount_per_follow,
  164. round(sum(cost)/sum(first_order_user),2) first_cost_per_user,
  165. round(sum(first_order_user)/sum(follow_user),4) new_user_order_rate,
  166. sum(reg_user_amount) reg_user_amount,
  167. round(sum(first_order_amount)/sum(cost),4) day_roi,
  168. round(sum(reg_user_amount)/sum(cost),4) roi,
  169. round(sum(reg_order_user_again)/sum(reg_order_user),4) old_user_once_order_rate,
  170. round(sum(cost)/sum(first_order_user),2) first_order_user_per_cost,
  171. round(sum(reg_user_amount)/sum(reg_order_user),2) user_per_amount,
  172. round(sum(follow_user)/sum(click_count),4) click_follow_rate,
  173. round(sum(reg_order_user)/sum(follow_user),4) follow_order_rate
  174. from ({sql}) a
  175. """
  176. return getLimitSumData(db.dm, sql, sumsql, page, page_size)
  177. def get_channel_again_order_trend(channel, date):
  178. ck = CkUtils()
  179. db = MysqlUtils()
  180. sql = f"""select dt date,
  181. channel,book,pitcher,stage,
  182. cost,
  183. reg_order_amount reg_amount,
  184. round(if(cost=0,0,reg_order_amount/cost),4) roi,
  185. follow_user new_follow,
  186. round(if(follow_user=0,0,cost/follow_user),2) new_follow_per_cost,
  187. reg_order_count reg_count,reg_order_user reg_user,
  188. round(if(reg_order_user=0,0,cost/reg_order_user),2) cost_per_user,
  189. round(if(reg_order_user=0,0,reg_order_amount/reg_order_user),2) avg_order_amount,
  190. round(if(reg_order_user=0,0,reg_order_user_again/reg_order_user),4) avg_again_order_rate,
  191. if(reg_order_user=0,0,order_count/reg_order_user) order_count
  192. from dw_channel where channel='{channel}' and dt='{date}'
  193. """
  194. # print(sql)
  195. j = db.dm.getData_json(sql)
  196. if len(j) == 0:
  197. return None
  198. else:
  199. json1 = j[0]
  200. # print(json1)
  201. # print(json1)
  202. sql2 = f"""select
  203. 1 as ddf,count(1) c1,sum(if(count>1,1,0)) c2,sum(if(count>2,1,0)) c3,
  204. sum(if(count>3,1,0)) c4,sum(if(count>4,1,0)) c5,sum(if(count>5,1,0)) c6
  205. from (select count(1) count
  206. from order where channel='{channel}' and date='{date}'and status=2
  207. and formatDateTime(reg_time,'%Y-%m-%d')='{date}' group by user_id,date) a
  208. union all
  209. select
  210. 2 as ddf,count(1) c1,sum(if(count>1,1,0)) c2,sum(if(count>2,1,0)) c3,
  211. sum(if(count>3,1,0)) c4,sum(if(count>4,1,0)) c5,sum(if(count>5,1,0)) c6
  212. from (
  213. select count(1) count
  214. from order where channel='{channel}' and date>='{date}' and date<=addDays(toDate('{date}'),1) and status=2
  215. and formatDateTime(reg_time,'%Y-%m-%d')='{date}' group by user_id) a
  216. union all
  217. select
  218. 3 as ddf,count(1) c1,sum(if(count>1,1,0)) c2,sum(if(count>2,1,0)) c3,
  219. sum(if(count>3,1,0)) c4,sum(if(count>4,1,0)) c5,sum(if(count>5,1,0)) c6
  220. from (
  221. select count(1) count
  222. from order where channel='{channel}' and date>='{date}' and date<=addDays(toDate('{date}'),2) and status=2
  223. and formatDateTime(reg_time,'%Y-%m-%d')='{date}' group by user_id) a
  224. union all
  225. select
  226. 4 as ddf,count(1) c1,sum(if(count>1,1,0)) c2,sum(if(count>2,1,0)) c3,
  227. sum(if(count>3,1,0)) c4,sum(if(count>4,1,0)) c5,sum(if(count>5,1,0)) c6
  228. from (
  229. select count(1) count
  230. from order where channel='{channel}' and date>='{date}' and date<=addDays(toDate('{date}'),3) and status=2
  231. and formatDateTime(reg_time,'%Y-%m-%d')='{date}' group by user_id) a
  232. union all
  233. select
  234. 5 as ddf,count(1) c1,sum(if(count>1,1,0)) c2,sum(if(count>2,1,0)) c3,
  235. sum(if(count>3,1,0)) c4,sum(if(count>4,1,0)) c5,sum(if(count>5,1,0)) c6
  236. from (
  237. select count(1) count
  238. from order where channel='{channel}' and date>='{date}' and date<=addDays(toDate('{date}'),4) and status=2
  239. and formatDateTime(reg_time,'%Y-%m-%d')='{date}' group by user_id) a
  240. union all
  241. select
  242. 6 as ddf,count(1) c1,sum(if(count>1,1,0)) c2,sum(if(count>2,1,0)) c3,
  243. sum(if(count>3,1,0)) c4,sum(if(count>4,1,0)) c5,sum(if(count>5,1,0)) c6
  244. from (
  245. select count(1) count
  246. from order where channel='{channel}' and date>='{date}' and date<=addDays(toDate('{date}'),5) and status=2
  247. and formatDateTime(reg_time,'%Y-%m-%d')='{date}' group by user_id) a
  248. union all
  249. select
  250. 7 as ddf,count(1) c1,sum(if(count>1,1,0)) c2,sum(if(count>2,1,0)) c3,
  251. sum(if(count>3,1,0)) c4,sum(if(count>4,1,0)) c5,sum(if(count>5,1,0)) c6
  252. from (
  253. select count(1) count
  254. from order where channel='{channel}' and date>='{date}' and date<=addDays(toDate('{date}'),6) and status=2
  255. and formatDateTime(reg_time,'%Y-%m-%d')='{date}' group by user_id) a"""
  256. df = ck.execute(sql2)
  257. print(df)
  258. # 补全
  259. # xx=[i[0] for i in df]
  260. # for i in range(1,8):
  261. # if i not in xx:
  262. # df.append((i,0,0,0,0,0,0))
  263. # 排序
  264. import operator
  265. df.sort(key=operator.itemgetter(0))
  266. print(df)
  267. reg_user = json1["reg_user"]
  268. li = []
  269. for i in range(1, 6):
  270. print(i)
  271. d = {}
  272. d["user_order_count"] = i
  273. d1 = {}
  274. d1["origin"] = df[0][i]
  275. d1["new"] = 0
  276. d1["move"] = df[0][i + 1]
  277. d1["now"] = d1["origin"] + d1['new'] - d1["move"]
  278. d1["follow_order_rate"] = round(d1["now"] / df[0][1], 2) if df[0][i] != 0 else 0
  279. d['d1'] = d1
  280. d2 = {}
  281. d2["origin"] = d1["now"]
  282. d2["new"] = df[1][i] - df[0][i]
  283. d2["move"] = df[1][i + 1] - df[0][i + 1]
  284. d2["now"] = df[1][i] - df[1][i + 1]
  285. d2["follow_order_rate"] = round(d2["now"] / df[1][1], 2) if df[1][i] != 0 else 0
  286. d['d2'] = d2
  287. d3 = {}
  288. d3["origin"] = d2["now"]
  289. d3["new"] = df[2][i] - df[1][i]
  290. d3["move"] = df[2][i + 1] - df[1][i + 1]
  291. d3["now"] = df[2][i] - df[2][i + 1]
  292. d3["follow_order_rate"] = round(d3["now"] / df[2][1], 2) if df[2][i] != 0 else 0
  293. d['d3'] = d3
  294. d4 = {}
  295. d4["origin"] = d3["now"]
  296. d4["new"] = df[3][i] - df[2][i]
  297. d4["move"] = df[3][i + 1] - df[2][i + 1]
  298. d4["now"] = df[3][i] - df[3][i + 1]
  299. d4["follow_order_rate"] = round(d4["now"] / df[3][1], 2) if df[3][i] != 0 else 0
  300. d['d4'] = d4
  301. d5 = {}
  302. d5["origin"] = d4["now"]
  303. d5["new"] = df[4][i] - df[3][i]
  304. d5["move"] = df[4][i + 1] - df[3][i + 1]
  305. d5["now"] = df[4][i] - df[4][i + 1]
  306. d5["follow_order_rate"] = round(d4["now"] / df[4][1], 2) if df[3][i] != 0 else 0
  307. d['d5'] = d5
  308. d6 = {}
  309. d6["origin"] = d5["now"]
  310. d6["new"] = df[5][i] - df[4][i]
  311. d6["move"] = df[5][i + 1] - df[4][i + 1]
  312. d6["now"] = df[5][i] - df[5][i + 1]
  313. d6["follow_order_rate"] = round(d6["now"] / df[5][1], 2) if df[5][i] != 0 else 0
  314. d['d6'] = d6
  315. d7 = {}
  316. d7["origin"] = d6["now"]
  317. d7["new"] = df[6][i] - df[5][i]
  318. d7["move"] = df[6][i + 1] - df[5][i + 1]
  319. d7["now"] = df[6][i] - df[6][i + 1]
  320. d7["follow_order_rate"] = round(d7["now"] / df[6][1], 2) if df[6][i] != 0 else 0
  321. d['d7'] = d7
  322. li.append(d)
  323. print(li)
  324. json1['data'] = li
  325. # print([json1])
  326. return [json1]
  327. def get_channel_active(user_id, channel, pitcher, start, end, page, page_size, order_by, order):
  328. db = MysqlUtils()
  329. if user_id in super_auth():
  330. op = ''
  331. else:
  332. if len(UserAuthUtils.get_auth_channel(user_id)) == 0:
  333. return None, None, None
  334. elif len(UserAuthUtils.get_auth_channel(user_id)) == 1:
  335. op = f" and channel = '{UserAuthUtils.get_auth_channel(user_id)[0]}'"
  336. else:
  337. op = f" and channel in {str(UserAuthUtils.get_auth_channel(user_id))}"
  338. op1 = f" and pitcher ='{pitcher}' " if pitcher else ''
  339. op2 = f" and channel='{channel}'" if channel else ''
  340. op3 = f" and dt>='{start}' " if start else ''
  341. op4 = f" and dt<='{end}' " if end else ''
  342. op5 = f" order by {order_by} {order}" if order_by and order else ''
  343. sql = f"""
  344. select channel,dt date,book,stage,pitcher,cost,
  345. reg_order_amount reg_amount,
  346. dc7,dc30,
  347. round(reg_order_amount/cost,4) roi,
  348. follow_user new_follow_user,
  349. round(cost/follow_user,2) new_follow_per_cost,
  350. reg_order_user order_user,
  351. reg_order_count order_count,
  352. round(cost/reg_order_user,2) order_user_per_cost,
  353. round(dc7/follow_user,4) day7_avg_act_rate,
  354. round(cost/dc7,2) day7_avg_act_per_cost,
  355. round(dc30/follow_user,4) day30_avg_act_rate,
  356. round(cost/dc30,2) day30_avg_act_cost,
  357. round(cost/reg_order_user,2) act_per_cost,
  358. concat(dc1,',',cost/dc1,',',dc1/reg_order_user) d1,
  359. concat(dc2-dc1,',',cost/dc2,',',(dc2-dc1)/reg_order_user) d2,
  360. concat(dc3-dc2,',',cost/dc3,',',(dc3-dc2)/reg_order_user) d3,
  361. concat(dc4-dc3,',',cost/dc4,',',(dc4-dc3)/reg_order_user) d4,
  362. concat(dc5-dc4,',',cost/dc5,',',(dc5-dc4)/reg_order_user) d5,
  363. concat(dc6-dc5,',',cost/dc6,',',(dc6-dc5)/reg_order_user) d6,
  364. concat(dc7-dc6,',',cost/dc7,',',(dc7-dc6)/reg_order_user) d7,
  365. concat(dc8-dc7,',',cost/dc8,',',(dc8-dc7)/reg_order_user) d8,
  366. concat(dc9-dc8,',',cost/dc9,',',(dc9-dc8)/reg_order_user) d9,
  367. concat(dc10-dc9,',',cost/dc10,',',(dc10-dc9)/reg_order_user) d10,
  368. concat(dc11-dc10,',',cost/dc11,',',(dc11-dc10)/reg_order_user) d11,
  369. concat(dc12-dc11,',',cost/dc12,',',(dc12-dc11)/reg_order_user) d12,
  370. concat(dc13-dc12,',',cost/dc13,',',(dc13-dc12)/reg_order_user) d13,
  371. concat(dc14-dc13,',',cost/dc14,',',(dc14-dc13)/reg_order_user) d14,
  372. concat(dc15-dc14,',',cost/dc15,',',(dc15-dc14)/reg_order_user) d15,
  373. concat(dc16-dc15,',',cost/dc16,',',(dc16-dc15)/reg_order_user) d16,
  374. concat(dc17-dc16,',',cost/dc17,',',(dc17-dc16)/reg_order_user) d17,
  375. concat(dc18-dc17,',',cost/dc18,',',(dc18-dc17)/reg_order_user) d18,
  376. concat(dc19-dc18,',',cost/dc19,',',(dc19-dc18)/reg_order_user) d19,
  377. concat(dc20-dc19,',',cost/dc20,',',(dc20-dc19)/reg_order_user) d20,
  378. concat(dc21-dc20,',',cost/dc21,',',(dc21-dc20)/reg_order_user) d21,
  379. concat(dc22-dc21,',',cost/dc22,',',(dc22-dc21)/reg_order_user) d22,
  380. concat(dc23-dc22,',',cost/dc23,',',(dc23-dc22)/reg_order_user) d23,
  381. concat(dc24-dc23,',',cost/dc24,',',(dc24-dc23)/reg_order_user) d24,
  382. concat(dc25-dc24,',',cost/dc25,',',(dc25-dc24)/reg_order_user) d25,
  383. concat(dc26-dc25,',',cost/dc26,',',(dc26-dc25)/reg_order_user) d26,
  384. concat(dc27-dc26,',',cost/dc27,',',(dc27-dc26)/reg_order_user) d27,
  385. concat(dc28-dc27,',',cost/dc28,',',(dc28-dc27)/reg_order_user) d28,
  386. concat(dc29-dc28,',',cost/dc29,',',(dc29-dc28)/reg_order_user) d29,
  387. concat(dc30-dc29,',',cost/dc30,',',(dc30-dc29)/reg_order_user) d30
  388. from (select * from dw_channel where cost>0 {op} {op1} {op2} {op3} {op4}) a
  389. left join dw_channel_user_daily b using(dt,channel) {op5}
  390. """
  391. data, total = getLimitData(db.dm, sql, page, page_size)
  392. def parse(str):
  393. li = str.split(',')
  394. li[0] = round(float(li[0]), 0)
  395. li[1] = round(float(li[1]), 2)
  396. li[2] = round(float(li[2]), 4)
  397. return dict(zip(['act_user', 'act_cost_per_cost', 'act_rate'], li))
  398. for i in data:
  399. for x in i:
  400. if x in ['d1', 'd2', 'd3', 'd4', 'd5', 'd6', 'd7', 'd8', 'd9', 'd10',
  401. 'd11', 'd12', 'd13', 'd14', 'd15', 'd16', 'd17', 'd18', 'd19', 'd20', 'd21', 'd22', 'd23', 'd24',
  402. 'd25', 'd26', 'd27', 'd28', 'd29', 'd30']:
  403. i[x] = parse(i[x]) if i[x] is not None else {}
  404. return data, total
  405. def get_channel_order_trend(user_id, channel, pitcher, start, end, page, page_size, order_by, order):
  406. db = MysqlUtils()
  407. if user_id in super_auth():
  408. op = ''
  409. else:
  410. if len(UserAuthUtils.get_auth_channel(user_id)) == 0:
  411. return None, None, None
  412. elif len(UserAuthUtils.get_auth_channel(user_id)) == 1:
  413. op = f" and channel = '{UserAuthUtils.get_auth_channel(user_id)[0]}'"
  414. else:
  415. op = f" and channel in {str(UserAuthUtils.get_auth_channel(user_id))}"
  416. op1 = f" and pitcher ='{pitcher}' " if pitcher else ''
  417. if not channel:
  418. op2 = ''
  419. elif type(channel) is str:
  420. op2 = f" and channel='{channel}'" if channel else ''
  421. elif len(channel) > 1:
  422. op2 = f" and channel in {str(tuple(channel))}"
  423. else:
  424. op2 = f" and channel='{channel[0]}'" if channel else ''
  425. op3 = f" and dt>='{start}' " if start else ''
  426. op4 = f" and dt<='{end}' " if end else ''
  427. op5 = f" order by {order_by} {order}" if order_by and order else ''
  428. base_sql_multi_channel = f'''
  429. ( select a.dt,group_concat(a.channel) channel ,group_concat(a.pitcher ) pitcher ,
  430. group_concat(a.stage ) stage ,group_concat(a.platform) platform ,
  431. group_concat(a.book) book, group_concat(a.type) type,sum(a.order_count ) order_count ,
  432. sum(a.order_user ) order_user ,sum(a.order_amount ) order_amount ,
  433. sum(a.reg_order_amount) reg_order_amount,
  434. sum(a.first_order_amount ) first_order_amount ,sum(a.view_count) view_count,
  435. sum(a.click_count) click_count ,sum(a.follow_user) follow_user ,
  436. sum(a.cost) cost,sum(a.reg_order_count) reg_order_count,
  437. sum(a.reg_order_user) reg_order_user ,sum(a.web_view_count) web_view_count ,
  438. sum(a.platform_view_count) platform_view_count ,sum(a.web_order_count ) web_order_count ,
  439. sum(a.reg_order_user_again) reg_order_user_again ,sum(a.reg_order_user_again3 ) reg_order_user_again3 ,
  440. sum(a.reg_order_user_again4) reg_order_user_again4,sum(a.reg_order_user_again5) reg_order_user_again5,
  441. sum(a.reg_order_user_again6) reg_order_user_again6,sum(b.da1) as da1,
  442. sum(b.da2) as da2,
  443. sum(b.da3) as da3,
  444. sum(b.da4) as da4,
  445. sum(b.da5) as da5,
  446. sum(b.da6) as da6,
  447. sum(b.da7) as da7,
  448. sum(b.da8) as da8,
  449. sum(b.da9) as da9,
  450. sum(b.da10) as da10,
  451. sum(b.da11) as da11,
  452. sum(b.da12) as da12,
  453. sum(b.da13) as da13,
  454. sum(b.da14) as da14,
  455. sum(b.da15) as da15,
  456. sum(b.da16) as da16,
  457. sum(b.da17) as da17,
  458. sum(b.da18) as da18,
  459. sum(b.da19) as da19,
  460. sum(b.da20) as da20,
  461. sum(b.da21) as da21,
  462. sum(b.da22) as da22,
  463. sum(b.da23) as da23,
  464. sum(b.da24) as da24,
  465. sum(b.da25) as da25,
  466. sum(b.da26) as da26,
  467. sum(b.da27) as da27,
  468. sum(b.da28) as da28,
  469. sum(b.da29) as da29,
  470. sum(b.da30) as da30,
  471. sum(b.da31) as da31,
  472. sum(b.da32) as da32,
  473. sum(b.da33) as da33,
  474. sum(b.da34) as da34,
  475. sum(b.da35) as da35,
  476. sum(b.da36) as da36,
  477. sum(b.da37) as da37,
  478. sum(b.da38) as da38,
  479. sum(b.da39) as da39,
  480. sum(b.da40) as da40,
  481. sum(b.da41) as da41,
  482. sum(b.da42) as da42,
  483. sum(b.da43) as da43,
  484. sum(b.da44) as da44,
  485. sum(b.da45) as da45,
  486. sum(b.da46) as da46,
  487. sum(b.da47) as da47,
  488. sum(b.da48) as da48,
  489. sum(b.da49) as da49,
  490. sum(b.da50) as da50,
  491. sum(b.da51) as da51,
  492. sum(b.da52) as da52,
  493. sum(b.da53) as da53,
  494. sum(b.da54) as da54,
  495. sum(b.da55) as da55,
  496. sum(b.da56) as da56,
  497. sum(b.da57) as da57,
  498. sum(b.da58) as da58,
  499. sum(b.da59) as da59,
  500. sum(b.da60) as da60,
  501. sum(b.dm3) as dm3,
  502. sum(b.dm4) as dm4,
  503. sum(b.dm5) as dm5,
  504. sum(c.node) as node,
  505. group_concat(annual_mult) as annual_mult
  506. from
  507. ( select * from dw_channel where cost+reg_order_amount>0
  508. {op} {op1} {op2} {op3} {op4} ) a
  509. left join dw_channel_amount_daily b on a.channel=b.channel
  510. and a.dt=b.dt
  511. left join src_book_info c on a.dt=c.dt and a.book=c.book
  512. and a.type=c.type and a.platform=c.platform
  513. group by a.dt ) a
  514. '''
  515. base_sql_singel_channel = f'''
  516. ( select * from dw_channel where cost+reg_order_amount>0 {op} {op1} {op2} {op3} {op4} ) a
  517. left join dw_channel_amount_daily b on a.channel=b.channel and a.dt=b.dt
  518. left join src_book_info c on a.dt=c.dt and a.book=c.book and a.type=c.type and a.platform=c.platform
  519. '''
  520. base_sql = base_sql_multi_channel if channel and len(channel) > 1 else base_sql_singel_channel
  521. sql = f"""select row_number() over() as id,
  522. stage,pitcher,a.channel,a.dt date,a.book,cost,
  523. a.type,
  524. node/100 require_roi,round(100/node,2) require_mult,
  525. round(first_order_amount*100/node-cost,2) expect_profit,
  526. annual_mult,
  527. round(first_order_amount*annual_mult -cost,2) annual_expect_profit,
  528. first_order_amount first_amount,
  529. reg_order_amount reg_amount,
  530. reg_order_amount-cost profit,
  531. follow_user new_follow_user,
  532. round(reg_order_amount/cost,4) roi,
  533. round(first_order_amount/cost,4) first_roi,
  534. round(cost/follow_user,2) new_follow_per_cost,
  535. reg_order_user order_user,
  536. reg_order_count order_count,
  537. round(cost/reg_order_user ,2) order_user_per_cost,
  538. concat(da1,',',da1/cost,',', 0,',',1) d1,
  539. concat(da2-da1,',',da2/cost,',', (da2-da1)/cost,',',if(da1=0,1,da2/da1) ) d2,
  540. concat(da3-da2,',',da3/cost,',', (da3-da2)/cost,',',if(da1=0,1,da3/da1)) d3,
  541. concat(da4-da3,',',da4/cost,',', (da4-da3)/cost,',',if(da1=0,1,da4/da1)) d4,
  542. concat(da5-da4,',',da5/cost,',', (da5-da4)/cost,',',if(da1=0,1,da5/da1)) d5,
  543. concat(da6-da5,',',da6/cost,',', (da6-da5)/cost,',',if(da1=0,1,da6/da1)) d6,
  544. concat(da7-da6,',',da7/cost,',', (da7-da6)/cost,',',if(da1=0,1,da7/da1)) d7,
  545. concat(da8-da7,',',da8/cost,',', (da8-da7)/cost,',',if(da1=0,1,da8/da1)) d8,
  546. concat(da9-da8,',',da9/cost,',', (da9-da8)/cost,',',if(da1=0,1,da9/da1)) d9,
  547. concat(da10-da9 ,',' ,da10/cost ,',', (da10-da9)/cost ,',' ,if(da1=0,1,da10/da1)) d10,
  548. concat(da11-da10 ,',' ,da11/cost ,',', (da11-da10)/cost ,',' ,if(da1=0,1,da11/da1)) d11,
  549. concat(da12-da11 ,',' ,da12/cost ,',', (da12-da11)/cost ,',' ,if(da1=0,1,da12/da1)) d12,
  550. concat(da13-da12 ,',' ,da13/cost ,',', (da13-da12)/cost ,',' ,if(da1=0,1,da13/da1)) d13,
  551. concat(da14-da13 ,',' ,da14/cost ,',', (da14-da13)/cost ,',' ,if(da1=0,1,da14/da1)) d14,
  552. concat(da15-da14 ,',' ,da15/cost ,',', (da15-da14)/cost ,',' ,if(da1=0,1,da15/da1)) d15,
  553. concat(da16-da15 ,',' ,da16/cost ,',', (da16-da15)/cost ,',' ,if(da1=0,1,da16/da1)) d16,
  554. concat(da17-da16 ,',' ,da17/cost ,',', (da17-da16)/cost ,',' ,if(da1=0,1,da17/da1)) d17,
  555. concat(da18-da17 ,',' ,da18/cost ,',', (da18-da17)/cost ,',' ,if(da1=0,1,da18/da1)) d18,
  556. concat(da19-da18 ,',' ,da19/cost ,',', (da19-da18)/cost ,',' ,if(da1=0,1,da19/da1)) d19,
  557. concat(da20-da19 ,',' ,da20/cost ,',', (da20-da19)/cost ,',' ,if(da1=0,1,da20/da1)) d20,
  558. concat(da21-da20 ,',' ,da21/cost ,',', (da21-da20)/cost ,',' ,if(da1=0,1,da21/da1)) d21,
  559. concat(da22-da21 ,',' ,da22/cost ,',', (da22-da21)/cost ,',' ,if(da1=0,1,da22/da1)) d22,
  560. concat(da23-da22 ,',' ,da23/cost ,',', (da23-da22)/cost ,',' ,if(da1=0,1,da23/da1)) d23,
  561. concat(da24-da23 ,',' ,da24/cost ,',', (da24-da23)/cost ,',' ,if(da1=0,1,da24/da1)) d24,
  562. concat(da25-da24 ,',' ,da25/cost ,',', (da25-da24)/cost ,',' ,if(da1=0,1,da25/da1)) d25,
  563. concat(da26-da25 ,',' ,da26/cost ,',', (da26-da25)/cost ,',' ,if(da1=0,1,da26/da1)) d26,
  564. concat(da27-da26 ,',' ,da27/cost ,',', (da27-da26)/cost ,',' ,if(da1=0,1,da27/da1)) d27,
  565. concat(da28-da27 ,',' ,da28/cost ,',', (da28-da27)/cost ,',' ,if(da1=0,1,da28/da1)) d28,
  566. concat(da29-da28 ,',' ,da29/cost ,',', (da29-da28)/cost ,',' ,if(da1=0,1,da29/da1)) d29,
  567. concat(da30-da29 ,',' ,da30/cost ,',', (da30-da29)/cost ,',' ,if(da1=0,1,da30/da1)) d30,
  568. concat(da31-da30 ,',' ,da31/cost ,',', (da31-da30)/cost ,',' ,if(da1=0,1,da31/da1)) d31,
  569. concat(da32-da31 ,',' ,da32/cost ,',', (da32-da31)/cost ,',' ,if(da1=0,1,da32/da1)) d32,
  570. concat(da33-da32 ,',' ,da33/cost ,',', (da33-da32)/cost ,',' ,if(da1=0,1,da33/da1)) d33,
  571. concat(da34-da33 ,',' ,da34/cost ,',', (da34-da33)/cost ,',' ,if(da1=0,1,da34/da1)) d34,
  572. concat(da35-da34 ,',' ,da35/cost ,',', (da35-da34)/cost ,',' ,if(da1=0,1,da35/da1)) d35,
  573. concat(da36-da35 ,',' ,da36/cost ,',', (da36-da35)/cost ,',' ,if(da1=0,1,da36/da1)) d36,
  574. concat(da37-da36 ,',' ,da37/cost ,',', (da37-da36)/cost ,',' ,if(da1=0,1,da37/da1)) d37,
  575. concat(da38-da37 ,',' ,da38/cost ,',', (da38-da37)/cost ,',' ,if(da1=0,1,da38/da1)) d38,
  576. concat(da39-da38 ,',' ,da39/cost ,',', (da39-da38)/cost ,',' ,if(da1=0,1,da39/da1)) d39,
  577. concat(da40-da39 ,',' ,da40/cost ,',', (da40-da39)/cost ,',' ,if(da1=0,1,da40/da1)) d40,
  578. concat(da41-da40 ,',' ,da41/cost ,',', (da41-da40)/cost ,',' ,if(da1=0,1,da41/da1)) d41,
  579. concat(da42-da41 ,',' ,da42/cost ,',', (da42-da41)/cost ,',' ,if(da1=0,1,da42/da1)) d42,
  580. concat(da43-da42 ,',' ,da43/cost ,',', (da43-da42)/cost ,',' ,if(da1=0,1,da43/da1)) d43,
  581. concat(da44-da43 ,',' ,da44/cost ,',', (da44-da43)/cost ,',' ,if(da1=0,1,da44/da1)) d44,
  582. concat(da45-da44 ,',' ,da45/cost ,',', (da45-da44)/cost ,',' ,if(da1=0,1,da45/da1)) d45,
  583. concat(da46-da45 ,',' ,da46/cost ,',', (da46-da45)/cost ,',' ,if(da1=0,1,da46/da1)) d46,
  584. concat(da47-da46 ,',' ,da47/cost ,',', (da47-da46)/cost ,',' ,if(da1=0,1,da47/da1)) d47,
  585. concat(da48-da47 ,',' ,da48/cost ,',', (da48-da47)/cost ,',' ,if(da1=0,1,da48/da1)) d48,
  586. concat(da49-da48 ,',' ,da49/cost ,',', (da49-da48)/cost ,',' ,if(da1=0,1,da49/da1)) d49,
  587. concat(da50-da49 ,',' ,da50/cost ,',', (da50-da49)/cost ,',' ,if(da1=0,1,da50/da1)) d50,
  588. concat(da51-da50 ,',' ,da51/cost ,',', (da51-da50)/cost ,',' ,if(da1=0,1,da51/da1)) d51,
  589. concat(da52-da51 ,',' ,da52/cost ,',', (da52-da51)/cost ,',' ,if(da1=0,1,da52/da1)) d52,
  590. concat(da53-da52 ,',' ,da53/cost ,',', (da53-da52)/cost ,',' ,if(da1=0,1,da53/da1)) d53,
  591. concat(da54-da53 ,',' ,da54/cost ,',', (da54-da53)/cost ,',' ,if(da1=0,1,da54/da1)) d54,
  592. concat(da55-da54 ,',' ,da55/cost ,',', (da55-da54)/cost ,',' ,if(da1=0,1,da55/da1)) d55,
  593. concat(da56-da55 ,',' ,da56/cost ,',', (da56-da55)/cost ,',' ,if(da1=0,1,da56/da1)) d56,
  594. concat(da57-da56 ,',' ,da57/cost ,',', (da57-da56)/cost ,',' ,if(da1=0,1,da57/da1)) d57,
  595. concat(da58-da57 ,',' ,da58/cost ,',', (da58-da57)/cost ,',' ,if(da1=0,1,da58/da1)) d58,
  596. concat(da59-da58 ,',' ,da59/cost ,',', (da59-da58)/cost ,',' ,if(da1=0,1,da59/da1)) d59,
  597. concat(da60-da59 ,',' ,da60/cost ,',', (da60-da59)/cost ,',' ,if(da1=0,1,da60/da1)) d60,
  598. concat(dm3-da60 ,',' ,dm3/cost ,',', (dm3-da60)/cost ,',' ,if(da1=0,1,dm3/da1)) m3,
  599. concat(dm4-dm3 ,',' ,dm4/cost ,',', (dm4-dm3)/cost ,',' ,if(da1=0,1,dm4/da1)) m4,
  600. concat(dm5-dm4 ,',' ,dm5/cost ,',', (dm5-dm4)/cost ,',' ,if(da1=0,1,dm5/da1)) m5,
  601. da1,da2,da3,da4,da5,da6,da7,da8,da9,da10,da11,da12,da13,da14,da15,da16,da17,da18,da19,da20,
  602. da21,da22,da23,da24,da25,da26,da27,da28,da29,da30,da31,da32,da33,da34,da35,da36,da37,da38,da39,
  603. da40,da41,da42,da43,da44,da45,da46,da47,da48,da49,da50,da51,da52,da53,da54,da55,da56,da57,da58,
  604. da59,da60,dm3,dm4,dm5
  605. from {base_sql}
  606. {op5}
  607. """
  608. sumsql = f"""select concat(date_format(min(date),'%Y/%m/%d'),'~',date_format(max(date),'%Y/%m/%d')) date,
  609. sum(cost) cost,
  610. sum(reg_amount) reg_amount,
  611. sum(first_amount) first_amount,
  612. sum(profit) profit,
  613. sum(new_follow_user) new_follow_user,
  614. round(sum(reg_amount)/sum(cost),4) roi,
  615. round(sum(first_amount)/sum(cost),4) first_roi,
  616. round(sum(cost)/sum(new_follow_user),2) new_follow_per_cost,
  617. sum(order_user) order_user,
  618. sum(order_count) order_count,
  619. round(sum(cost)/sum(order_user),2) order_user_per_cost,
  620. round(avg(require_roi),4) require_roi,
  621. round(avg(require_mult),2) require_mult,
  622. round(sum(expect_profit),2) expect_profit,
  623. round(sum(annual_expect_profit),2) annual_expect_profit,
  624. concat(sum(da1),',',sum(da1)/sum(cost),',', 0,',',1) d1,
  625. concat(sum(da2)-sum(if (da2,da1,0)),',',sum(da2)/sum(if (da2,cost,0)),',', (sum(da2)-sum(if (da2,da1,0)))/sum(if (da2,cost,0)),',',if(sum(if (da2,da1,0))=0,1,sum(da2)/sum(if (da2,da1,0))) ) d2,
  626. concat(sum(da3)-sum(if (da3,da2,0)),',',sum(da3)/sum(if (da3,cost,0)),',', (sum(da3)-sum(if (da3,da2,0)))/sum(if (da3,cost,0)),',',if(sum(if (da3,da1,0))=0,1,sum(da3)/sum(if (da3,da1,0))) ) d3,
  627. concat(sum(da4)-sum(if (da4,da3,0)),',',sum(da4)/sum(if (da4,cost,0)),',', (sum(da4)-sum(if (da4,da3,0)))/sum(if (da4,cost,0)),',',if(sum(if (da4,da1,0))=0,1,sum(da4)/sum(if (da4,da1,0))) ) d4,
  628. concat(sum(da5)-sum(if (da5,da4,0)),',',sum(da5)/sum(if (da5,cost,0)),',', (sum(da5)-sum(if (da5,da4,0)))/sum(if (da5,cost,0)),',',if(sum(if (da5,da1,0))=0,1,sum(da5)/sum(if (da5,da1,0))) ) d5,
  629. concat(sum(da6)-sum(if (da6,da5,0)),',',sum(da6)/sum(if (da6,cost,0)),',', (sum(da6)-sum(if (da6,da5,0)))/sum(if (da6,cost,0)),',',if(sum(if (da6,da1,0))=0,1,sum(da6)/sum(if (da6,da1,0))) ) d6,
  630. concat(sum(da7)-sum(if (da7,da6,0)),',',sum(da7)/sum(if (da7,cost,0)),',', (sum(da7)-sum(if (da7,da6,0)))/sum(if (da7,cost,0)),',',if(sum(if (da7,da1,0))=0,1,sum(da7)/sum(if (da7,da1,0))) ) d7,
  631. concat(sum(da8)-sum(if (da8,da7,0)),',',sum(da8)/sum(if (da8,cost,0)),',', (sum(da8)-sum(if (da8,da7,0)))/sum(if (da8,cost,0)),',',if(sum(if (da8,da1,0))=0,1,sum(da8)/sum(if (da8,da1,0))) ) d8,
  632. concat(sum(da9)-sum(if (da9,da8,0)),',',sum(da9)/sum(if (da9,cost,0)),',', (sum(da9)-sum(if (da9,da8,0)))/sum(if (da9,cost,0)),',',if(sum(if (da9,da1,0))=0,1,sum(da9)/sum(if (da9,da1,0))) ) d9,
  633. concat(sum(da10)-sum(if (da10,da9,0)),',',sum(da10)/sum(if (da10,cost,0)),',', (sum(da10)-sum(if (da10,da9,0)))/sum(if (da10,cost,0)),',',if(sum(if (da10,da1,0))=0,1,sum(da10)/sum(if (da10,da1,0))) ) d10,
  634. concat(sum(da11)-sum(if (da11,da10,0)),',',sum(da11)/sum(if (da11,cost,0)),',', (sum(da11)-sum(if (da11,da10,0)))/sum(if (da11,cost,0)),',',if(sum(if (da11,da1,0))=0,1,sum(da11)/sum(if (da11,da1,0))) ) d11,
  635. concat(sum(da12)-sum(if (da12,da11,0)),',',sum(da12)/sum(if (da12,cost,0)),',', (sum(da12)-sum(if (da12,da11,0)))/sum(if (da12,cost,0)),',',if(sum(if (da12,da1,0))=0,1,sum(da12)/sum(if (da12,da1,0))) ) d12,
  636. concat(sum(da13)-sum(if (da13,da12,0)),',',sum(da13)/sum(if (da13,cost,0)),',', (sum(da13)-sum(if (da13,da12,0)))/sum(if (da13,cost,0)),',',if(sum(if (da13,da1,0))=0,1,sum(da13)/sum(if (da13,da1,0))) ) d13,
  637. concat(sum(da14)-sum(if (da14,da13,0)),',',sum(da14)/sum(if (da14,cost,0)),',', (sum(da14)-sum(if (da14,da13,0)))/sum(if (da14,cost,0)),',',if(sum(if (da14,da1,0))=0,1,sum(da14)/sum(if (da14,da1,0))) ) d14,
  638. concat(sum(da15)-sum(if (da15,da14,0)),',',sum(da15)/sum(if (da15,cost,0)),',', (sum(da15)-sum(if (da15,da14,0)))/sum(if (da15,cost,0)),',',if(sum(if (da15,da1,0))=0,1,sum(da15)/sum(if (da15,da1,0))) ) d15,
  639. concat(sum(da16)-sum(if (da16,da15,0)),',',sum(da16)/sum(if (da16,cost,0)),',', (sum(da16)-sum(if (da16,da15,0)))/sum(if (da16,cost,0)),',',if(sum(if (da16,da1,0))=0,1,sum(da16)/sum(if (da16,da1,0))) ) d16,
  640. concat(sum(da17)-sum(if (da17,da16,0)),',',sum(da17)/sum(if (da17,cost,0)),',', (sum(da17)-sum(if (da17,da16,0)))/sum(if (da17,cost,0)),',',if(sum(if (da17,da1,0))=0,1,sum(da17)/sum(if (da17,da1,0))) ) d17,
  641. concat(sum(da18)-sum(if (da18,da17,0)),',',sum(da18)/sum(if (da18,cost,0)),',', (sum(da18)-sum(if (da18,da17,0)))/sum(if (da18,cost,0)),',',if(sum(if (da18,da1,0))=0,1,sum(da18)/sum(if (da18,da1,0))) ) d18,
  642. concat(sum(da19)-sum(if (da19,da18,0)),',',sum(da19)/sum(if (da19,cost,0)),',', (sum(da19)-sum(if (da19,da18,0)))/sum(if (da19,cost,0)),',',if(sum(if (da19,da1,0))=0,1,sum(da19)/sum(if (da19,da1,0))) ) d19,
  643. concat(sum(da20)-sum(if (da20,da19,0)),',',sum(da20)/sum(if (da20,cost,0)),',', (sum(da20)-sum(if (da20,da19,0)))/sum(if (da20,cost,0)),',',if(sum(if (da20,da1,0))=0,1,sum(da20)/sum(if (da20,da1,0))) ) d20,
  644. concat(sum(da21)-sum(if (da21,da20,0)),',',sum(da21)/sum(if (da21,cost,0)),',', (sum(da21)-sum(if (da21,da20,0)))/sum(if (da21,cost,0)),',',if(sum(if (da21,da1,0))=0,1,sum(da21)/sum(if (da21,da1,0))) ) d21,
  645. concat(sum(da22)-sum(if (da22,da21,0)),',',sum(da22)/sum(if (da22,cost,0)),',', (sum(da22)-sum(if (da22,da21,0)))/sum(if (da22,cost,0)),',',if(sum(if (da22,da1,0))=0,1,sum(da22)/sum(if (da22,da1,0))) ) d22,
  646. concat(sum(da23)-sum(if (da23,da22,0)),',',sum(da23)/sum(if (da23,cost,0)),',', (sum(da23)-sum(if (da23,da22,0)))/sum(if (da23,cost,0)),',',if(sum(if (da23,da1,0))=0,1,sum(da23)/sum(if (da23,da1,0))) ) d23,
  647. concat(sum(da24)-sum(if (da24,da23,0)),',',sum(da24)/sum(if (da24,cost,0)),',', (sum(da24)-sum(if (da24,da23,0)))/sum(if (da24,cost,0)),',',if(sum(if (da24,da1,0))=0,1,sum(da24)/sum(if (da24,da1,0))) ) d24,
  648. concat(sum(da25)-sum(if (da25,da24,0)),',',sum(da25)/sum(if (da25,cost,0)),',', (sum(da25)-sum(if (da25,da24,0)))/sum(if (da25,cost,0)),',',if(sum(if (da25,da1,0))=0,1,sum(da25)/sum(if (da25,da1,0))) ) d25,
  649. concat(sum(da26)-sum(if (da26,da25,0)),',',sum(da26)/sum(if (da26,cost,0)),',', (sum(da26)-sum(if (da26,da25,0)))/sum(if (da26,cost,0)),',',if(sum(if (da26,da1,0))=0,1,sum(da26)/sum(if (da26,da1,0))) ) d26,
  650. concat(sum(da27)-sum(if (da27,da26,0)),',',sum(da27)/sum(if (da27,cost,0)),',', (sum(da27)-sum(if (da27,da26,0)))/sum(if (da27,cost,0)),',',if(sum(if (da27,da1,0))=0,1,sum(da27)/sum(if (da27,da1,0))) ) d27,
  651. concat(sum(da28)-sum(if (da28,da27,0)),',',sum(da28)/sum(if (da28,cost,0)),',', (sum(da28)-sum(if (da28,da27,0)))/sum(if (da28,cost,0)),',',if(sum(if (da28,da1,0))=0,1,sum(da28)/sum(if (da28,da1,0))) ) d28,
  652. concat(sum(da29)-sum(if (da29,da28,0)),',',sum(da29)/sum(if (da29,cost,0)),',', (sum(da29)-sum(if (da29,da28,0)))/sum(if (da29,cost,0)),',',if(sum(if (da29,da1,0))=0,1,sum(da29)/sum(if (da29,da1,0))) ) d29,
  653. concat(sum(da30)-sum(if (da30,da29,0)),',',sum(da30)/sum(if (da30,cost,0)),',', (sum(da30)-sum(if (da30,da29,0)))/sum(if (da30,cost,0)),',',if(sum(if (da30,da1,0))=0,1,sum(da30)/sum(if (da30,da1,0))) ) d30,
  654. concat(sum(da31)-sum(if (da31,da30,0)),',',sum(da31)/sum(if (da31,cost,0)),',', (sum(da31)-sum(if (da31,da30,0)))/sum(if (da31,cost,0)),',',if(sum(if (da31,da1,0))=0,1,sum(da31)/sum(if (da31,da1,0))) ) d31,
  655. concat(sum(da32)-sum(if (da32,da31,0)),',',sum(da32)/sum(if (da32,cost,0)),',', (sum(da32)-sum(if (da32,da31,0)))/sum(if (da32,cost,0)),',',if(sum(if (da32,da1,0))=0,1,sum(da32)/sum(if (da32,da1,0))) ) d32,
  656. concat(sum(da33)-sum(if (da33,da32,0)),',',sum(da33)/sum(if (da33,cost,0)),',', (sum(da33)-sum(if (da33,da32,0)))/sum(if (da33,cost,0)),',',if(sum(if (da33,da1,0))=0,1,sum(da33)/sum(if (da33,da1,0))) ) d33,
  657. concat(sum(da34)-sum(if (da34,da33,0)),',',sum(da34)/sum(if (da34,cost,0)),',', (sum(da34)-sum(if (da34,da33,0)))/sum(if (da34,cost,0)),',',if(sum(if (da34,da1,0))=0,1,sum(da34)/sum(if (da34,da1,0))) ) d34,
  658. concat(sum(da35)-sum(if (da35,da34,0)),',',sum(da35)/sum(if (da35,cost,0)),',', (sum(da35)-sum(if (da35,da34,0)))/sum(if (da35,cost,0)),',',if(sum(if (da35,da1,0))=0,1,sum(da35)/sum(if (da35,da1,0))) ) d35,
  659. concat(sum(da36)-sum(if (da36,da35,0)),',',sum(da36)/sum(if (da36,cost,0)),',', (sum(da36)-sum(if (da36,da35,0)))/sum(if (da36,cost,0)),',',if(sum(if (da36,da1,0))=0,1,sum(da36)/sum(if (da36,da1,0))) ) d36,
  660. concat(sum(da37)-sum(if (da37,da36,0)),',',sum(da37)/sum(if (da37,cost,0)),',', (sum(da37)-sum(if (da37,da36,0)))/sum(if (da37,cost,0)),',',if(sum(if (da37,da1,0))=0,1,sum(da37)/sum(if (da37,da1,0))) ) d37,
  661. concat(sum(da38)-sum(if (da38,da37,0)),',',sum(da38)/sum(if (da38,cost,0)),',', (sum(da38)-sum(if (da38,da37,0)))/sum(if (da38,cost,0)),',',if(sum(if (da38,da1,0))=0,1,sum(da38)/sum(if (da38,da1,0))) ) d38,
  662. concat(sum(da39)-sum(if (da39,da38,0)),',',sum(da39)/sum(if (da39,cost,0)),',', (sum(da39)-sum(if (da39,da38,0)))/sum(if (da39,cost,0)),',',if(sum(if (da39,da1,0))=0,1,sum(da39)/sum(if (da39,da1,0))) ) d39,
  663. concat(sum(da40)-sum(if (da40,da39,0)),',',sum(da40)/sum(if (da40,cost,0)),',', (sum(da40)-sum(if (da40,da39,0)))/sum(if (da40,cost,0)),',',if(sum(if (da40,da1,0))=0,1,sum(da40)/sum(if (da40,da1,0))) ) d40,
  664. concat(sum(da41)-sum(if (da41,da40,0)),',',sum(da41)/sum(if (da41,cost,0)),',', (sum(da41)-sum(if (da41,da40,0)))/sum(if (da41,cost,0)),',',if(sum(if (da41,da1,0))=0,1,sum(da41)/sum(if (da41,da1,0))) ) d41,
  665. concat(sum(da42)-sum(if (da42,da41,0)),',',sum(da42)/sum(if (da42,cost,0)),',', (sum(da42)-sum(if (da42,da41,0)))/sum(if (da42,cost,0)),',',if(sum(if (da42,da1,0))=0,1,sum(da42)/sum(if (da42,da1,0))) ) d42,
  666. concat(sum(da43)-sum(if (da43,da42,0)),',',sum(da43)/sum(if (da43,cost,0)),',', (sum(da43)-sum(if (da43,da42,0)))/sum(if (da43,cost,0)),',',if(sum(if (da43,da1,0))=0,1,sum(da43)/sum(if (da43,da1,0))) ) d43,
  667. concat(sum(da44)-sum(if (da44,da43,0)),',',sum(da44)/sum(if (da44,cost,0)),',', (sum(da44)-sum(if (da44,da43,0)))/sum(if (da44,cost,0)),',',if(sum(if (da44,da1,0))=0,1,sum(da44)/sum(if (da44,da1,0))) ) d44,
  668. concat(sum(da45)-sum(if (da45,da44,0)),',',sum(da45)/sum(if (da45,cost,0)),',', (sum(da45)-sum(if (da45,da44,0)))/sum(if (da45,cost,0)),',',if(sum(if (da45,da1,0))=0,1,sum(da45)/sum(if (da45,da1,0))) ) d45,
  669. concat(sum(da46)-sum(if (da46,da45,0)),',',sum(da46)/sum(if (da46,cost,0)),',', (sum(da46)-sum(if (da46,da45,0)))/sum(if (da46,cost,0)),',',if(sum(if (da46,da1,0))=0,1,sum(da46)/sum(if (da46,da1,0))) ) d46,
  670. concat(sum(da47)-sum(if (da47,da46,0)),',',sum(da47)/sum(if (da47,cost,0)),',', (sum(da47)-sum(if (da47,da46,0)))/sum(if (da47,cost,0)),',',if(sum(if (da47,da1,0))=0,1,sum(da47)/sum(if (da47,da1,0))) ) d47,
  671. concat(sum(da48)-sum(if (da48,da47,0)),',',sum(da48)/sum(if (da48,cost,0)),',', (sum(da48)-sum(if (da48,da47,0)))/sum(if (da48,cost,0)),',',if(sum(if (da48,da1,0))=0,1,sum(da48)/sum(if (da48,da1,0))) ) d48,
  672. concat(sum(da49)-sum(if (da49,da48,0)),',',sum(da49)/sum(if (da49,cost,0)),',', (sum(da49)-sum(if (da49,da48,0)))/sum(if (da49,cost,0)),',',if(sum(if (da49,da1,0))=0,1,sum(da49)/sum(if (da49,da1,0))) ) d49,
  673. concat(sum(da50)-sum(if (da50,da49,0)),',',sum(da50)/sum(if (da50,cost,0)),',', (sum(da50)-sum(if (da50,da49,0)))/sum(if (da50,cost,0)),',',if(sum(if (da50,da1,0))=0,1,sum(da50)/sum(if (da50,da1,0))) ) d50,
  674. concat(sum(da51)-sum(if (da51,da50,0)),',',sum(da51)/sum(if (da51,cost,0)),',', (sum(da51)-sum(if (da51,da50,0)))/sum(if (da51,cost,0)),',',if(sum(if (da51,da1,0))=0,1,sum(da51)/sum(if (da51,da1,0))) ) d51,
  675. concat(sum(da52)-sum(if (da52,da51,0)),',',sum(da52)/sum(if (da52,cost,0)),',', (sum(da52)-sum(if (da52,da51,0)))/sum(if (da52,cost,0)),',',if(sum(if (da52,da1,0))=0,1,sum(da52)/sum(if (da52,da1,0))) ) d52,
  676. concat(sum(da53)-sum(if (da53,da52,0)),',',sum(da53)/sum(if (da53,cost,0)),',', (sum(da53)-sum(if (da53,da52,0)))/sum(if (da53,cost,0)),',',if(sum(if (da53,da1,0))=0,1,sum(da53)/sum(if (da53,da1,0))) ) d53,
  677. concat(sum(da54)-sum(if (da54,da53,0)),',',sum(da54)/sum(if (da54,cost,0)),',', (sum(da54)-sum(if (da54,da53,0)))/sum(if (da54,cost,0)),',',if(sum(if (da54,da1,0))=0,1,sum(da54)/sum(if (da54,da1,0))) ) d54,
  678. concat(sum(da55)-sum(if (da55,da54,0)),',',sum(da55)/sum(if (da55,cost,0)),',', (sum(da55)-sum(if (da55,da54,0)))/sum(if (da55,cost,0)),',',if(sum(if (da55,da1,0))=0,1,sum(da55)/sum(if (da55,da1,0))) ) d55,
  679. concat(sum(da56)-sum(if (da56,da55,0)),',',sum(da56)/sum(if (da56,cost,0)),',', (sum(da56)-sum(if (da56,da55,0)))/sum(if (da56,cost,0)),',',if(sum(if (da56,da1,0))=0,1,sum(da56)/sum(if (da56,da1,0))) ) d56,
  680. concat(sum(da57)-sum(if (da57,da56,0)),',',sum(da57)/sum(if (da57,cost,0)),',', (sum(da57)-sum(if (da57,da56,0)))/sum(if (da57,cost,0)),',',if(sum(if (da57,da1,0))=0,1,sum(da57)/sum(if (da57,da1,0))) ) d57,
  681. concat(sum(da58)-sum(if (da58,da57,0)),',',sum(da58)/sum(if (da58,cost,0)),',', (sum(da58)-sum(if (da58,da57,0)))/sum(if (da58,cost,0)),',',if(sum(if (da58,da1,0))=0,1,sum(da58)/sum(if (da58,da1,0))) ) d58,
  682. concat(sum(da59)-sum(if (da59,da58,0)),',',sum(da59)/sum(if (da59,cost,0)),',', (sum(da59)-sum(if (da59,da58,0)))/sum(if (da59,cost,0)),',',if(sum(if (da59,da1,0))=0,1,sum(da59)/sum(if (da59,da1,0))) ) d59,
  683. concat(sum(da60)-sum(if (da60,da59,0)),',',sum(da60)/sum(if (da60,cost,0)),',', (sum(da60)-sum(if (da60,da59,0)))/sum(if (da60,cost,0)),',',if(sum(if (da60,da1,0))=0,1,sum(da60)/sum(if (da60,da1,0))) ) d60,
  684. concat(sum(dm3)-sum(if (dm3,da60,0)) ,',' ,sum(dm3)/sum(if(dm3,cost,0)) ,',', (sum(dm3)-sum(if (dm3,da60,0)))/sum(if(dm3,cost,0)) ,',' ,if(sum(if(dm3,da1,0))=0,1,sum(dm3)/sum(if(dm3,da1,0))) ) m3,
  685. concat(sum(dm4)-sum(if (dm4,dm3,0)),',',sum(dm4)/sum(if (dm4,cost,0)),',', (sum(dm4)-sum(if (dm4,dm3,0)))/sum(if (dm4,cost,0)),',',if(sum(if (dm4,da1,0))=0,1,sum(dm4)/sum(if (dm4,da1,0))) ) m4,
  686. concat(sum(dm5)-sum(if (dm5,dm4,0)),',',sum(dm5)/sum(if (dm5,cost,0)),',', (sum(dm5)-sum(if (dm5,dm4,0)))/sum(if (dm5,cost,0)),',',if(sum(if (dm5,da1,0))=0,1,sum(dm5)/sum(if (dm5,da1,0))) ) m5
  687. from ({sql}) a
  688. """
  689. print(sumsql)
  690. data, total, total_data = getLimitSumData(db.dm, sql, sumsql, page, page_size)
  691. def parse(key_str):
  692. if type(key_str) is not str:
  693. key_str = key_str.decode('utf-8')
  694. li = key_str.split(',')
  695. li[0] = round(float(li[0]), 2)
  696. li[1] = round(float(li[1]), 4)
  697. li[2] = round(float(li[2]), 4)
  698. li[3] = round(float(li[3]), 2)
  699. return dict(zip(['order', 'roi', 'add', 'mult'], li))
  700. for x in total_data.keys():
  701. if x in ['d1', 'd2', 'd3', 'd4', 'd5', 'd6', 'd7', 'd8', 'd9', 'd10', 'd11', 'd12', 'd13', 'd14', 'd15', 'd16',
  702. 'd17', 'd18',
  703. 'd19', 'd20', 'd21', 'd22', 'd23', 'd24', 'd25', 'd26', 'd27', 'd28', 'd29', 'd30', 'd31', 'd32',
  704. 'd33', 'd34', 'd35', 'd36', 'd37', 'd38',
  705. 'd39', 'd40', 'd41', 'd42', 'd43', 'd44', 'd45', 'd46', 'd47', 'd48', 'd49', 'd50', 'd51', 'd52',
  706. 'd53', 'd54', 'd55', 'd56', 'd57', 'd58', 'd59',
  707. 'd60', 'm3', 'm4', 'm5']:
  708. total_data[x] = parse(total_data[x]) if total_data[x] is not None else {}
  709. for i in data:
  710. for x in i:
  711. if x in ['d1', 'd2', 'd3', 'd4', 'd5', 'd6', 'd7', 'd8', 'd9', 'd10', 'd11', 'd12', 'd13', 'd14', 'd15',
  712. 'd16', 'd17', 'd18',
  713. 'd19', 'd20', 'd21', 'd22', 'd23', 'd24', 'd25', 'd26', 'd27', 'd28', 'd29', 'd30', 'd31', 'd32',
  714. 'd33', 'd34', 'd35', 'd36', 'd37', 'd38',
  715. 'd39', 'd40', 'd41', 'd42', 'd43', 'd44', 'd45', 'd46', 'd47', 'd48', 'd49', 'd50', 'd51', 'd52',
  716. 'd53', 'd54', 'd55', 'd56', 'd57', 'd58', 'd59',
  717. 'd60', 'm3', 'm4', 'm5']:
  718. i[x] = parse(i[x]) if i[x] is not None else {}
  719. # print(data)
  720. return data, total, total_data
  721. def get_channel_summary(user_id, channel, pitcher, page, page_size, order_by, order, state, location, start, end):
  722. db = MysqlUtils()
  723. if user_id in super_auth(): # 超级数据权限
  724. op = ''
  725. else:
  726. channel_li = UserAuthUtils.get_auth_channel(user_id)
  727. print(channel_li.__len__())
  728. if len(channel_li) == 0:
  729. return None, None, None
  730. elif len(channel_li) == 1:
  731. op = f" and a.channel = '{channel_li[0]}'"
  732. else:
  733. op = f" and a.channel in {tuple(channel_li)}"
  734. op1 = f" and a.channel='{channel}'" if channel else ''
  735. op2 = f" and pitcher='{pitcher}'" if pitcher else ''
  736. op5 = f" and state='{state}'" if state else ''
  737. op6 = f" and a.dt>='{start}'" if start else ''
  738. op7 = f" and a.dt<='{end}'" if end else ''
  739. sql = f"""SELECT channel,
  740. if(end>date_sub(now(),interval 10 day),'在投','停投') state,
  741. start,end,
  742. total_cost,total_amount,
  743. total_amount-total_cost profit,
  744. if(total_cost=0,0,round(total_amount/total_cost,4)) roi,
  745. follow_user,
  746. if(follow_user=0,0,round(total_cost/follow_user,2)) follow_per_cost,
  747. order_user,
  748. if(follow_user=0,0,round(order_user/follow_user,4)) order_tran_rate,
  749. if(order_user=0,0,round(total_cost/order_user,2)) order_tran_cost,
  750. td_amount,yd_amount,byd_amount
  751. FROM
  752. (select
  753. channel,
  754. min(if(cost>0,dt,null)) start,
  755. max(if(cost>0,dt,null)) end,
  756. sum(cost) total_cost,
  757. sum(reg_order_amount) total_amount,
  758. sum(follow_user) follow_user,
  759. sum(reg_order_user) order_user,
  760. sum(ba1) td_amount,sum(ba2) yd_amount,sum(ba3) byd_amount
  761. from dw_channel a
  762. left join dw_channel_amount_daily_reverse b using (dt,channel)
  763. where 1=1 {op} {op1} {op2} {op6} {op7} GROUP BY a.channel) x
  764. having 1=1 {op5} ORDER BY {order_by} {order}
  765. """
  766. print(sql)
  767. sumsql = f"""select '总计' channel,
  768. sum(total_cost) total_cost,
  769. sum(total_amount) total_amount,sum(profit) profit,
  770. round(sum(total_amount)/sum(total_cost),4) roi,
  771. sum(follow_user) follow_user,
  772. sum(order_user) order_user,
  773. round(sum(total_cost)/sum(follow_user),2) follow_per_cost,
  774. round(sum(order_user)/sum(follow_user),4) order_tran_rate,
  775. round(sum(total_cost)/sum(order_user),2) order_tran_cost ,
  776. sum(td_amount) td_amount,sum(yd_amount) yd_amount,sum(byd_amount) byd_amount
  777. from ({sql}) a
  778. """
  779. return getLimitSumData(db.dm, sql, sumsql, page, page_size)
  780. def get_pitcher_channel_summary(user_id, channel, pitcher, page, page_size, order_by, order, state, location, start,
  781. end):
  782. """投手投放号"""
  783. db = MysqlUtils()
  784. if user_id in super_auth(): # 超级数据权限
  785. op = ''
  786. else:
  787. user_name_li = UserAuthUtils.get_auth_user(user_id)
  788. if len(user_name_li) == 1:
  789. op = f" and pitcher='{user_name_li[0]}'"
  790. else:
  791. op = f" and pitcher in {tuple(user_name_li)}"
  792. op1 = f" and a.channel='{channel}'" if channel else ''
  793. op2 = f" and pitcher='{pitcher}'" if pitcher else ''
  794. op4 = f" and location='{location}' " if location else ''
  795. op5 = f" and state='{state}'" if state else ''
  796. op6 = f" and a.dt>='{start}'" if start else ''
  797. op7 = f" and a.dt<='{end}'" if end else ''
  798. sql = f"""SELECT channel,
  799. if(end>date_sub(now(),interval 10 day),'在投','停投') state,
  800. location,start,end,total_cost,total_amount,
  801. total_amount-total_cost profit,
  802. if(total_cost=0,0,round(total_amount/total_cost,4)) roi,
  803. follow_user,
  804. if(follow_user=0,0,round(total_cost/follow_user,2)) follow_per_cost,
  805. order_user,
  806. if(follow_user=0,0,round(order_user/follow_user,4)) order_tran_rate,
  807. if(order_user=0,0,round(total_cost/order_user,2)) order_tran_cost,
  808. pitcher,stage,td_amount,yd_amount,byd_amount
  809. FROM
  810. (select
  811. channel,pitcher,stage,
  812. type location,
  813. min(if(cost>0,dt,null)) start,
  814. max(if(cost>0,dt,null)) end,
  815. sum(cost) total_cost,
  816. sum(reg_order_amount) total_amount,
  817. sum(follow_user) follow_user,
  818. sum(reg_order_user) order_user,
  819. sum(ba1) td_amount,sum(ba2) yd_amount,sum(ba3) byd_amount
  820. from dw_channel a
  821. left join dw_channel_amount_daily_reverse b using (dt,channel)
  822. where 1=1 {op} {op1} {op2} {op6} {op7} GROUP BY a.channel,type,pitcher,stage) x
  823. having 1=1 {op4} {op5} ORDER BY {order_by} {order}
  824. """
  825. print(sql)
  826. sumsql = f"""select '总计' channel,
  827. sum(total_cost) total_cost,
  828. sum(total_amount) total_amount,sum(profit) profit,
  829. round(sum(total_amount)/sum(total_cost),4) roi,
  830. sum(follow_user) follow_user,
  831. sum(order_user) order_user,
  832. round(sum(total_cost)/sum(follow_user),2) follow_per_cost,
  833. round(sum(order_user)/sum(follow_user),4) order_tran_rate,
  834. round(sum(total_cost)/sum(order_user),2) order_tran_cost ,
  835. sum(td_amount) td_amount,sum(yd_amount) yd_amount,sum(byd_amount) byd_amount
  836. from ({sql}) a
  837. """
  838. return getLimitSumData(db.dm, sql, sumsql, page, page_size)
  839. def get_pitcher_trend(pitcher, start=None, end=None, page=None, page_size=None, order_by=None, order=None):
  840. db = MysqlUtils()
  841. op1 = f" and pitcher='{pitcher}'"
  842. op2 = f" and dt>='{start}' " if start else ''
  843. op3 = f" and dt<='{end}' " if end else ''
  844. op4 = f" order by {order_by} {order}" if order_by and order else ''
  845. sql = f"""select dt,pitcher,
  846. cost,
  847. reg_amount,
  848. d1 first_amount,
  849. round(d1/cost,4) first_roi,
  850. round(reg_amount/cost,4) roi,
  851. d7 reg_amount7,
  852. round(d7/cost,4) roi7,
  853. d30 reg_amount30,
  854. round(d30/cost,4) roi30,
  855. reg_amount-cost profit,
  856. inva_cost expect_profit,
  857. annual_expect_profit,
  858. CONCAT(d1,",",0,',',round(d1/cost,4)) d1,
  859. CONCAT(d2-d1,",",round((d2-d1)/cost,4),',',round(d2/cost,4)) d2,
  860. CONCAT(d3-d2,",",round((d3-d2)/cost,4),',',round(d3/cost,4)) d3,
  861. CONCAT(d4-d3,",",round((d4-d3)/cost,4),',',round(d4/cost,4)) d4,
  862. CONCAT(d5-d4,",",round((d5-d4)/cost,4),',',round(d5/cost,4)) d5,
  863. CONCAT(d6-d5,",",round((d6-d5)/cost,4),',',round(d6/cost,4)) d6,
  864. CONCAT(d7-d6,",",round((d7-d6)/cost,4),',',round(d7/cost,4)) d7,
  865. CONCAT(d8-d7,",",round((d8-d7)/cost,4),',',round(d8/cost,4)) d8,
  866. CONCAT(d9-d8,",",round((d9-d8)/cost,4),',',round(d9/cost,4)) d9,
  867. CONCAT(d10-d9,",",round((d10-d9)/cost,4),',',round(d10/cost,4)) d10,
  868. CONCAT(d11-d10,",",round((d11-d10)/cost,4),',',round(d11/cost,4)) d11,
  869. CONCAT(d12-d11,",",round((d12-d11)/cost,4),',',round(d12/cost,4)) d12,
  870. CONCAT(d13-d12,",",round((d13-d12)/cost,4),',',round(d13/cost,4)) d13,
  871. CONCAT(d14-d13,",",round((d14-d13)/cost,4),',',round(d14/cost,4)) d14,
  872. CONCAT(d15-d14,",",round((d15-d14)/cost,4),',',round(d15/cost,4)) d15,
  873. CONCAT(d16-d15,",",round((d16-d15)/cost,4),',',round(d16/cost,4)) d16,
  874. CONCAT(d17-d16,",",round((d17-d16)/cost,4),',',round(d17/cost,4)) d17,
  875. CONCAT(d18-d17,",",round((d18-d17)/cost,4),',',round(d18/cost,4)) d18,
  876. CONCAT(d19-d18,",",round((d19-d18)/cost,4),',',round(d19/cost,4)) d19,
  877. CONCAT(d20-d19,",",round((d20-d19)/cost,4),',',round(d20/cost,4)) d20,
  878. CONCAT(d21-d20,",",round((d21-d20)/cost,4),',',round(d21/cost,4)) d21,
  879. CONCAT(d22-d21,",",round((d22-d21)/cost,4),',',round(d22/cost,4)) d22,
  880. CONCAT(d23-d22,",",round((d23-d22)/cost,4),',',round(d23/cost,4)) d23,
  881. CONCAT(d24-d23,",",round((d24-d23)/cost,4),',',round(d24/cost,4)) d24,
  882. CONCAT(d25-d24,",",round((d25-d24)/cost,4),',',round(d25/cost,4)) d25,
  883. CONCAT(d26-d25,",",round((d26-d25)/cost,4),',',round(d26/cost,4)) d26,
  884. CONCAT(d27-d26,",",round((d27-d26)/cost,4),',',round(d27/cost,4)) d27,
  885. CONCAT(d28-d27,",",round((d28-d27)/cost,4),',',round(d28/cost,4)) d28,
  886. CONCAT(d29-d28,",",round((d29-d28)/cost,4),',',round(d29/cost,4)) d29,
  887. CONCAT(d30-d29,",",round((d30-d29)/cost,4),',',round(d30/cost,4)) d30,
  888. d1 as da1,d2 as da2,d3 as da3,d4 as da4,d5 as da5,d6 as da6,d7 as da7,d8 as da8,d9 as da9,d10 as da10,
  889. d11 as da11,d12 as da12,d13 as da13,d14 as da14,d15 as da15,d16 as da16,d17 as da17,d18 as da18,d19 as da19,
  890. d20 as da20,d21 as da21,d22 as da22,d23 as da23,d24 as da24,d25 as da25,d26 as da26,d27 as da27,d28 as da28,
  891. d29 as da29,d30 as da30
  892. from dw_pitcher_trend where 1=1 {op1} {op2} {op3} {op4}
  893. """
  894. sumSql = f"""select concat(date_format(min(dt),'%Y/%m/%d'),'~',date_format(max(dt),'%Y/%m/%d')) dt,sum(cost) cost,
  895. sum(reg_amount) reg_amount,
  896. round(sum(first_amount)/sum(cost),4) first_roi,
  897. round(sum(reg_amount)/sum(cost),4) roi,
  898. sum(profit) profit,
  899. sum(first_amount) first_amount,
  900. round(sum(reg_amount7)/sum(cost),4) roi7,
  901. sum(reg_amount30) reg_amount30,
  902. round(sum(reg_amount30)/sum(cost),4) roi30,
  903. sum(expect_profit) expect_profit,
  904. sum(annual_expect_profit) annual_expect_profit,
  905. concat(sum(da1),',',sum(da1)/sum(cost),',', 0,',',1) d1,
  906. concat(sum(da2)-sum(if (da2,da1,0)),',',sum(da2)/sum(if (da2,cost,0)),',', (sum(da2)-sum(if (da2,da1,0)))/sum(if (da2,cost,0)),',',if(sum(if (da2,da1,0))=0,1,sum(da2)/sum(if (da2,da1,0))) ) d2,
  907. concat(sum(da3)-sum(if (da3,da2,0)),',',sum(da3)/sum(if (da3,cost,0)),',', (sum(da3)-sum(if (da3,da2,0)))/sum(if (da3,cost,0)),',',if(sum(if (da3,da1,0))=0,1,sum(da3)/sum(if (da3,da1,0))) ) d3,
  908. concat(sum(da4)-sum(if (da4,da3,0)),',',sum(da4)/sum(if (da4,cost,0)),',', (sum(da4)-sum(if (da4,da3,0)))/sum(if (da4,cost,0)),',',if(sum(if (da4,da1,0))=0,1,sum(da4)/sum(if (da4,da1,0))) ) d4,
  909. concat(sum(da5)-sum(if (da5,da4,0)),',',sum(da5)/sum(if (da5,cost,0)),',', (sum(da5)-sum(if (da5,da4,0)))/sum(if (da5,cost,0)),',',if(sum(if (da5,da1,0))=0,1,sum(da5)/sum(if (da5,da1,0))) ) d5,
  910. concat(sum(da6)-sum(if (da6,da5,0)),',',sum(da6)/sum(if (da6,cost,0)),',', (sum(da6)-sum(if (da6,da5,0)))/sum(if (da6,cost,0)),',',if(sum(if (da6,da1,0))=0,1,sum(da6)/sum(if (da6,da1,0))) ) d6,
  911. concat(sum(da7)-sum(if (da7,da6,0)),',',sum(da7)/sum(if (da7,cost,0)),',', (sum(da7)-sum(if (da7,da6,0)))/sum(if (da7,cost,0)),',',if(sum(if (da7,da1,0))=0,1,sum(da7)/sum(if (da7,da1,0))) ) d7,
  912. concat(sum(da8)-sum(if (da8,da7,0)),',',sum(da8)/sum(if (da8,cost,0)),',', (sum(da8)-sum(if (da8,da7,0)))/sum(if (da8,cost,0)),',',if(sum(if (da8,da1,0))=0,1,sum(da8)/sum(if (da8,da1,0))) ) d8,
  913. concat(sum(da9)-sum(if (da9,da8,0)),',',sum(da9)/sum(if (da9,cost,0)),',', (sum(da9)-sum(if (da9,da8,0)))/sum(if (da9,cost,0)),',',if(sum(if (da9,da1,0))=0,1,sum(da9)/sum(if (da9,da1,0))) ) d9,
  914. concat(sum(da10)-sum(if (da10,da9,0)),',',sum(da10)/sum(if (da10,cost,0)),',', (sum(da10)-sum(if (da10,da9,0)))/sum(if (da10,cost,0)),',',if(sum(if (da10,da1,0))=0,1,sum(da10)/sum(if (da10,da1,0))) ) d10,
  915. concat(sum(da11)-sum(if (da11,da10,0)),',',sum(da11)/sum(if (da11,cost,0)),',', (sum(da11)-sum(if (da11,da10,0)))/sum(if (da11,cost,0)),',',if(sum(if (da11,da1,0))=0,1,sum(da11)/sum(if (da11,da1,0))) ) d11,
  916. concat(sum(da12)-sum(if (da12,da11,0)),',',sum(da12)/sum(if (da12,cost,0)),',', (sum(da12)-sum(if (da12,da11,0)))/sum(if (da12,cost,0)),',',if(sum(if (da12,da1,0))=0,1,sum(da12)/sum(if (da12,da1,0))) ) d12,
  917. concat(sum(da13)-sum(if (da13,da12,0)),',',sum(da13)/sum(if (da13,cost,0)),',', (sum(da13)-sum(if (da13,da12,0)))/sum(if (da13,cost,0)),',',if(sum(if (da13,da1,0))=0,1,sum(da13)/sum(if (da13,da1,0))) ) d13,
  918. concat(sum(da14)-sum(if (da14,da13,0)),',',sum(da14)/sum(if (da14,cost,0)),',', (sum(da14)-sum(if (da14,da13,0)))/sum(if (da14,cost,0)),',',if(sum(if (da14,da1,0))=0,1,sum(da14)/sum(if (da14,da1,0))) ) d14,
  919. concat(sum(da15)-sum(if (da15,da14,0)),',',sum(da15)/sum(if (da15,cost,0)),',', (sum(da15)-sum(if (da15,da14,0)))/sum(if (da15,cost,0)),',',if(sum(if (da15,da1,0))=0,1,sum(da15)/sum(if (da15,da1,0))) ) d15,
  920. concat(sum(da16)-sum(if (da16,da15,0)),',',sum(da16)/sum(if (da16,cost,0)),',', (sum(da16)-sum(if (da16,da15,0)))/sum(if (da16,cost,0)),',',if(sum(if (da16,da1,0))=0,1,sum(da16)/sum(if (da16,da1,0))) ) d16,
  921. concat(sum(da17)-sum(if (da17,da16,0)),',',sum(da17)/sum(if (da17,cost,0)),',', (sum(da17)-sum(if (da17,da16,0)))/sum(if (da17,cost,0)),',',if(sum(if (da17,da1,0))=0,1,sum(da17)/sum(if (da17,da1,0))) ) d17,
  922. concat(sum(da18)-sum(if (da18,da17,0)),',',sum(da18)/sum(if (da18,cost,0)),',', (sum(da18)-sum(if (da18,da17,0)))/sum(if (da18,cost,0)),',',if(sum(if (da18,da1,0))=0,1,sum(da18)/sum(if (da18,da1,0))) ) d18,
  923. concat(sum(da19)-sum(if (da19,da18,0)),',',sum(da19)/sum(if (da19,cost,0)),',', (sum(da19)-sum(if (da19,da18,0)))/sum(if (da19,cost,0)),',',if(sum(if (da19,da1,0))=0,1,sum(da19)/sum(if (da19,da1,0))) ) d19,
  924. concat(sum(da20)-sum(if (da20,da19,0)),',',sum(da20)/sum(if (da20,cost,0)),',', (sum(da20)-sum(if (da20,da19,0)))/sum(if (da20,cost,0)),',',if(sum(if (da20,da1,0))=0,1,sum(da20)/sum(if (da20,da1,0))) ) d20,
  925. concat(sum(da21)-sum(if (da21,da20,0)),',',sum(da21)/sum(if (da21,cost,0)),',', (sum(da21)-sum(if (da21,da20,0)))/sum(if (da21,cost,0)),',',if(sum(if (da21,da1,0))=0,1,sum(da21)/sum(if (da21,da1,0))) ) d21,
  926. concat(sum(da22)-sum(if (da22,da21,0)),',',sum(da22)/sum(if (da22,cost,0)),',', (sum(da22)-sum(if (da22,da21,0)))/sum(if (da22,cost,0)),',',if(sum(if (da22,da1,0))=0,1,sum(da22)/sum(if (da22,da1,0))) ) d22,
  927. concat(sum(da23)-sum(if (da23,da22,0)),',',sum(da23)/sum(if (da23,cost,0)),',', (sum(da23)-sum(if (da23,da22,0)))/sum(if (da23,cost,0)),',',if(sum(if (da23,da1,0))=0,1,sum(da23)/sum(if (da23,da1,0))) ) d23,
  928. concat(sum(da24)-sum(if (da24,da23,0)),',',sum(da24)/sum(if (da24,cost,0)),',', (sum(da24)-sum(if (da24,da23,0)))/sum(if (da24,cost,0)),',',if(sum(if (da24,da1,0))=0,1,sum(da24)/sum(if (da24,da1,0))) ) d24,
  929. concat(sum(da25)-sum(if (da25,da24,0)),',',sum(da25)/sum(if (da25,cost,0)),',', (sum(da25)-sum(if (da25,da24,0)))/sum(if (da25,cost,0)),',',if(sum(if (da25,da1,0))=0,1,sum(da25)/sum(if (da25,da1,0))) ) d25,
  930. concat(sum(da26)-sum(if (da26,da25,0)),',',sum(da26)/sum(if (da26,cost,0)),',', (sum(da26)-sum(if (da26,da25,0)))/sum(if (da26,cost,0)),',',if(sum(if (da26,da1,0))=0,1,sum(da26)/sum(if (da26,da1,0))) ) d26,
  931. concat(sum(da27)-sum(if (da27,da26,0)),',',sum(da27)/sum(if (da27,cost,0)),',', (sum(da27)-sum(if (da27,da26,0)))/sum(if (da27,cost,0)),',',if(sum(if (da27,da1,0))=0,1,sum(da27)/sum(if (da27,da1,0))) ) d27,
  932. concat(sum(da28)-sum(if (da28,da27,0)),',',sum(da28)/sum(if (da28,cost,0)),',', (sum(da28)-sum(if (da28,da27,0)))/sum(if (da28,cost,0)),',',if(sum(if (da28,da1,0))=0,1,sum(da28)/sum(if (da28,da1,0))) ) d28,
  933. concat(sum(da29)-sum(if (da29,da28,0)),',',sum(da29)/sum(if (da29,cost,0)),',', (sum(da29)-sum(if (da29,da28,0)))/sum(if (da29,cost,0)),',',if(sum(if (da29,da1,0))=0,1,sum(da29)/sum(if (da29,da1,0))) ) d29,
  934. concat(sum(da30)-sum(if (da30,da29,0)),',',sum(da30)/sum(if (da30,cost,0)),',', (sum(da30)-sum(if (da30,da29,0)))/sum(if (da30,cost,0)),',',if(sum(if (da30,da1,0))=0,1,sum(da30)/sum(if (da30,da1,0))) ) d30
  935. from ({sql}) a
  936. """
  937. data, total, total_data = getLimitSumData(db.dm, sql, sumSql, page, page_size)
  938. print(data)
  939. def parse(key_str):
  940. if type(key_str) is not str:
  941. key_str = key_str.decode('utf-8')
  942. li = key_str.split(',')
  943. li[0] = round(float(li[0]), 2)
  944. li[1] = round(float(li[1]), 4)
  945. li[2] = round(float(li[2]), 4)
  946. return dict(zip(['amount', 'add', 'roi'], li))
  947. for k, v in total_data.items():
  948. if k in ['d1', 'd2', 'd3', 'd4', 'd5', 'd6', 'd7', 'd8', 'd9', 'd10',
  949. 'd11', 'd12', 'd13', 'd14', 'd15', 'd16', 'd17', 'd18', 'd19', 'd20', 'd21', 'd22', 'd23', 'd24',
  950. 'd25', 'd26', 'd27', 'd28', 'd29', 'd30']:
  951. total_data[k] = parse(v) if v else {}
  952. for i in data:
  953. for k, v in i.items():
  954. if k in ['d1', 'd2', 'd3', 'd4', 'd5', 'd6', 'd7', 'd8', 'd9', 'd10',
  955. 'd11', 'd12', 'd13', 'd14', 'd15', 'd16', 'd17', 'd18', 'd19', 'd20', 'd21', 'd22', 'd23', 'd24',
  956. 'd25', 'd26', 'd27', 'd28', 'd29', 'd30']:
  957. i[k] = parse(v) if v else {}
  958. return data, total, total_data
  959. if __name__ == '__main__':
  960. get_pitcher_trend(pitcher="陈凯")