我正在使用 ci-merchant 库ci-merchant,除了我只是将订单总额传递给 paypal 之外,它一切正常。
有没有办法指定运费和/或其他自定义属性,所以当客户被推荐到 Paypal 时,会有一个分项清单,以便他们知道他们支付的费用。
这是我现有的代码:
$params = array(
'amount' => 50.00,
'currency' => 'USD',
'return_url' => 'mysite.com/return/' . $order_id,
'notify_url' => 'mysite.com/notify/' . $order_id,
);
$response = $this->merchant->purchase($params);
我想做的是:
$params = array(
'amount' => 40.00,
'shipping' => 10.00,
'currency' => 'USD',
'return_url' => 'mysite.com/return/' . $order_id,
'notify_url' => 'mysite.com/notify/' . $order_id,
);
$response = $this->merchant->purchase($params);