5 Commits 6a29ee83a4 ... 9d0a4a90cc

Author SHA1 Message Date
  binren 9d0a4a90cc 修改邮件人 4 years ago
  binren 4e877c45c1 文件储存路径修改 4 years ago
  binren f4fbd07c1e 增加接口返回 4 years ago
  binren 88515752b2 增加接口返回结果 4 years ago
  binren 8d43a3011c 文件保存路径修改 4 years ago
3 changed files with 5 additions and 7 deletions
  1. 3 5
      jianye_report.py
  2. 1 1
      report_push.py
  3. 1 1
      xlwt_util.py

+ 3 - 5
jianye_report.py

@@ -323,19 +323,16 @@ class JianYeReport(object):
         send_mail_info = []
         rfu = ReportFileUtils()
         customers = self.get_report_customers(task_key)
-        message[0] = '客户信息获取成功'
         send_mail_log = []
         brand_table_one = None
         brand_table_two = None
         try:
-            save_path = FileUtil().save_path_create()
+            save_path = '/tmp'
             send_data = []
             if task_key == 12:
                 brand_table_one = self.brand_data()
-                message['brand'] = 'success'
                 house_ids = self.get_house_id_by_brand_id('13')
                 brand_table_two = self.house_data(house_ids)
-                message['house'] = 'success'
             for customer in customers:
                 name = customer[2]
                 customer_type = customer[1]
@@ -440,7 +437,7 @@ class JianYeReport(object):
         message['customer'] = str(customer_id)
         send_data = []
         if customers:
-            save_path = FileUtil().save_path_create()
+            save_path = '/tmp'
             for customer in customers:
                 try:
                     name = customer[1]
@@ -509,6 +506,7 @@ class JianYeReport(object):
                     send_mail_log.append([data[6], data[7], data[2], -1, '文件创建失败:{}'.format(str(e))])
         else:
             message['excel_info'] = '需要生成excel的数据空'
+        message['data'] = send_mail_info
         # 发送邮件
         if len(send_data) > 0:
             for mail in send_mail_info:

+ 1 - 1
report_push.py

@@ -460,7 +460,7 @@ class ReportPush(object):
         self.db = MysqlDB(db_name)
         pass
 
-    mails = ['1285211525@qq.com']
+    mails = ['zhangbr@elab-plus.com']
 
     def report_push(self, task_key):
         message = {}

+ 1 - 1
xlwt_util.py

@@ -131,7 +131,7 @@ class XlwtUtil(object):
         """
         day = '移动案场订阅日报_{}_{}.xls'
         week = '移动案场订阅周报_{}_{}至{}.xls'
-        new_file_name = self.save_path_create()
+        new_file_name = '/tmp'
         if task_key in (1, 4):
             day = day.format(name, time_range[0])
             return ['{}/{}'.format(new_file_name, day), day]