91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

php優惠券的實現方式是什么

發布時間:2021-12-01 10:05:07 來源:億速云 閱讀:205 作者:柒染 欄目:編程語言

php優惠券的實現方式是什么,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

php優惠券的實現方式:

1、創建一個前端文件,并判斷優惠券是否存在或者停用;

2、創建一個PHP示例文件;3、通過“public function doCoupon($params){...}”等方法處理優惠券領取情況即可。

本文操作環境:windows7系統、PHP7.4版、DELL G3電腦

php優惠券的實現方式是什么?

用PHP做了一個領取優惠券活動的示例代碼

業務需求

優惠券活動,具體還是要根據自己的需求。以下是最近實現的優惠券活動,主要的業務需求:根據后端設置優惠券模板,用戶類型設置,優惠券活動的開始與結束時間,最后生成不同的優惠券活動鏈接。

代碼環境

源碼主要laravel5.8,一整個活動要貼的代碼很多,下面主要貼核心代碼,僅供參考。主要還是要根據自己的業務需求來實現功能吧。

以下是后端截圖,做成模塊化

php優惠券的實現方式是什么

前端需要做的設置與限制:

1 判斷優惠券是否存在或者停用
2 判斷活動開始時間與優惠券開始時間

接著領取活動優惠券,需要判斷以下情況:
1 活動已結束
2 活動為開始時
3 活動為新用戶領取,而領取的用戶是老用戶
4 活動為老用戶領取,而領取的用戶是新用戶
5 優惠券是否領取完
6 已領取過優惠券提示
7 領取成功

下面核心代碼實現

/**
 * Function:優惠券領取處理
 * Author:cyw0413
 * @param $params
 * @return array
 * @throws \Exception
 */
public function doCoupon($params)
{
  $activity_id = $params['activity_id'];
  if(!$params){
    throw new \Exception("參數錯誤!");
  }

  $preg_phone = '/^1[34578]\d{9}$/ims';
  $is_mobile = preg_match ($preg_phone, $params['mobile']);
  if ($is_mobile == 0) {
    throw new \Exception("手機號碼不正確!");
  }

  //隱藏手機號碼中間4位
  $str_mobile = substr_replace($params['mobile'],'****',3,4);

  $activity = $this->find($activity_id);
  if(empty($activity)){
    throw new \Exception("不存在此活動");
  }

  $activity_link = $activity->activityLink->where('coupon_status',0); //只選擇不停用的優惠券
  if(count($activity_link) <= 0){
    throw new \Exception("優惠券不存在或者已經停用");

  }else{

    //查找注冊用戶ID
    $showUser = $this->showUser($params['mobile']);
    //主要是過濾掉領取優惠券為0的,用laravel的同學注意看看
    $detail = $activity_link->each(function($item,$index) use ($showUser) {

      $diffCouponQuantity = $this->diffCouponQuantity($item['config_id'],$item['quantity'],$item['activity_id'],$showUser);
      $item->title = $this->getCouponName($item['config_id'])['name'];
      $item->number = $item['quantity'];
      $item->msg  = $diffCouponQuantity ['msg'];
      $item->diff   = $diffCouponQuantity ['diff'];
      $item->code   = $diffCouponQuantity ['code'];
    })->toArray();

    if(count($detail) == 1){
      foreach($detail as $val){
        if($val['diff'] == 1 && $val['code'] == '400'){
          throw new \Exception($detail[0]['msg']);
        }
      }

    }

    $collection_coupon = collect($detail);
    $collection_coupon = $collection_coupon->where('diff', '<=' ,'0');  //去除優惠券剩余數量為0,或者領取優惠券數量-剩余數量 > 0

  }
  //判斷活動開始時間與優惠券開始時間
  $act_coupon = ActivityCouponBaseModel::where('activity_id',$activity['activity_id'])->first();
  $check_time = $this-> checkCouponTime($act_coupon['start_time'],$activity_link);
  if($check_time == 'error'){
    throw new \Exception("優惠券領取時間未開始,暫不可領取");
  }

  //領取活動有以下幾種情況
  //1: 活動已結束
  if($activity['end_time'] < date("Y-m-d H:i:s") || $activity['status'] == 1){
    $result = [
      'code' => 1,
    ];
    return $result;
  }

  //6 活動為開始時
  if($activity['start_time'] > date("Y-m-d H:i:s") || $activity['status'] == 1){
    $result = [
      'code' => 6,
    ];
    return $result;

  }

  $checkUser = $this->haveUser($params['mobile']); //檢查是新用戶,還是老用戶 根據自己的業務需求做,這個方法就不貼了
  //2: 活動為新用戶領取,而領取的用戶是老用戶
  if($activity['user_type'] == 1 && !empty($checkUser)){
    $result = [
      'code' => 2,
    ];
    return $result;
  }

  //3:活動為老用戶領取,而領取的用戶是新用戶
  if($activity['user_type']==2 && empty($checkUser)){
    $result = [
      'code' => 3,
    ];
    return $result;
  }


  //4:優惠券是否領取完
  $coupon = $this->getCouponExpire($collection_coupon,$params['mobile']); //這里提示有一個優惠券列表,根據自己的業務需求做,這個方法就不貼了
  //return $coupon;
  if($coupon == 1){
    $result = [
      'code' => 4,
    ];
    return $result;
  }

  //5:已領取過優惠券提示
  $userCoupon = '';
  $userRate = '';
  if(!empty($checkUser)){
    //user存在則為老用戶,再檢查是否領取過
    $userCoupon = $this->getUserCoupon($collection_coupon,$checkUser['user_id']);
    $userRate = $this->getUserCouponRate($checkUser['user_id'],$activity['activity_id']);
  }else{
    //新用戶,檢查是否注冊過
    $var_user = UserBaseModel::where('user_name',$params['mobile'])->first();
    if(!empty($var_user)){
      $userCoupon = $this->getUserCoupon($collection_coupon,$var_user['user_id']);
      $userRate = $this->getUserCouponRate($var_user['user_id'],$activity['activity_id']);
    }
  }

  //return $userRate;

  if($userCoupon == 1){
    $result = [
      'code' => 5,
      'phone'=> $str_mobile,
      'coupon' => $userRate,
      'is_get' => false,
    ];
    return $result;
  }

  //5:領取成功
  //如果活動規定是新老用戶0,新用戶1,老用戶2
  $getCouponSuccess = $this->getCouponSuccess($activity['user_type'],$checkUser,$collection_coupon,$params['mobile']);
  //return $getCouponSuccess;
  if($getCouponSuccess['status'] == 200){
    $result = [
      'code' => 5,
      'phone'=> $str_mobile,
      'coupon' => $getCouponSuccess['result'][0],
      'is_get' => true,
    ];
    return $result;
  }


}

