Server IP : 127.0.0.2 / Your IP : 18.116.47.33 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/mrp/report/ |
Upload File : |
# -*- coding: utf-8 -*- # Part of Odoo. See LICENSE file for full copyright and licensing details. from odoo import api, models class MrpBomCost(models.AbstractModel): _name = 'report.mrp_bom_cost' @api.multi def get_lines(self, boms): product_lines = [] for bom in boms: products = bom.product_id if not products: products = bom.product_tmpl_id.product_variant_ids for product in products: attributes = [] for value in product.attribute_value_ids: attributes += [(value.attribute_id.name, value.name)] result, result2 = bom.explode(product, 1) product_line = {'bom': bom, 'name': product.name, 'lines': [], 'total': 0.0, 'currency': self.env.user.company_id.currency_id, 'product_uom_qty': bom.product_qty, 'product_uom': bom.product_uom_id, 'attributes': attributes} total = 0.0 for bom_line, line_data in result2: price_uom = bom_line.product_id.uom_id._compute_price(bom_line.product_id.standard_price, bom_line.product_uom_id) line = { 'product_id': bom_line.product_id, 'product_uom_qty': line_data['qty'], #line_data needed for phantom bom explosion 'product_uom': bom_line.product_uom_id, 'price_unit': price_uom, 'total_price': price_uom * line_data['qty'], } total += line['total_price'] product_line['lines'] += [line] product_line['total'] = total product_lines += [product_line] return product_lines @api.model def render_html(self, docids, data=None): boms = self.env['mrp.bom'].browse(docids) res = self.get_lines(boms) return self.env['report'].render('mrp.mrp_bom_cost_report', {'lines': res})