2017-04-14 44 views
0

如何修改我的订单号后长度我已经安装的Magento并收到了一些订单。Magento的变更订单号码长度

默认情况下,订单号为9的数字串,我想缩短到7可能或6位数字。

我阅读下面的帖子,但看起来它只适用于Magento 1.6,在1.9中,数据库模式已经改变,所以在“eav_entity_type”表中没有“increment_pad_length”记录。

https://www.classyllama.com/blog/shortening-increment-id-length-for-orders-invoices-and-shipments

帮助!请

回答

0

请检查一次。我有1.9.2安装和我有这样的领域:enter image description here

+0

我的坏,我认为这是一个纪录。谢谢。 – Jerry

0

以下两个查询请运行:

UPDATE `eav_entity_type` SET `increment_pad_length` = 2 WHERE `entity_type_code` = ‘order’ LIMIT 1; 
UPDATE `eav_entity_store` SET `increment_last_id` = ’109′ WHERE `entity_store_id` = 1 LIMIT 1;