Skip to content
Snippets Groups Projects
Commit e3b1a887 authored by Andrew Gavgavian's avatar Andrew Gavgavian
Browse files

[FIX] stock: fix report.stock.quantity search_read


	Currently `report.stock.quantity` has a field defined in it called `move_ids`:
	`move_ids = fields.One2many('stock.move',readonly=True)`

	This virtual field has no corresponding inverse field so when performing a search_read on the model, it fails
	in fields.py when trying to do:	`inverse_field = comodel._fields[inverse]`

	In addition, this field is apparently not used anywhere in the source code and not queried in the SQL View.

	This means the model can never be search_read by default.

	Since this field is never used, it isn't stored, and the model is `_auto = False`, removing it won't break any database.

closes odoo/odoo#120048

Signed-off-by: default avatarWilliam Henrotin (whe) <whe@odoo.com>
parent c54a3985
No related branches found
No related tags found
No related merge requests found
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment