我有自己的篮子,这是根据用户明显购买的东西建立起来的。一旦用户点击结账,这将被转移到paypal结账。一切正常,项目信息显示在左侧的PayPal购物车收据中。
但是,我的增值税费用存在问题。我已经为我的篮子(在我的网站内)计算了增值税(20%),但我不知道如何将这笔费用转嫁给Paypal。目前,Paypal只是通过根据数量添加商品价格来计算总数。有关将增值税费用纳入Paypal的任何想法吗?
这是我的代码:
$product1 = mysql_fetch_assoc($sql1);?>
<input type='hidden' name='item_number_<?php echo $count; ?>' value="<?php echo $count; ?>">
<input type="hidden" name="item_name_<?php echo $count; ?>" value="<?php echo $product1['prod_name']; ?>">
<input type="hidden" name="amount_<?php echo $count; ?>" value="<?php echo $product1['price']; ?>">
<input type='hidden' name='quantity_<?php echo $count; ?>' value="<?php echo $item['quantity']?>">
<?php $count++; } ?>
这是我的购物篮的运输代码:
$grand_total = isset($grand_total) ? $grand_total : 0;
$line_cost = $product['price'] * $item['quantity'];
$grand_total += $line_cost;
$charge = $grand_total /100 * 20;
$chargeincvat = $charge + $grand_total;
<tr><td colspan='6' align='right'>Charges (VAT 20%): £ <?=number_format($chargeincvat, 2);?></td></tr>
增加:
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_cart">
<input type="hidden" name="upload" value="1">
<input type="hidden" name="business"
value="derrysnurseries@hotmail.co.uk">
<input type='hidden' name='item_number_1' value="1">
<input type="hidden" name="item_name_1" value="Moment in Time">
<input type="hidden" name="amount_1" value="6.95">
<input type='hidden' name='quantity_1' value="1">
<input type='hidden' name='tax_cart' value="8.34">
答案 0 :(得分:2)
您可以使用以下内容作为表单元素的 name
属性:
shipping - applies to first item added to cart
shipping2 - applies to each additional item added to cart
handling_cart - applied once to cart regardless of quantity
例如
<input type="hidden" name="handling_cart" value="15.00">
申请 15.00
运费总额
要为项目添加税/增值税,请使用tax_#
,其中#
是项目编号,例如
<input type="hidden" name="tax_2" value=".15">
这会将.15p
添加到商品编号2.要添加购物车税/增值税
<input type="hidden" name="tax_cart" value=".15">
See page 263 of this doc并查看同一文件的第294页,以自动计算税/增值税费用
答案 1 :(得分:0)
您可以尝试在
中发送送货信息输入类型='隐藏'name ='shipping'值=“25.93”</ p>