diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
| commit | 3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch) | |
| tree | a44932296ef4a9b71d5f010906253d8c53727726 /addons/website_sale_digital/models/account_invoice.py | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/website_sale_digital/models/account_invoice.py')
| -rw-r--r-- | addons/website_sale_digital/models/account_invoice.py | 32 |
1 files changed, 32 insertions, 0 deletions
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: <id>, name: <product code> <template_name> <attributes>) + return [line['product_id'][0] for line in purchases] |
