2018-01-16 06:58:15 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2018-01-16 11:34:37 +01:00
|
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
2018-01-16 06:58:15 +01:00
|
|
|
|
2018-01-16 11:34:37 +01:00
|
|
|
from flectra import models
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
|
|
|
|
class AccountInvoiceLine(models.Model):
|
|
|
|
|
|
|
|
_inherit = ['account.invoice.line']
|
|
|
|
|
|
|
|
def get_digital_purchases(self):
|
|
|
|
partner = self.env.user.partner_id
|
|
|
|
|
|
|
|
# Get paid invoices
|
|
|
|
purchases = self.sudo().search_read(
|
|
|
|
domain=[('invoice_id.state', '=', 'paid'), ('invoice_id.partner_id', '=', partner.id)],
|
|
|
|
fields=['product_id'],
|
|
|
|
)
|
|
|
|
|
|
|
|
# Get free products
|
|
|
|
purchases += self.env['sale.order.line'].sudo().search_read(
|
|
|
|
domain=[('price_subtotal', '=', 0.0), ('order_id.partner_id', '=', partner.id)],
|
|
|
|
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]
|