Refund.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?php
  2. namespace app\service\fast_hand;
  3. /*
  4. * +----------------------------------------------------------------------+
  5. * | xiegeng admin system |
  6. * +----------------------------------------------------------------------+
  7. * | Administrator-13:25-2022-PhpStorm
  8. * +----------------------------------------------------------------------+
  9. * | Author: xiegeng <957723538@qq.com> |
  10. * | FILENAME: AccessToken.php |
  11. * +----------------------------------------------------------------------+
  12. */
  13. use app\common\model\Payment;
  14. use GuzzleHttp\Client;
  15. class Refund{
  16. /** @var Payment */
  17. protected $payment;
  18. protected $body;
  19. protected $amount;
  20. /**
  21. * @param Payment $payment
  22. */
  23. public function setPayment(Payment $payment): void
  24. {
  25. $this->payment = $payment;
  26. }
  27. /**
  28. * @param mixed $body
  29. */
  30. public function setBody($body): void
  31. {
  32. $this->body = $body;
  33. }
  34. /**
  35. * @param mixed $amount
  36. */
  37. public function setAmount($amount): void
  38. {
  39. $this->amount = $amount;
  40. }
  41. public function get(){
  42. $orderNo=$this->payment['refund_no'];
  43. $data=[
  44. 'out_order_no'=>$this->payment->order_no,
  45. 'out_refund_no'=>$orderNo,
  46. 'reason'=>$this->body,
  47. 'notify_url'=>sprintf('%s/%s',request()->domain(),'index/payment/refund_url/type/ks/order/'.$orderNo),
  48. 'refund_amount'=>$this->amount,
  49. ];
  50. return KsClient::post('https://open.kuaishou.com/openapi/mp/developer/epay/apply_refund',$data);
  51. }
  52. }