You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

26 lines
825 B

# -*- coding: utf-8 -*-
# Copyright 2009-2017 Noviat.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from .test_common import TestCommon
class TestAgedPartnerBalance(TestCommon):
def _getReportModel(self):
return 'account.aged.trial.balance.webkit'
def _getReportName(self):
return 'account.account_aged_trial_balance_webkit'
def _getBaseFilters(self):
fy_id = self.model._get_current_fiscalyear()
vals = self.model.onchange_fiscalyear(fiscalyear=fy_id)['value']
vals.update({'fiscalyear_id': fy_id})
return vals
def test_common(self):
common_tests = [
x for x in dir(self)
if callable(getattr(self, x)) and x.startswith('common_test_')]
for test in common_tests:
getattr(self, test)()