# Copyright 2015-2024 Akretion France (https://www.akretion.com) # @author Alexis de Lattre # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from datetime import timedelta import logging from odoo import api, fields, models, _ from odoo.osv import expression from odoo.tools import float_is_zero from odoo.tools.misc import format_date _logger = logging.getLogger(__name__) class AccountMove(models.Model): _inherit = 'account.move' invoice_date_due = fields.Date(tracking=True) invoice_payment_term_id = fields.Many2one(tracking=True) journal_id = fields.Many2one(tracking=True) fiscal_position_id = fields.Many2one(tracking=True) amount_total = fields.Monetary(tracking=True) # for invoice report has_discount = fields.Boolean(compute='_compute_has_discount') # has_attachment is useful for those who use attachment to archive # supplier invoices. It allows them to find supplier invoices # that don't have any attachment has_attachment = fields.Boolean( compute='_compute_has_attachment', search='_search_has_attachment') sale_dates = fields.Char( compute="_compute_sales_dates", help="This information appear on invoice qweb report " "(you may use it for your own report)") # The native "blocked" field (bool) on account.move.line has been removed in v18 # blocked = fields.Boolean( # compute="_compute_blocked", # inverse="_inverse_blocked", # store=True, # string="Dispute", # tracking=True, # ) # Field search_account_id is just for search view search_account_id = fields.Many2one(related='line_ids.account_id') # @api.depends("line_ids", "line_ids.blocked") # def _compute_blocked(self): # for move in self: # move.blocked = any( # [ # l.blocked # for l in move.line_ids # if l.account_id.account_type in ("liability_payable", "asset_receivable") # ] # ) # def _inverse_blocked(self): # for move in self: # for line in move.line_ids.filtered( # lambda l: l.account_id.account_type in ("liability_payable", "asset_receivable") # ): # line.blocked = move.blocked def _compute_has_discount(self): prec = self.env['decimal.precision'].precision_get('Discount') for inv in self: has_discount = False for line in inv.invoice_line_ids: if line.display_type == 'product' and not float_is_zero(line.discount, precision_digits=prec): has_discount = True break inv.has_discount = has_discount def _compute_has_attachment(self): iao = self.env['ir.attachment'] for move in self: if iao.search_count([ ('res_model', '=', 'account.move'), ('res_id', '=', move.id), ('type', '=', 'binary'), ('company_id', '=', move.company_id.id)]): move.has_attachment = True else: move.has_attachment = False def _search_has_attachment(self, operator, value): att_inv_ids = {} if operator == '=': search_res = self.env['ir.attachment'].search_read([ ('res_model', '=', 'account.move'), ('type', '=', 'binary'), ('res_id', '!=', False)], ['res_id']) for att in search_res: att_inv_ids[att['res_id']] = True res = [('id', value and 'in' or 'not in', list(att_inv_ids))] return res def delete_lines_qty_zero(self): lines = self.env['account.move.line'].search([ ('display_type', '=', 'product'), ('move_id', 'in', self.ids), ('quantity', '=', 0)]) lines.unlink() return True # for report def py3o_lines_layout(self): self.ensure_one() res = [] has_sections = False subtotal = 0.0 sign = self.move_type == 'out_refund' and -1 or 1 # Warning: the order of invoice line is forced in the view #