李帅

1.细节修改

......@@ -80,13 +80,13 @@ class PaypalPayment implements PaymentInterface
array(
0 =>
array(
'description' => 'Parlando 3 Month Vip', // 购买说明
'custom_id' => 'osnxxxxxx123', //API 调用者提供的外部 ID 可以理解为order_id osnxxxxxx
'description' => $order->description, // 购买说明
'custom_id' => $order->order_sn, //API 调用者提供的外部 ID 可以理解为order_id osnxxxxxx
'soft_descriptor' => 'PayPal Parlando Vip', // 出现在付款人卡对帐单上的对帐单描述符的动态文本 最大长度:22.
'amount' =>
array(
'currency_code' => 'USD', // CNY
'value' => '220.00', //
'value' => $order->pay_amount, //
),
),
),
......