Server IP : 127.0.0.2 / Your IP : 3.19.237.16 Web Server : Apache/2.4.18 (Ubuntu) System : User : www-data ( ) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : disk_free_space,disk_total_space,diskfreespace,dl,exec,fpaththru,getmyuid,getmypid,highlight_file,ignore_user_abord,leak,listen,link,opcache_get_configuration,opcache_get_status,passthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,php_uname,phpinfo,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix,_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,pclose,popen,proc_open,proc_close,proc_get_status,proc_nice,proc_terminate,shell_exec,source,show_source,system,virtual MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /opt/odoo/addons/account/tests/ |
Upload File : |
from odoo.addons.account.tests.account_test_classes import AccountingTestCase class TestAccountValidateAccount(AccountingTestCase): def test_account_validate_account(self): account_move_line = self.env['account.move.line'] account_cash = self.env['account.account'].search([('user_type_id.type', '=', 'liquidity')], limit=1) journal = self.env['account.journal'].search([('type', '=', 'bank')], limit=1) company_id = self.env['res.users'].browse(self.env.uid).company_id.id # create move move = self.env['account.move'].create({'name': '/', 'ref':'2011010', 'journal_id': journal.id, 'state':'draft', 'company_id': company_id, }) # create move line account_move_line.create({'account_id': account_cash.id, 'name': 'Basic Computer', 'move_id': move.id, }) # create another move line account_move_line.create({'account_id': account_cash.id, 'name': 'Basic Computer', 'move_id': move.id, }) # check that Initially account move state is "Draft" self.assertTrue((move.state == 'draft'), "Initially account move state is Draft") # validate this account move by using the 'Post Journal Entries' wizard validate_account_move = self.env['validate.account.move'].with_context(active_ids=move.id).create({}) #click on validate Button validate_account_move.with_context({'active_ids': [move.id]}).validate_move() #check that the move state is now "Posted" self.assertTrue((move.state == 'posted'), "Initially account move state is Posted")