用戶領取優惠券并發放優惠券

/**
 * Function:用戶領取活動
 * Author:cyw0413
 * @param $user_type
 */
public function getCouponSuccess($user_type,$user,$coupon,$mobile)
{
  if(count($coupon) > 0){

    switch ($user_type){
      case 1:
        //新用戶領取,如果從來沒注冊過就要新增用戶
        $res = $this->addUser($mobile,$coupon); 
        return [
          'result' => $res,
          'status' => 200
        ];
        break;
      case 2:
        //老用戶領取
        $res = $this->insertUserCoupon($user,$coupon);
        return [
          'result' => $res,
          'status' => 200
        ];
        break;
      default:
        //新老用戶領取,判斷是新用戶還是老用戶,這里的$user是有無配送單,有則為老用戶;
        if(empty($user)){
          $res = $this->addUser($mobile,$coupon);
        }else{

          $res = $this->insertUserCoupon($user,$coupon); //老用戶,直接發放優惠券
        }
        return [
          'result' => $res,
          'status' => 200
        ];
        break;
    }
  }else{
    throw new \Exception("優惠券不存在或者已經停用");
  }


}

領取成功,則發放優惠券

/**
 * Function:發放優惠券
 * Author:cyw0413
 * @param $user
 * @param $coupon
 */
public function insertUserCoupon($user,$coupon)
{
  $relate = [];
  foreach($coupon as $item){

    $res = CouponConfigSendBaseModel::where([
      'config_id'=>$item['config_id'],
      'status'  => 0,
    ])->first();

    if(empty($res) || (!empty($res) && $res['is_send'] == 0) ){
      throw new \Exception("優惠券未發放,暫不可領取");
    }

    //發放優惠券,有多少張就添加多少張,這里扣除優惠券時,主要用不同的coupon_sn來區別
    $onlyCoupon = $this->getCouponName($item['config_id']);
    if ($onlyCoupon['expire_type'] == 0) {
      $start_time = $onlyCoupon['expire_start_time'];
      $end_time = $onlyCoupon['expire_end_time'];
    } else {
      $start_time = date('Y-m-d H:i:s');
      $end_time = date('Y-m-d H:i:s', time()+86400*$onlyCoupon['expire_type']);
    }

    $result = [
      'user_id'  => $user['user_id'],
      'config_id' => $item['config_id'],
      'name'   => $onlyCoupon['name'],
      'get_type' => $onlyCoupon['get_type'],
      'amount'  => $onlyCoupon['amount'],
      'require_price' => $onlyCoupon['require_price'],
      'status'    => 1,
      'start_time'  => $start_time,
      'end_time'   => $end_time,
    ];
    for($i=0; $i < $item['quantity'];$i++){
      $result['coupon_sn'] = 'B'.mt_rand(1, 10000) . strtoupper(uniqid(mt_rand(1, 10000)));
      $userCoupon = UserCouponBaseModel::create($result);
    }

    //扣除相應的優惠券數量,這里用到了鎖表,防止并發時,優惠券為-1
    $couponConfig = CouponConfigBaseModel::where('config_id',$item['config_id'])->lockForUpdate()->first();
    if($couponConfig->left_quantity > 0 ){
      if($couponConfig->left_quantity >= $item['quantity']){
        $couponConfig->left_quantity = $couponConfig->left_quantity-$item['quantity'];
        $couponConfig->save();
      }else{
        throw new \Exception("優惠券剩余數量不夠扣減");
      }

    }


    $relate = [
      'coupon_id' => $userCoupon->coupon_id,
      'user_id'  => $user['user_id'],
      'config_id' => $item['config_id'],
      'activity_id' => $item['activity_id']
    ];

    ActivityCouponUserRelateBaseModel::create($relate);

    $relate[] = $this->getUserCouponRate($user['user_id'],$item['activity_id']);


  }

  return $relate;
}

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

php
AI

日喀则市| 额敏县| 邳州市| 乌鲁木齐县| 沽源县| 长乐市| 建昌县| 土默特左旗| 江油市| 迁安市| 临潭县| 泗洪县| 米林县| 南开区| 桦川县| 永宁县| 吕梁市| 新余市| 安丘市| 新泰市| 西华县| 唐河县| 浮梁县| 嘉兴市| 甘南县| 东丽区| 华亭县| 镇康县| 将乐县| 山西省| 名山县| 赤壁市| 镇宁| 罗田县| 新乐市| 聂荣县| 四川省| 肇东市| 彭山县| 平乡县| 于都县|