|
@@ -188,8 +188,9 @@ class PayService
|
|
|
switch ($this->payment) {
|
|
|
case 'wechat':
|
|
|
$payload['amount'] = $payload['amount'] * 100;
|
|
|
+ throw \Exception($payload['amount']);
|
|
|
$response = Pay::wechat($this->config)->transfer($payload);
|
|
|
- throw \Exception($response);
|
|
|
+
|
|
|
if ($response['return_code'] === 'SUCCESS' && $response['result_code'] === 'SUCCESS') {
|
|
|
$code = 1;
|
|
|
}
|