Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
2 ตอบกลับ
3263 มุมมอง

Hello,

I'm currently migrate one of my module from Odoo11 to Odoo12.

But I have this message

Field mrp.bom.line.product_uom_id with unknown comodel_name 'product.uom'

But I've check this warning before and they said to check the depends in __manifest_.py and write 'product' in it. But it's already in.


Thanks in advance

อวตาร
ละทิ้ง
คำตอบที่ดีที่สุด

There is no model "product.uom" in V12. Use "uom.uom"

original field declaration:-

product_uom = fields.Many2one(
'uom.uom', 'Unit of Measure',
related='product_tmpl_id.uom_po_id',
help="This comes from the product form.")
อวตาร
ละทิ้ง
ผู้เขียน คำตอบที่ดีที่สุด

Okay thank you so much for the help

อวตาร
ละทิ้ง