decrypt(); Log::error('供销平台佣金回调:' . var_export($decrypted, true)); $storeConsumptionUserDao = new CommissionDao(); // "惠农供销,谱写数字新篇章"活动首单分润 $result = $storeConsumptionUserDao->firstOrderCommissionCallback($decrypted); return app('json')->success($result); } /** * 供销平台退佣金回调 * @return mixed * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ public function refundCommission() { $decrypted = $this->decrypt(); Log::error('供销平台退佣金回调:' . var_export($decrypted, true)); $storeConsumptionUserDao = new CommissionDao(); $result = $storeConsumptionUserDao->refundByCallback($decrypted); return app('json')->success($result); } public function orderList() { $pageIndex = $this->request->get('page', 1); $pageSize = $this->request->get('page_size', 15); $order = StoreOrder::whereIn('status', [0, 1, 2, 3]) ->field('order_id,order_sn') ->limit($pageIndex, $pageSize) ->order('order_id', 'desc') ->select()->toArray(); return app('json')->success($order); } public function decrypt() { $timestamp = $this->request->post('timestamp'); $data = $this->request->post('data'); $aes = new \AES(); $iv = !empty($timestamp) ? $aes->buildIv($timestamp) : ''; $decrypted = $aes->decrypt($data, $iv); if (empty($decrypted)) { throw new ValidateException('解密失败'); } return $decrypted; } }