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:
- CRM
- e-Commerce
- 会計
- 在庫
- PoS
- Project
- MRP
この質問にフラグが付けられました
1
返信
7032
ビュー
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
|
3137 | ||
|
1
3月 18
|
7462 | ||
|
1
1月 18
|
52073 | ||
|
7
1月 24
|
16081 | ||
|
0
8月 16
|
48 |
I am also looking for an answer on this