14 lines
445 B
Python
14 lines
445 B
Python
from flectra import models, api
|
|
|
|
|
|
class AccountUnreconcile(models.TransientModel):
|
|
_name = "account.unreconcile"
|
|
_description = "Account Unreconcile"
|
|
|
|
@api.multi
|
|
def trans_unrec(self):
|
|
context = dict(self._context or {})
|
|
if context.get('active_ids', False):
|
|
self.env['account.move.line'].browse(context.get('active_ids')).remove_move_reconcile()
|
|
return {'type': 'ir.actions.act_window_close'}
|