From 3751379f1e9a4c215fb6eb898b4ccc67659b9ace Mon Sep 17 00:00:00 2001 From: stephanchrst Date: Tue, 10 May 2022 21:51:50 +0700 Subject: initial commit 2 --- .../website_sale_digital/models/account_invoice.py | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 addons/website_sale_digital/models/account_invoice.py (limited to 'addons/website_sale_digital/models/account_invoice.py') diff --git a/addons/website_sale_digital/models/account_invoice.py b/addons/website_sale_digital/models/account_invoice.py new file mode 100644 index 00000000..a79f3c7c --- /dev/null +++ b/addons/website_sale_digital/models/account_invoice.py @@ -0,0 +1,32 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import models + + +class AccountInvoiceLine(models.Model): + + _inherit = ['account.move.line'] + + def get_digital_purchases(self): + partner = self.env.user.partner_id + + # Get paid invoices + purchases = self.sudo().search_read( + domain=[ + ('move_id.payment_state', 'in', ['paid', 'in_payment']), + ('move_id.partner_id', '=', partner.id), + ('product_id', '!=', False), + ], + fields=['product_id'], + ) + + # Get free products + purchases += self.env['sale.order.line'].sudo().search_read( + domain=[('display_type', '=', False), ('order_id.partner_id', '=', partner.id), '|', ('price_subtotal', '=', 0.0), ('order_id.amount_total', '=', 0.0)], + fields=['product_id'], + ) + + # I only want product_ids, but search_read insists in giving me a list of + # (product_id: , name: ) + return [line['product_id'][0] for line in purchases] -- cgit v1.2.3