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
This question has been flagged
1
Reply
6923
Views
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³'
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign upRelated Posts | Replies | Views | Activity | |
---|---|---|---|---|
|
2
जुल॰ 24
|
2969 | ||
|
1
मार्च 18
|
7373 | ||
|
1
जन॰ 18
|
51864 | ||
|
7
जन॰ 24
|
15868 | ||
|
0
अग॰ 16
|
48 |
I am also looking for an answer on this