2017-04-14 42 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;