diff --git a/app/adminapi/controller/platform/PlatformController.php b/app/adminapi/controller/platform/PlatformController.php new file mode 100644 index 00000000..079716fe --- /dev/null +++ b/app/adminapi/controller/platform/PlatformController.php @@ -0,0 +1,94 @@ +dataLists(new PlatformLists()); + } + + + /** + * @notes 添加 + * @return \think\response\Json + * @author likeadmin + * @date 2023/08/28 13:37 + */ + public function add() + { + $params = (new PlatformValidate())->post()->goCheck('add'); + $result = PlatformLogic::add($params); + if (true === $result) { + return $this->success('添加成功', [], 1, 1); + } + return $this->fail(PlatformLogic::getError()); + } + + + /** + * @notes 编辑 + * @return \think\response\Json + * @author likeadmin + * @date 2023/08/28 13:37 + */ + public function edit() + { + $params = (new PlatformValidate())->post()->goCheck('edit'); + $result = PlatformLogic::edit($params); + if (true === $result) { + return $this->success('编辑成功', [], 1, 1); + } + return $this->fail(PlatformLogic::getError()); + } + + + /** + * @notes 删除 + * @return \think\response\Json + * @author likeadmin + * @date 2023/08/28 13:37 + */ + public function delete() + { + $params = (new PlatformValidate())->post()->goCheck('delete'); + PlatformLogic::delete($params); + return $this->success('删除成功', [], 1, 1); + } + + + /** + * @notes 获取详情 + * @return \think\response\Json + * @author likeadmin + * @date 2023/08/28 13:37 + */ + public function detail() + { + $params = (new PlatformValidate())->goCheck('detail'); + $result = PlatformLogic::detail($params); + return $this->data($result); + } + + +} \ No newline at end of file diff --git a/app/adminapi/lists/platform/PlatformLists.php b/app/adminapi/lists/platform/PlatformLists.php new file mode 100644 index 00000000..6283d949 --- /dev/null +++ b/app/adminapi/lists/platform/PlatformLists.php @@ -0,0 +1,64 @@ + ['company_name', 'company_user', 'company_phone', 'company_address'], + ]; + } + + + /** + * @notes 获取列表 + * @return array + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + * @author likeadmin + * @date 2023/08/28 13:37 + */ + public function lists(): array + { + return Platform::where($this->searchWhere)->where('is_del',1) + ->field(['id', 'company_name', 'company_user', 'company_phone', 'company_address', 'is_del']) + ->limit($this->limitOffset, $this->limitLength) + ->order(['id' => 'desc']) + ->select() + ->toArray(); + } + + + /** + * @notes 获取数量 + * @return int + * @author likeadmin + * @date 2023/08/28 13:37 + */ + public function count(): int + { + return Platform::where($this->searchWhere)->where('is_del',1)->count(); + } + +} \ No newline at end of file diff --git a/app/adminapi/lists/vehicle/VehicleLists.php b/app/adminapi/lists/vehicle/VehicleLists.php index f2fd493f..1bb71e61 100644 --- a/app/adminapi/lists/vehicle/VehicleLists.php +++ b/app/adminapi/lists/vehicle/VehicleLists.php @@ -1,23 +1,11 @@ ['gps_imei'], - '=' => ['license','status'], + '=' => ['license','status','type','is_check'], ]; } @@ -56,26 +44,16 @@ class VehicleLists extends BaseAdminDataLists implements ListsSearchInterface */ public function lists(): array { - return Vehicle::where($this->searchWhere)->where('is_del',0) - ->field(['id', 'license', 'gps_imei', 'gps_carid', 'status']) + return Vehicle::where($this->searchWhere)->where('is_del',1) + ->field(['id','company_id','license', 'gps_imei', 'status','type','is_check']) ->limit($this->limitOffset, $this->limitLength) ->order(['id' => 'desc']) ->select() ->each(function($item){ $item['status_name'] = $item->status_name; - $item['rent'] = VehicleRent::where('car_id',$item['id'])->find(); - $product_count = 0; - if($item['rent'] && $item['rent']['lessee_two_flag'] == 1){ - //获取物流信息 - $logistics = Logistics::field('order_id')->where('courier_id',$item['rent']['lessee_two_user_id'])->where('status',1)->select()->toArray(); - foreach($logistics as $v){ - //获取订单信息 - Product::field('product_num')->where('order_id', $v['order_id'])->select()->each(function($pro_item) use(&$product_count){ - $product_count += $pro_item['product_num']; - })->toArray(); - } - } - $item['goods_total'] = $product_count; + $item['type_name'] = $item->type_name; + $item['is_check_name'] = $item->is_check_name; + $item['company_name'] = Platform::where('id',$item['company_id'])->column('company_name')[0]; return $item; }) ->toArray(); @@ -90,7 +68,7 @@ class VehicleLists extends BaseAdminDataLists implements ListsSearchInterface */ public function count(): int { - return Vehicle::where($this->searchWhere)->count(); + return Vehicle::where($this->searchWhere)->where('is_del',1)->count(); } } \ No newline at end of file diff --git a/app/adminapi/logic/platform/PlatformLogic.php b/app/adminapi/logic/platform/PlatformLogic.php new file mode 100644 index 00000000..fdf59718 --- /dev/null +++ b/app/adminapi/logic/platform/PlatformLogic.php @@ -0,0 +1,102 @@ + $params['company_name'], + 'company_user' => $params['company_user'], + 'company_phone' => $params['company_phone'], + 'company_address' => $params['company_address'], + 'is_del' => 1, + 'create_time' => time() + ]); + + Db::commit(); + return true; + } catch (\Exception $e) { + Db::rollback(); + self::setError($e->getMessage()); + return false; + } + } + + + /** + * @notes 编辑 + * @param array $params + * @return bool + * @author likeadmin + * @date 2023/08/28 13:37 + */ + public static function edit(array $params): bool + { + Db::startTrans(); + try { + Platform::where('id', $params['id'])->update([ + 'company_name' => $params['company_name'], + 'company_user' => $params['company_user'], + 'company_phone' => $params['company_phone'], + 'company_address' => $params['company_address'], + ]); + Db::commit(); + return true; + } catch (\Exception $e) { + Db::rollback(); + self::setError($e->getMessage()); + return false; + } + } + + + /** + * @notes 删除 + * @param array $params + * @return bool + * @author likeadmin + * @date 2023/08/28 13:37 + */ + public static function delete(array $params): bool + { + $model = Platform::find($params); + $model->is_del = 2; + return $model->save(); + } + + + /** + * @notes 获取详情 + * @param $params + * @return array + * @author likeadmin + * @date 2023/08/28 13:37 + */ + public static function detail($params): array + { + return Platform::where('is_del',1)->findOrEmpty($params['id'])->toArray(); + } +} \ No newline at end of file diff --git a/app/adminapi/logic/vehicle/VehicleLogic.php b/app/adminapi/logic/vehicle/VehicleLogic.php index eae834c4..0ce995e7 100644 --- a/app/adminapi/logic/vehicle/VehicleLogic.php +++ b/app/adminapi/logic/vehicle/VehicleLogic.php @@ -1,21 +1,7 @@ info($params['gps_imei']); - if($car['code'] == 0){ - self::setError('添加失败'); - return false; - } Vehicle::create([ + 'company_id' => $params['company_id'], 'license' => $params['license'], 'gps_imei' => $params['gps_imei'], - 'gps_carid' => $car['data']['carId'], - 'status' => $params['status'], - 'is_del' => 0 + 'type' => 1, + 'status' => 1, + 'is_del' => 1, + 'is_check' => 1, ]); - Db::commit(); return true; } catch (\Exception $e) { @@ -74,22 +55,13 @@ class VehicleLogic extends BaseLogic { Db::startTrans(); try { - //获取数据 - $data = Vehicle::where('id',$params['id'])->find(); - if($data['gps_imei'] != $params['gps_imei']){ - //获取gps_car_id - $car = (new GpsLogic()) -> info($params['gps_imei']); - if($car['code'] == 0){ - self::setError('添加失败'); - return false; - } - $data['gps_carid'] = $car['data']['carId']; - } Vehicle::where('id', $params['id'])->update([ + 'company_id' => $params['company_id'], 'license' => $params['license'], 'gps_imei' => $params['gps_imei'], - 'gps_carid' => $data['gps_carid'], - 'status' => $params['status'] + 'type' => $params['type'], + 'status' => $params['status'], + 'is_check' => $params['is_check'] ]); Db::commit(); return true; @@ -112,10 +84,10 @@ class VehicleLogic extends BaseLogic { try { $data = Vehicle::where('id', $params['id'])->find(); - if($data['is_del'] !== 0){ + if($data['is_del'] !== 1){ return false; } - Vehicle::where('id', $params['id'])->update(['is_del' => 1]); + Vehicle::where('id', $params['id'])->update(['is_del' => 2]); return true; }catch (\Exception $e){ self::setError($e->getMessage()); @@ -133,8 +105,7 @@ class VehicleLogic extends BaseLogic */ public static function detail($params): array { - $data = Vehicle::findOrEmpty($params['id']); - $data['status_name'] = $data->status_name; + $data = Vehicle::where('is_del',1)->findOrEmpty($params['id']); return $data->toArray(); } } \ No newline at end of file diff --git a/app/adminapi/validate/platform/PlatformValidate.php b/app/adminapi/validate/platform/PlatformValidate.php new file mode 100644 index 00000000..cfe1556f --- /dev/null +++ b/app/adminapi/validate/platform/PlatformValidate.php @@ -0,0 +1,90 @@ + 'require', + 'company_name' => 'require', + 'company_user' => 'require', + 'company_phone' => 'require|mobile', + 'company_address' => 'require', + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'id' => 'id', + 'company_name' => '平台公司名称', + 'company_user' => '平台公司负责人', + 'company_phone' => '平台公司联系电话', + 'company_address' => '平台公司地址', + ]; + + + /** + * @notes 添加场景 + * @return PlatformValidate + * @author likeadmin + * @date 2023/08/28 13:37 + */ + public function sceneAdd() + { + return $this->only(['company_name','company_user','company_phone','company_address']); + } + + + /** + * @notes 编辑场景 + * @return PlatformValidate + * @author likeadmin + * @date 2023/08/28 13:37 + */ + public function sceneEdit() + { + return $this->only(['id','company_name','company_user','company_phone','company_address','is_del']); + } + + + /** + * @notes 删除场景 + * @return PlatformValidate + * @author likeadmin + * @date 2023/08/28 13:37 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return PlatformValidate + * @author likeadmin + * @date 2023/08/28 13:37 + */ + public function sceneDetail() + { + return $this->only(['id']); + } + +} \ No newline at end of file diff --git a/app/adminapi/validate/vehicle/VehicleValidate.php b/app/adminapi/validate/vehicle/VehicleValidate.php index 5dfa5a9a..caadc34b 100644 --- a/app/adminapi/validate/vehicle/VehicleValidate.php +++ b/app/adminapi/validate/vehicle/VehicleValidate.php @@ -31,9 +31,12 @@ class VehicleValidate extends BaseValidate */ protected $rule = [ 'id' => 'require', + 'company_id' => 'require|integer', 'license' => 'require|unique:vehicle', - 'gps_imei' => 'require|unique:vehicle', - 'status' => 'require', + 'gps_imei' => 'require|number|unique:vehicle', + 'type' => 'require|in:1,2', + 'status' => 'require|in:1,2', + 'is_check' => 'require|in:1,2', ]; @@ -43,9 +46,12 @@ class VehicleValidate extends BaseValidate */ protected $field = [ 'id' => 'id', + 'company_id' => '所属公司', 'license' => '车辆牌照', 'gps_imei' => 'gps定位器设备标志', - 'status' => '车辆状态:0:未出租 1:一级出租 2:二级出租', + 'type' => '车辆类型:1:平台自营 2:社会车辆', + 'status' => '车辆状态:1:未出租 2:已出租', + 'is_check' => '是否审核:1:未审核 2:已审核', ]; @@ -57,7 +63,7 @@ class VehicleValidate extends BaseValidate */ public function sceneAdd() { - return $this->only(['license','gps_imei','status']); + return $this->only(['company_id','license','gps_imei']); } @@ -69,7 +75,7 @@ class VehicleValidate extends BaseValidate */ public function sceneEdit() { - return $this->only(['id','license','gps_imei','status'])->remove('license', 'unique')->remove('gps_imei', 'unique'); + return $this->only(['id','company_id','license','gps_imei','status','type','is_check'])->remove('license', 'unique')->remove('gps_imei', 'unique'); } diff --git a/app/common/model/platform/Platform.php b/app/common/model/platform/Platform.php new file mode 100644 index 00000000..7e24328f --- /dev/null +++ b/app/common/model/platform/Platform.php @@ -0,0 +1,20 @@ +'未出租',1=>'一级出租',2=>'二级出租']; + $status = [1=>'未出租',2=>'已出租']; return $status[$data['status']]; } + + public function getTypeNameAttr($value,$data): string + { + $type = [1=>'平台车辆',2=>'社会车辆']; + return $type[$data['type']]; + } + + public function getIsCheckNameAttr($value,$data): string + { + $is_check = [1=>'未审核',2=>'已审核']; + return $is_check[$data['is_check']]; + } } \ No newline at end of file