24 lines
838 B
Python
24 lines
838 B
Python
# -*- coding: utf-8 -*-
|
|
# © 2017 Akretion (Alexis de Lattre <alexis.delattre@akretion.com>)
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from openerp import models, api
|
|
import logging
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class AccountInvoiceMarkSent(models.TransientModel):
|
|
_name = 'account.invoice.mark.sent'
|
|
_description = 'Mark invoices as sent'
|
|
|
|
@api.multi
|
|
def run(self):
|
|
assert self.env.context.get('active_model') == 'account.invoice',\
|
|
'Source model must be invoices'
|
|
assert self.env.context.get('active_ids'), 'No invoices selected'
|
|
invoices = self.env['account.invoice'].browse(
|
|
self.env.context.get('active_ids'))
|
|
invoices.write({'sent': True})
|
|
logger.info('Marking invoices with ID %s as sent', invoices.ids)
|
|
return
|