$shop_id]; $model = new FaceSheetTemplate(); $count = $model->where($where)->count('id'); $lists = $model->order('id', 'desc') ->where($where) ->page($get['page'], $get['limit']) ->select(); foreach ($lists as &$item) { $item['express'] = Express::where(['id'=>$item['express_id']])->value('name') ?? '未知'; } return ['count' => $count, 'lists' => $lists]; } /** * @notes 获取电子面单模板详细 * @param $id * @param $shop_id * @return array|\think\Model|null * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException * @author 段誉 * @date 2023/2/13 15:34 */ public static function detail($id, $shop_id) { return FaceSheetTemplate::where(['id' => intval($id), 'shop_id' => $shop_id])->find(); } /** * @notes 新增电子面单模板 * @param $post * @param $shop_id * @return bool|string * @author 段誉 * @date 2023/2/13 15:31 */ public static function add($post, $shop_id) { try { FaceSheetTemplate::create([ 'shop_id' => $shop_id, 'express_id' => $post['express_id'], 'name' => $post['name'], 'template_id' => $post['template_id'], 'partner_id' => $post['partner_id'], 'partner_key' => $post['partner_key'], 'net' => $post['net'], 'pay_type' => $post['pay_type'], 'create_time' => time(), 'update_time' => time() ]); return true; } catch (Exception $e) { return $e->getMessage(); } } /** * @notes 编辑电子面单模板 * @param $post * @return bool|string * @author 段誉 * @date 2023/2/13 15:32 */ public static function edit($post, $shop_id) { try { FaceSheetTemplate::update([ 'express_id' => $post['express_id'], 'name' => $post['name'], 'template_id' => $post['template_id'], 'partner_id' => $post['partner_id'], 'partner_key' => $post['partner_key'], 'net' => $post['net'], 'pay_type' => $post['pay_type'], 'update_time' => time() ], ['id' => $post['id'], 'shop_id' => $shop_id]); return true; } catch (Exception $e) { return $e->getMessage(); } } /** * @notes 删除电子面单模板 * @param $id * @param $shop_id * @return bool|string * @author 段誉 * @date 2023/2/13 15:32 */ public static function del($id, $shop_id) { try { FaceSheetTemplate::where(['shop_id' => $shop_id, 'id' => $id]) ->delete(); return true; } catch (Exception $e) { return $e->getMessage(); } } /** * @notes 快递公司 * @return \think\Collection * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException * @author 段誉 * @date 2023/2/13 15:13 */ public static function allExpress() { return Express::where(['del' => 0])->select(); } /** * @notes 所有电子面单模板 * @return \think\Collection * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException * @author 段誉 * @date 2023/2/13 16:02 */ public static function allTpl($shop_id) { $model = new FaceSheetTemplate(); return $model->where(['shop_id' => $shop_id]) ->order('id', 'desc') ->select(); } }