Commit 70fa10bc authored by zw's avatar zw

报备

parent 26ce3426
...@@ -56,7 +56,12 @@ class FollowUp extends Basic ...@@ -56,7 +56,12 @@ class FollowUp extends Basic
$intro = $params["intro"]; $intro = $params["intro"];
$predict_see_time = $params["predict_see_time"]; $predict_see_time = $params["predict_see_time"];
return $this->service_->verifyReport($agent_id, $store_id, $user_id, $house_ids, $vehicle, $intro, $predict_see_time); $is_ok = $this->service_->verifyReport($agent_id, $store_id, $user_id, $house_ids, $vehicle, $intro, $predict_see_time);
if($is_ok > 0){
return $this->response("200","request success",[]);
}else{
return $this->response("101","save exception");
}
} }
......
...@@ -89,6 +89,13 @@ class FollowUpService ...@@ -89,6 +89,13 @@ class FollowUpService
return $this->followUpModel->addFollowUp($param); return $this->followUpModel->addFollowUp($param);
} }
/**
* 订单子表
* @param $order_no
* @param $f_id
* @param $house_id
* @return mixed
*/
private function orderBin($order_no, $f_id, $house_id) private function orderBin($order_no, $f_id, $house_id)
{ {
$param["order_no"] = $order_no; $param["order_no"] = $order_no;
......
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