You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
676 B
23 lines
676 B
# Copyright 2017 ACSONE SA/NV
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import api, models
|
|
|
|
|
|
class AccountMoveLine(models.Model):
|
|
|
|
_inherit = 'account.move.line'
|
|
|
|
@api.model_cr
|
|
def init(self):
|
|
res = super(AccountMoveLine, self).init()
|
|
self._cr.execute("""
|
|
SELECT indexname FROM pg_indexes
|
|
WHERE indexname = 'account_move_line_date_tax_line_id_idx'
|
|
""")
|
|
if not self._cr.fetchone():
|
|
self._cr.execute("""
|
|
CREATE INDEX account_move_line_date_tax_line_id_idx
|
|
ON account_move_line (date, tax_line_id)
|
|
""")
|
|
return res
|