|
@@ -579,6 +579,7 @@ class FeishuSubmitApp:
|
|
|
market_person = str(row_dict.get("市场人员", "")) if pd.notna(row_dict.get("市场人员")) else ""
|
|
market_person = str(row_dict.get("市场人员", "")) if pd.notna(row_dict.get("市场人员")) else ""
|
|
|
userId = str(row_dict.get("用户ID", "")) if pd.notna(row_dict.get("用户ID")) else ""
|
|
userId = str(row_dict.get("用户ID", "")) if pd.notna(row_dict.get("用户ID")) else ""
|
|
|
channel_code = str(row_dict.get("渠道代码", "")) if pd.notna(row_dict.get("渠道代码")) else ""
|
|
channel_code = str(row_dict.get("渠道代码", "")) if pd.notna(row_dict.get("渠道代码")) else ""
|
|
|
|
|
+ userImg = str(row_dict.get("人员头像", "")) if pd.notna(row_dict.get("人员头像")) else ""
|
|
|
# 去掉数字的小数点
|
|
# 去掉数字的小数点
|
|
|
phone = phone.split('.')[0]
|
|
phone = phone.split('.')[0]
|
|
|
self.log(f" 📝 提取数据: 姓名={name}, 手机={phone}, 渠道代码={channel_code}, 意向学校={target_school_text}, 咨询项目={consulting_text}, 产品={product_text}", "debug")
|
|
self.log(f" 📝 提取数据: 姓名={name}, 手机={phone}, 渠道代码={channel_code}, 意向学校={target_school_text}, 咨询项目={consulting_text}, 产品={product_text}", "debug")
|
|
@@ -761,7 +762,7 @@ class FeishuSubmitApp:
|
|
|
"users": [{
|
|
"users": [{
|
|
|
"userId":userId,
|
|
"userId":userId,
|
|
|
"name":market_person,
|
|
"name":market_person,
|
|
|
- "avatarUrl":"https://s3-imfile.feishucdn.com/static-resource/v1/v3_0013q_44a1d366-78d6-4a4b-ad37-294ff4b5d55g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp",
|
|
|
|
|
|
|
+ "avatarUrl":userImg,
|
|
|
"enName":market_person,
|
|
"enName":market_person,
|
|
|
"notify":False,
|
|
"notify":False,
|
|
|
}]
|
|
}]
|