Commit 47650b64 authored by clone's avatar clone

bug

parent b5867c91
......@@ -124,6 +124,7 @@ class Report extends Basic
/* $params = array(
"report_id" => 1,
"agent_id" => 12,
"agent_name" => "saewerw",
"user_type" =>"1,2", // 用户类型
"decision_maker" =>"zhangsan",// 第一决策人
"industry_type" =>"1,2",//租商铺做什么
......@@ -139,7 +140,7 @@ class Report extends Basic
);*/
header('Access-Control-Allow-Origin:*');
$params = $this->params;
if (!isset($params['report_id']) || !isset($params['agent_id']) || !isset($params['user_type']) ||
if (!isset($params['report_id']) || !isset($params['agent_id']) || !isset($params['agent_name']) || !isset($params['user_type']) ||
!isset($params['industry_type']) || !isset($params['area_requirement']) || !isset($params['price_requirement'])) {
return $this->response("101", "请求参数错误");
}
......
......@@ -237,7 +237,7 @@ class OrderLogService
}
}
//跟进
$field_follow_up = "id,user_type,decision_maker,industry_type,area_requirement,price_requirement,province,city,
$field_follow_up = "id,agent_id,agent_name,user_type,decision_maker,industry_type,area_requirement,price_requirement,province,city,
district,business_area,explain,explain_img,create_time";
$followUpLogData = $followUpLogModel->selectFollowUpListByReportId($field_follow_up, [ "report_id" => $report_id ]);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment