PayPal问题多多

在使用paypal越来越深入时,我和同事们发现了paypal存在着很多问题,有些问题还算是低级错误,所以给我们的感觉是paypal对business用户(特别是美国以外的business用户)照顾得不周到。可能paypal名声在外,原来在我心目中是一个非常好用的payment solution,期望值高了,失望也大。平心而论,这些问题还不是nightmaire,如果发生在其他的payment service provider,我也不会有那么大感慨。 目前我碰到的最大的问题是:paypal download history下载来的交易记录不能直接拿来做帐用,我专门写了个转化程序,用于正规化交易记录。从paypal download history中,可以下载到好几种交易记录,我主要关心两种:all activities和balance affecting payment。前者确实包含了所有的交易活动,但后者包含了一些不影响余额的交易。 说到余额,记录中balance那一栏只能参考,很多时候它并不是真正的余额,搞得bookkeeper很头痛,这也是我写转化程序的直接动机。迄今为止,我遇到14种交易类型(type): eBay Payment Sent Payment Received  (仅用于money request) Pre-approved Payment Sent (paypal月费) Refund Shopping Cart Item (paypal cart模式,excluding VAT) Shopping Cart Payment Received (paypal cart模式,including VAT) Temporary Hold (dispute时,paypal暂扣款) Update to eCheque Received Update to Payment Received (虚拟终端模式,accept transaction) Update to Reversal (dispute结束后,paypal释放暂扣款)… Continue reading PayPal问题多多