'未找到店员信息']); } return $model; } /** * 验证用户是否为核销员 * @param $shop_id * @return bool */ public function checkUser($shop_id) { if ($this['is_delete']) { $this->error = '未找到店员信息'; return false; } if ($this['shop_id'] != $shop_id) { $this->error = '当前店员不属于该门店,没有核销权限'; return false; } if (!$this['status']) { $this->error = '当前店员状态已被禁用'; return false; } return true; } }