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
- Contabilidad
- Inventario
- PoS
- Project
- MRP
Se marcó esta pregunta
1
Responder
6890
Vistas
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³'
¿Le interesa esta conversación? ¡Participe en ella!
Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.
InscribirsePublicaciones relacionadas | Respuestas | Vistas | Actividad | |
---|---|---|---|---|
|
2
jul 24
|
2955 | ||
|
1
mar 18
|
7345 | ||
|
1
ene 18
|
51843 | ||
|
7
ene 24
|
15847 | ||
|
0
ago 16
|
48 |
I am also looking for an answer on this