退货/取消订单 - 购物车
我已经在我的网站中实现了自定义购物车。我的网站 允许在三个不同的结帐处支付金额。
a.谷歌
b.贝宝
c。 Authorize.Net客户下订单后,他们可以从订单管理页面查看订单详细信息和状态。我定义了两个流程
a.如果付款成功 - 客户可以退货。
b.如果付款被拒绝/待处理 - 客户可以取消订单。
我的问题
如果买家要求,我如何处理“取消订单”。我可以以编程方式处理此流程并停止支付网关(Google、Paypal 等)中的支付流程
退货单
a。我可以以编程方式处理此过程并退回付款吗 从支付网关(Google、PayPal 等)发送至买家帐户。
b.买家可以向商家请求退货。商家将处理并 手动退回订单(已实现)
谢谢, 维卢
I have implemented the Custom Shopping Cart in my site. My site
allowed paying the amount in three different checkouts.a. Google
b. PayPal
c. Authorize.NetOnce customers place an order they can view their order details and status from Order Management page. I have defined two processes
a. If payment is success - Customer can Return the Order.
b. if payment is declined/pending - Customer can Cancel the Order.
My questions
How can i process the "Cancel Order" if buyer requested. Can i programmatically handle this process and stop the payment process in payment gateway (Google, Paypal and so)
Return Order
a. Can i programmatically handle this process and return the payment
to buyer account from payment gateway (Google, PayPal and so).b. Buyer can request a return to Merchant. Merchant will process and
return the order manually (Already implemented)
Thanks,
Velu
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我正确理解这些问题,您正在寻找一个 API 来以编程方式取消订单和退款。
请查看结帐通知和订单处理 API。您可以使用这些 API 接收订单信息并更新订单履行状态(例如收费、发货、退款、取消)。您需要实施一项可以与 Google 服务器通信的服务。
此文档中的更多信息:
http://code.google.com/apis/checkout /developer/Google_Checkout_XML_API_Processing.html
If I understand the questions correctly you are looking for an API to programatically cancel and refund orders.
Please have a look at the Checkout Notification and Order Processing APIs. You can use those APIs to receive order information and update order fulfillment status (e.g charge, ship, refund, cancel). You'll need to implement a service that can communicate with Google's servers.
More information in this doc:
http://code.google.com/apis/checkout/developer/Google_Checkout_XML_API_Processing.html