0

Magento 1.5.1.0:在我安装了Aitoc的预购模块后,我会时不时收到订单号,例如00000002、00000004(订单号通常以4或6开头)。只有一小部分客户获得了这些订单号,但问题是在我们的支付系统中,订单是使用不同的订单号注册的。

我能做些什么来调试发生了什么?订单号在哪里设置?

提前致谢。

4

2 回答 2

0

在您的模块中查找 Mage/Eav/Model/Entity/Increment/Numeric.php 的覆盖。

问候博蒂

于 2012-10-04T09:46:21.567 回答
0

您可以更新您的 eav_entity_type 表。

 update `eav_entity_type` set `increment_pad_length`=4 where `entity_type_code`='order'; 
于 2012-10-05T12:01:23.143 回答