如何在Magento中更改订单起始编号
2022-08-31 00:14:31
有没有办法在不更改已经存在的订单号的情况下更改Magento中的订单起始编号?我只想为所有新订单设置170000xxxx。
谢谢
有没有办法在不更改已经存在的订单号的情况下更改Magento中的订单起始编号?我只想为所有新订单设置170000xxxx。
谢谢
查看并找到 .更新此编号,确保该编号对于订单是正确的。eav_entity_store
increment_last_id
entity_type_id
查找订单entity_type_id
SELECT entity_type_id FROM eav_entity_type WHERE entity_type_code = 'order';
桑卡尔几乎是对的
UPDATE `database`.`eav_entity_store` SET `increment_last_id` = '17000000' WHERE `entity_store_id` = 1;