|
@@ -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:
|