Commit f5393a23 by 朱继来

调整客户绑定

parent 887861fa
Showing with 2 additions and 2 deletions
......@@ -143,12 +143,12 @@ class SpecialController extends Controller
foreach ($excel as $k=>$v) {
// 1. 根据手机或邮箱查找客户最近的订单
$order_id = $this->getLastOrderId($v[0]);
$order_id = $this->getLastOrderId(trim($v[0]));
if ($order_id === false) continue;
// 2. 根据企业邮箱查找sale_id
$sale_id = $this->getSaleId(strtolower($v[1]));
$sale_id = $this->getSaleId(trim(strtolower($v[1])));
if ($sale_id === false) continue;
......
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 sign in to comment