$order_id, 'paid' => 1])) return true; return StoreOrder::paySuccess($order_id); } catch (\Exception $e) { return false; } } /** * 捐款支付成功之后 * @param string|null $order_id 订单id * @return bool */ public static function wechatLave($event) { list($cid, $order_id) = $event; try { if (Lave::where(['cid' => $cid, 'order_id' => $order_id, 'paid' => 1])->find()) return true; return Lave::paySuccess($cid, $order_id); } catch (\Exception $e) { return false; } } /** * 捐款支付成功之后 * @param string|null $order_id 订单id * @return bool */ public static function wechatLevel($event) { list($cid, $order_id) = $event; try { if (OrderLevel::where(['cid' => $cid, 'order_id' => $order_id, 'paid' => 1])->find()) return true; return OrderLevel::paySuccess($cid, $order_id); } catch (\Exception $e) { return false; } } /** * 月捐款支付成功之后 * @param string|null $order_id 订单id * @return bool */ public static function wechatMonthLave($event) { list($cid, $order_id) = $event; try { if (LaveMonth::where(['cid' => $cid, 'contract_code' => $order_id, 'paid' => 1])->find()) return true; return LaveMonth::paySuccess($cid, $order_id); } catch (\Exception $e) { return false; } } /** * 月捐款申请扣款 * @param string|null $order_id 订单id * @return bool */ public static function wechatMonthLavePay($event) { list($cid, $order_id) = $event; try { if (LaveMonth::where(['cid' => $cid, 'nonce_str' => $order_id, 'paid' => 1])->find()) return true; return LaveMonth::pappayapplySuccess($cid, $order_id); } catch (\Exception $e) { return false; } } }