| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315 |
- <?php
- namespace app\api\logic;
- use app\common\{enum\GoodsEnum,
- enum\PayEnum,
- enum\WorkEnum,
- logic\BaseLogic,
- model\goods\Goods,
- model\orders\RechargeOrder,
- model\recharge\OrderGoods,
- model\setting\PostageRegion,
- model\third\ThirdGoods,
- model\third\ThirdOrders,
- model\user\User,
- model\works\ServiceWork};
- use think\facade\Db;
- /**
- * 第三方平台下单逻辑层
- * Class UserLogic
- * @package app\shopapi\logic
- */
- class ThirdOrderLogic extends BaseLogic
- {
- /**
- * 处理订单
- * @param array $order
- * @return bool
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public static function orderhandle(array $order)
- {
- $message = json_decode($order['message'], true);
- //查询用户是否存在
- $userName = $message['userName'];
- $mobile = $message['mobile'];
- $userAddress = json_decode($message['userAddress']);
- $user = User::where(['mobile' =>$mobile])->findOrEmpty();
- $product_message = json_decode($message['products'],true);
- if($user->isEmpty()){
- $user = LoginLogic::register([
- 'password'=>'123456',
- 'account'=>$userName,
- 'mobile'=>$mobile,
- 'channel'=>1,
- 'user_type'=>0
- ]);
- }
- //查询美团商品和平台商品的对应关系
- $productId = $message['productId'];
- $product = ThirdGoods::where(['third_type'=>1,'product_id'=>$productId])->findOrEmpty();
- //生成第三方订单信息
- $orderData = [
- 'orderId'=>$message['orderId'],
- 'uni_order_id'=>$product_message[0]['uni_order_id'],
- 'productId'=>$message['productId'],
- 'productName'=>$message['productName'],
- 'request_msg'=>json_encode($order,JSON_UNESCAPED_UNICODE)
- ];
- //判断美团的预约订单是否生成
- if(!$product->isEmpty()){
- //查询美团预约订单是否生成
- $thirdOrder = ThirdOrders::where(['uni_order_id'=>$product_message[0]['uni_order_id']])->findOrEmpty();
- if(!$thirdOrder->isEmpty() and $thirdOrder['work_id'] != 0){
- //生成第三方订单信息
- $orderData['sync_status'] = 1;
- $orderData['work_id'] = $thirdOrder['work_id'];
- }
- }
- $thirdOrders = ThirdOrders::where('orderId',$message['orderId'])->findOrEmpty();
- //生成未同步预约订单信息
- if($thirdOrders->isEmpty()){
- $thirdOrders = ThirdOrders::create($orderData);
- }
- if(!$thirdOrders->isEmpty()){
- $orderData['work_id'] = $thirdOrders->work_id;
- }
- if(empty($orderData['work_id']) and !$product->isEmpty()){
- $goods = Goods::findOrEmpty($product['goods_id']);
- $pattern = '/(?:省|市)([\w\s]+市)/u';
- Db::startTrans();
- try {
- if (preg_match($pattern, $userAddress->receiver_address, $matches)) {
- $city = $matches[1];
- }
- $area_city = PostageRegion::where(['level'=>2,'name'=>$city])->value('id');
- //生成服务工单
- $work_data = [
- 'work_sn' => generate_sn(ServiceWork::class, 'work_sn'),
- 'real_name' => $userName,
- 'mobile' => $mobile,
- 'address' => $userAddress->receiver_address,
- 'province' => 0,
- 'city' => $area_city??0,
- 'area_name' => $area_city??'',
- 'title' => $goods->goods_name,
- 'category_type' => $goods['category_type'],
- 'goods_category_ids' => $goods['goods_category_ids'],
- 'goods_category_id' => $goods['goods_category_id'],
- 'base_service_fee' => $goods['base_service_fee'],
- 'service_fee' => $message['amount'],
- 'work_pay_status'=>WorkEnum::IS_PAY_STATUS,
- 'appointment_time' => strtotime($message['begintime']),
- 'user_id'=>$user['id'],
- 'lon'=>!empty($userAddress->longitude)?$userAddress->longitude:0,
- 'lat'=>!empty($userAddress->latitude)?$userAddress->latitude:0,
- 'property_activity_id'=>0,
- 'user_equity_id'=>0,
- 'third_type'=>1,
- 'work_total'=>$goods['base_service_fee'],
- 'work_amount'=>$goods['base_service_fee']
- ];
- $service_work = ServiceWork::create($work_data);
- //生成服务订单
- $data = [
- 'work_id'=> $service_work['id'],
- 'sn' => generate_sn(RechargeOrder::class, 'sn'),
- 'order_type'=>0,//服务订单
- 'order_terminal' => 1,
- 'payment_type'=>$goods['goods_payment_type']==GoodsEnum::ISGOODS_PAYMENT_TYPE?0:1,
- 'user_id' => $user['id'],
- 'pay_status' => PayEnum::ISPAID,
- 'coupon_id'=>0,
- 'coupon_price'=>0,
- 'pay_way' => 4,
- 'order_total' => $message['amount'],
- 'order_amount' => $message['amount'],
- ];
- $order = RechargeOrder::create($data);
- //生成订单服务详情
- OrderGoods::create([
- 'sn' => $order['sn'],
- 'goods_id' => $goods['id'],
- 'category_type' => $goods['category_type'],
- 'goods_category_ids' => $goods['goods_category_ids'],
- 'goods_category_id' => $goods['goods_category_id'],
- 'goods_name' => $goods['goods_name'],
- 'goods_image' => $goods['goods_image'],
- 'goods_video' => $goods['goods_video'],
- 'goods_number' => $goods['goods_number'],
- 'good_unit' => $goods['good_unit'],
- 'goods_size' => $goods['goods_size'],
- 'goods_type' => $goods['goods_type'],
- 'goods_brand' => $goods['goods_brand'],
- 'install_guide' => $goods['install_guide'],
- 'goods_payment_type'=>$goods['goods_payment_type'],
- 'base_service_fee' => $goods['base_service_fee'],
- 'service_total' => $goods['service_total'],
- 'service_fee' => $message['amount'],
- 'service_image' => $goods['service_image'],
- 'warranty_period'=>$goods['warranty_period'],
- 'fee_schedule' => $goods['fee_schedule'],
- 'goods_status' => $goods['goods_status'],
- ]);
- //判断是否是一口价预支付订单,支付成功后生成尾款订单
- $order_goods = OrderGoods::where('sn',$order->sn)->findOrEmpty();
- if(!$goods->isEmpty() and $goods->goods_payment_type == 3 and bcsub($goods->base_service_fee,$goods->service_fee,2)>=0){
- //新增待支付尾款
- $order_weikuan_data = [
- 'order_type'=>$order['order_type'],
- 'sn'=>generate_sn(\app\common\model\orders\RechargeOrder::class, 'sn'),
- 'work_id'=>$order['work_id'],
- 'user_id'=>$order['user_id'],
- 'payment_type'=>2,
- 'order_total'=>bcsub($goods->base_service_fee,$message['amount'],2),
- 'order_amount'=>bcsub($goods->base_service_fee,$message['amount'],2),
- 'order_terminal'=>$order['order_terminal']
- ];
- \app\common\model\recharge\RechargeOrder::create($order_weikuan_data);
- }
- $thirdOrders->work_id = $service_work->id;
- $thirdOrders->save();
- Db::commit();
- } catch (\Exception $e) {
- Db::rollback();
- self::setError($e->getMessage());
- return false;
- }
- }
- return true;
- }
- //手动添加订单
- public static function submitOrders(array $message)
- {
- //查询用户是否存在
- $userName = $message['userName'];
- $mobile = $message['mobile'];
- $user = User::where(['mobile' =>$mobile])->findOrEmpty();
- if($user->isEmpty()){
- $user = LoginLogic::register([
- 'password'=>'123456',
- 'account'=>$userName,
- 'mobile'=>$mobile,
- 'channel'=>1,
- 'user_type'=>0,
- ]);
- }
- $goods = Goods::findOrEmpty($message['goods_id']);
- $pattern = '/(?:省|市)([\w\s]+市)/u';
- Db::startTrans();
- try {
- if (preg_match($pattern, $message['userAddress'], $matches)) {
- $city = $matches[1];
- }
- $area_city = PostageRegion::where(['level'=>2,'name'=>$city])->value('id');
- //生成服务工单
- $work_data = [
- 'work_sn' => generate_sn(ServiceWork::class, 'work_sn'),
- 'real_name' => $userName,
- 'mobile' => $mobile,
- 'address' => $message['userAddress'],
- 'province' => 0,
- 'city' => $area_city??0,
- 'area_name' => $area_city??'',
- 'title' => $goods->goods_name,
- 'category_type' => $goods['category_type'],
- 'goods_category_ids' => $goods['goods_category_ids'],
- 'goods_category_id' => $goods['goods_category_id'],
- 'base_service_fee' => $goods['base_service_fee'],
- 'service_fee' => $message['amount'],
- 'work_pay_status'=>WorkEnum::IS_PAY_STATUS,
- 'appointment_time' => strtotime($message['appointment_time']),
- 'user_id'=>$user['id'],
- 'lon'=>$message['lon'],
- 'lat'=>$message['lat'],
- 'property_activity_id'=>0,
- 'user_equity_id'=>0,
- // 'third_type'=>1,
- 'work_total'=>$goods['base_service_fee'],
- 'work_amount'=>$goods['base_service_fee']
- ];
- $service_work = ServiceWork::create($work_data);
- //生成服务订单
- $data = [
- 'work_id'=> $service_work['id'],
- 'sn' => generate_sn(RechargeOrder::class, 'sn'),
- 'order_type'=>0,//服务订单
- 'order_terminal' => 1,
- 'payment_type'=>$goods['goods_payment_type']==GoodsEnum::ISGOODS_PAYMENT_TYPE?0:1,
- 'user_id' => $user['id'],
- 'pay_status' => PayEnum::ISPAID,
- 'coupon_id'=>0,
- 'coupon_price'=>0,
- 'pay_way' => 4,
- 'order_total' => $message['amount'],
- 'order_amount' => $message['amount'],
- ];
- $order = RechargeOrder::create($data);
- //生成订单服务详情
- OrderGoods::create([
- 'sn' => $order['sn'],
- 'goods_id' => $goods['id'],
- 'category_type' => $goods['category_type'],
- 'goods_category_ids' => $goods['goods_category_ids'],
- 'goods_category_id' => $goods['goods_category_id'],
- 'goods_name' => $goods['goods_name'],
- 'goods_image' => $goods['goods_image'],
- 'goods_video' => $goods['goods_video'],
- 'goods_number' => $goods['goods_number'],
- 'good_unit' => $goods['good_unit'],
- 'goods_size' => $goods['goods_size'],
- 'goods_type' => $goods['goods_type'],
- 'goods_brand' => $goods['goods_brand'],
- 'install_guide' => $goods['install_guide'],
- 'goods_payment_type'=>$goods['goods_payment_type'],
- 'base_service_fee' => $goods['base_service_fee'],
- 'service_total' => $goods['service_total'],
- 'service_fee' => $message['amount'],
- 'service_image' => $goods['service_image'],
- 'warranty_period'=>$goods['warranty_period'],
- 'fee_schedule' => $goods['fee_schedule'],
- 'goods_status' => $goods['goods_status'],
- ]);
- //判断是否是一口价预支付订单,支付成功后生成尾款订单
- if(!$goods->isEmpty() and $goods->goods_payment_type == 3 and bcsub($goods->base_service_fee,$goods->service_fee,2)>=0){
- //新增待支付尾款
- $order_weikuan_data = [
- 'order_type'=>$order['order_type'],
- 'sn'=>generate_sn(\app\common\model\orders\RechargeOrder::class, 'sn'),
- 'work_id'=>$order['work_id'],
- 'user_id'=>$order['user_id'],
- 'payment_type'=>2,
- 'order_total'=>bcsub($goods->base_service_fee,$message['amount'],2),
- 'order_amount'=>bcsub($goods->base_service_fee,$message['amount'],2),
- 'order_terminal'=>$order['order_terminal']
- ];
- \app\common\model\recharge\RechargeOrder::create($order_weikuan_data);
- }
- Db::commit();
- } catch (\Exception $e) {
- Db::rollback();
- self::setError($e->getMessage());
- return false;
- }
- return true;
- }
- }
|