[FIX] account_financial_report: open_items

* Missing import causes failure when running Open Items with Date At in the past
pull/868/head
Travis Waelbroeck 2020-04-16 11:09:41 -05:00 committed by Jasmin Solanki
parent e40c643fbe
commit 151af3d703
2 changed files with 2 additions and 1 deletions

View File

@ -5,7 +5,7 @@
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{ {
"name": "Account Financial Reports", "name": "Account Financial Reports",
"version": "13.0.1.1.0", "version": "13.0.1.1.1",
"category": "Reporting", "category": "Reporting",
"summary": "OCA Financial Reports", "summary": "OCA Financial Reports",
"author": "Camptocamp SA," "author": "Camptocamp SA,"

View File

@ -2,6 +2,7 @@
# Copyright 2020 ForgeFlow S.L. (https://www.forgeflow.com) # Copyright 2020 ForgeFlow S.L. (https://www.forgeflow.com)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
import operator
from datetime import date, datetime from datetime import date, datetime
from odoo import api, models from odoo import api, models