This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Part of Odoo. See LICENSE file for full copyright and licensing details. | |
| from odoo import models, fields, api, osv, _ | |
| from odoo.exceptions import UserError | |
| from odoo.tools import format_amount | |
| import io | |
| import xlsxwriter | |
| from datetime import date | |
| from datetime import datetime | |
| from itertools import groupby |