How do we go about changing the volume of a product from m3 to cm3? Our shipping couriers use cm3 for calculating shipping rates
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- 客戶關係
- e-Commerce
- 會計
- 庫存
- PoS
- Project
- MRP
此問題已被標幟
1
回覆
7016
瀏覽次數
Create a UoM for volume cm³ factor 0.1
psql your_database
UPDATE ir_model_data SET res_id = (SELECT id FROM uom_uom WHERE name = 'cm³') WHERE name = 'product_uom_cubic_meter';
Reload product page and go to Inventory Tab -> Volume is now 'cm³'
相關帖文 | 回覆 | 瀏覽次數 | 活動 | |
---|---|---|---|---|
|
2
7月 24
|
3095 | ||
|
1
3月 18
|
7451 | ||
|
1
1月 18
|
52025 | ||
|
7
1月 24
|
16049 | ||
|
0
8月 16
|
48 |
I am also looking for an answer on this