magento店面在登录账户后,里面看不到他们的订单,起初以为是paypal接口的问题,因为问这些问题的客户大多数是通过paypal付款的,用信用卡付款的客户前台账户里面都可以看到。
于是用自己帐号测试,结果发现跳转到paypal网站进行付款的时候,订单状态为”Pending Payment”,若点击取消付款,订单状态就变成了”cancel”,若paypal IPN 即时信息通知没有填写正确,即便客户付款成功,返回的订单状态仍然是”Pending Payment”,只有填写了正确的IPN地址,订单状态才能自动切换成”Processing”。
下面问题来了,订单状态为”Processing”和”cancel” 的订单在客户账户”My orders”链接里面都可以看到,唯有订单状态为”Pending Payment” 的订单看不到,于是我猜想:是不是在magento里面默认不显示订单状态为”Pending Payment”的订单呢?
结果找到app/code/core/Mage/Sales/etc/config.xml 该文件,打开第564行找到Pending Payment,在结束标签前加上<visible_on_front />,如下:
<pending_payment translate="label">
<label>Pending Payment</label>
<statuses>
<pending_payment default="1"/>
</statuses>
<visible_on_front />
</pending_payment>
|
保存后上传,在后台刷新缓存,结果再去测试一个订单,意料之中的事发生了,事实证明了我上面的猜想。呵呵…收工! (责任编辑:最模板) |