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
회신
7218
화면
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
|
3293 | ||
|
1
3월 18
|
7629 | ||
|
1
1월 18
|
52336 | ||
|
7
1월 24
|
16346 | ||
|
0
8월 16
|
48 |
I am also looking for an answer on this