Showing
1 changed file
with
3 additions
and
3 deletions
... | @@ -80,13 +80,13 @@ class PaypalPayment implements PaymentInterface | ... | @@ -80,13 +80,13 @@ class PaypalPayment implements PaymentInterface |
80 | array( | 80 | array( |
81 | 0 => | 81 | 0 => |
82 | array( | 82 | array( |
83 | - 'description' => 'Parlando 3 Month Vip', // 购买说明 | 83 | + 'description' => $order->description, // 购买说明 |
84 | - 'custom_id' => 'osnxxxxxx123', //API 调用者提供的外部 ID 可以理解为order_id osnxxxxxx | 84 | + 'custom_id' => $order->order_sn, //API 调用者提供的外部 ID 可以理解为order_id osnxxxxxx |
85 | 'soft_descriptor' => 'PayPal Parlando Vip', // 出现在付款人卡对帐单上的对帐单描述符的动态文本 最大长度:22. | 85 | 'soft_descriptor' => 'PayPal Parlando Vip', // 出现在付款人卡对帐单上的对帐单描述符的动态文本 最大长度:22. |
86 | 'amount' => | 86 | 'amount' => |
87 | array( | 87 | array( |
88 | 'currency_code' => 'USD', // CNY | 88 | 'currency_code' => 'USD', // CNY |
89 | - 'value' => '220.00', // | 89 | + 'value' => $order->pay_amount, // |
90 | ), | 90 | ), |
91 | ), | 91 | ), |
92 | ), | 92 | ), | ... | ... |
-
Please register or login to post a comment