Server IP : 127.0.0.2 / Your IP : 3.147.72.3 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/views/ |
Upload File : |
<?xml version="1.0" encoding="utf-8"?> <odoo> <template id="report_trialbalance"> <t t-call="report.html_container"> <t t-call="report.internal_layout"> <div class="page"> <h2><span t-esc="res_company.name"/>: Trial Balance</h2> <div class="row mt32"> <div class="col-xs-4"> <strong>Display Account:</strong> <p> <span t-if="data['display_account'] == 'all'">All accounts</span> <span t-if="data['display_account'] == 'movement'">With movements</span> <span t-if="data['display_account'] == 'not_zero'">With balance not equal to zero</span> </p> </div> <div class="col-xs-4"> <p> <t t-if="data['date_from']"><strong>Date from :</strong> <span t-esc="data['date_from']"/><br/></t> <t t-if="data['date_to']"><strong>Date to :</strong> <span t-esc="data['date_to']"/></t> </p> </div> <div class="col-xs-4"> <strong>Target Moves:</strong> <p> <span t-if="data['target_move'] == 'all'">All Entries</span> <span t-if="data['target_move'] == 'posted'">All Posted Entries</span> </p> </div> </div> <table class="table table-condensed"> <thead> <tr> <th>Code</th> <th>Account</th> <th class="text-right">Debit</th> <th class="text-right">Credit</th> <th class="text-right">Balance</th> </tr> </thead> <tbody> <tr t-foreach="Accounts" t-as="account"> <td> <span t-att-style="style" t-esc="account['code']"/> </td> <td> <span style="color: white;" t-esc="'..'"/> <span t-att-style="style" t-esc="account['name']"/> </td> <td class="text-right"> <span t-att-style="style" t-esc="account['debit']" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/> </td> <td class="text-right"> <span t-att-style="style" t-esc="account['credit']" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/> </td> <td class="text-right"> <span t-att-style="style" t-esc="account['balance']" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/> </td> </tr> </tbody> </table> </div> </t> </t> </template> </odoo>