where($condition)->count(); } /** * 增加 * @access public * @author csdeshang * @param array $data 参数内容 * @return bool */ public function addComplain($data) { return Db::name('complain')->insertGetId($data); } /** * 更新 * @access public * @author csdeshang * @param array $update_array 更新数据 * @param array $where_array 更新条件 * @return boll */ public function editComplain($update_array, $where_array) { return Db::name('complain')->where($where_array)->update($update_array); } /** * 删除 * @access public * @author csdeshang * @param array $condition 条件 * @return bool */ public function delComplain($condition) { return Db::name('complain')->where($condition)->delete(); } /** * 获得投诉列表 * @access public * @author csdeshang * @param array $condition 检索条件 * @param int $pagesize 分页信息 * @param str $order 排序 * @return array */ public function getComplainList($condition = '', $pagesize = '', $order = 'complain_id desc') { if ($pagesize) { $res = Db::name('complain')->where($condition)->order($order)->paginate(['list_rows' => $pagesize, 'query' => request()->param()], false); $this->page_info = $res; return $res->items(); } else { return Db::name('complain')->where($condition)->order($order)->select()->toArray(); } } /** * 获得投诉商品列表 * @access public * @author csdeshang * @param array $complain_list 投诉列表 * @return array */ public function getComplainGoodsList($complain_list) { $goods_ids = array(); if (!empty($complain_list) && is_array($complain_list)) { foreach ($complain_list as $key => $value) { $goods_ids[] = $value['order_goods_id']; //订单商品表编号 } } $res = Db::name('ordergoods')->where('rec_id', 'in', $goods_ids)->select()->toArray(); return ds_change_arraykey($res, 'rec_id'); } /** * 检查投诉是否存在 * @access public * @author csdeshang * @param array $condition 检索条件 * @return boolean */ public function isComplainExist($condition = '') { $list = Db::name('complain')->where($condition)->select()->toArray(); if (empty($list)) { return false; } else { return true; } } /** * 根据id获取投诉详细信息 * @access public * @author csdeshang * @param int $complain_id 投诉ID * @return type */ public function getOneComplain($complain_id) { return Db::name('complain')->where('complain_id', intval($complain_id))->find(); } }