mirror of
https://github.com/odoo/runbot.git
synced 2025-03-15 23:45:44 +07:00
[FIX] runbot: remove unaccent
see https://github.com/odoo/odoo/pull/139568
This commit is contained in:
parent
2b88938e14
commit
bb9242f49e
@ -215,9 +215,9 @@ class BuildResult(models.Model):
|
|||||||
string='Build type')
|
string='Build type')
|
||||||
|
|
||||||
parent_id = fields.Many2one('runbot.build', 'Parent Build', index=True)
|
parent_id = fields.Many2one('runbot.build', 'Parent Build', index=True)
|
||||||
parent_path = fields.Char('Parent path', index=True, unaccent=False)
|
parent_path = fields.Char('Parent path', index=True)
|
||||||
top_parent = fields.Many2one('runbot.build', compute='_compute_top_parent')
|
top_parent = fields.Many2one('runbot.build', compute='_compute_top_parent')
|
||||||
ancestors = fields.Many2many('runbot.build', compute='_compute_ancestors')
|
ancestors = fields.Many2many('runbot.build', compute='_compute_ancestors')
|
||||||
# should we add a has children stored boolean?
|
# should we add a has children stored boolean?
|
||||||
children_ids = fields.One2many('runbot.build', 'parent_id')
|
children_ids = fields.One2many('runbot.build', 'parent_id')
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user