Magento更改订单号码长度

时间:2017-04-14 01:04:12

标签: 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

帮助!请

2 个答案:

答案 0 :(得分:1)

请运行以下两个查询:

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;

答案 1 :(得分:0)

请再次检查。我有1.9.2安装,我有这个字段:enter image description here