19 lines
679 B
Python
19 lines
679 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from flectra import api, fields, models
|
|
|
|
|
|
class AccountCommonAccountReport(models.TransientModel):
|
|
_name = 'account.common.account.report'
|
|
_description = 'Account Common Account Report'
|
|
_inherit = "account.common.report"
|
|
|
|
display_account = fields.Selection([('all','All'), ('movement','With movements'),
|
|
('not_zero','With balance is not equal to 0'),],
|
|
string='Display Accounts', required=True, default='movement')
|
|
|
|
@api.multi
|
|
def pre_print_report(self, data):
|
|
data['form'].update(self.read(['display_account'])[0])
|
|
return data
|