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 api, fields, models
|
|
|
|
from flectra.tools import float_compare
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
|
|
|
|
class AccountMoveLine(models.Model):
|
|
|
|
_inherit = "account.move.line"
|
|
|
|
|
|
|
|
expense_id = fields.Many2one('hr.expense', string='Expense', copy=False, help="Expense where the move line come from")
|
|
|
|
|
|
|
|
@api.multi
|
|
|
|
def reconcile(self, writeoff_acc_id=False, writeoff_journal_id=False):
|
|
|
|
res = super(AccountMoveLine, self).reconcile(writeoff_acc_id=writeoff_acc_id, writeoff_journal_id=writeoff_journal_id)
|
|
|
|
account_move_ids = [l.move_id.id for l in self if float_compare(l.move_id.matched_percentage, 1, precision_digits=5) == 0]
|
|
|
|
if account_move_ids:
|
|
|
|
expense_sheets = self.env['hr.expense.sheet'].search([
|
|
|
|
('account_move_id', 'in', account_move_ids), ('state', '!=', 'done')
|
|
|
|
])
|
|
|
|
expense_sheets.set_to_paid()
|
|
|
|
return res
|