私は ci-merchant ライブラリci-merchantを使用していますが、注文の合計をペイパルに渡すだけであることを除いて、すべて正常に動作します。
送料やその他のカスタム属性を指定する方法はありますか? 顧客が 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);