Server IP : 127.0.0.2 / Your IP : 3.138.36.87 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/report/ |
Upload File : |
# -*- coding: utf-8 -*- import time from odoo import api, fields, models class ReportOverdue(models.AbstractModel): _name = 'report.account.report_overdue' def _get_account_move_lines(self, partner_ids): res = dict(map(lambda x:(x,[]), partner_ids)) self.env.cr.execute("SELECT m.name AS move_id, l.date, l.name, l.ref, l.date_maturity, l.partner_id, l.blocked, l.amount_currency, l.currency_id, " "CASE WHEN at.type = 'receivable' " "THEN SUM(l.debit) " "ELSE SUM(l.credit * -1) " "END AS debit, " "CASE WHEN at.type = 'receivable' " "THEN SUM(l.credit) " "ELSE SUM(l.debit * -1) " "END AS credit, " "CASE WHEN l.date_maturity < %s " "THEN SUM(l.debit - l.credit) " "ELSE 0 " "END AS mat " "FROM account_move_line l " "JOIN account_account_type at ON (l.user_type_id = at.id) " "JOIN account_move m ON (l.move_id = m.id) " "WHERE l.partner_id IN %s AND at.type IN ('receivable', 'payable') AND NOT l.reconciled GROUP BY l.date, l.name, l.ref, l.date_maturity, l.partner_id, at.type, l.blocked, l.amount_currency, l.currency_id, l.move_id, m.name", (((fields.date.today(), ) + (tuple(partner_ids),)))) for row in self.env.cr.dictfetchall(): res[row.pop('partner_id')].append(row) return res @api.model def render_html(self, docids, data=None): totals = {} lines = self._get_account_move_lines(docids) lines_to_display = {} company_currency = self.env.user.company_id.currency_id for partner_id in docids: lines_to_display[partner_id] = {} totals[partner_id] = {} for line_tmp in lines[partner_id]: line = line_tmp.copy() currency = line['currency_id'] and self.env['res.currency'].browse(line['currency_id']) or company_currency if currency not in lines_to_display[partner_id]: lines_to_display[partner_id][currency] = [] totals[partner_id][currency] = dict((fn, 0.0) for fn in ['due', 'paid', 'mat', 'total']) if line['debit'] and line['currency_id']: line['debit'] = line['amount_currency'] if line['credit'] and line['currency_id']: line['credit'] = line['amount_currency'] if line['mat'] and line['currency_id']: line['mat'] = line['amount_currency'] lines_to_display[partner_id][currency].append(line) if not line['blocked']: totals[partner_id][currency]['due'] += line['debit'] totals[partner_id][currency]['paid'] += line['credit'] totals[partner_id][currency]['mat'] += line['mat'] totals[partner_id][currency]['total'] += line['debit'] - line['credit'] docargs = { 'doc_ids': docids, 'doc_model': 'res.partner', 'docs': self.env['res.partner'].browse(docids), 'time': time, 'Lines': lines_to_display, 'Totals': totals, 'Date': fields.date.today(), } return self.env['report'].render('account.report_overdue', values=docargs)