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/stock/wizard/ |
Upload File : |
# -*- coding: utf-8 -*- # Part of Odoo. See LICENSE file for full copyright and licensing details. from odoo import api, models, fields, tools, _ from odoo.addons import decimal_precision as dp from odoo.exceptions import UserError class ProductChangeQuantity(models.TransientModel): _name = "stock.change.product.qty" _description = "Change Product Quantity" # TDE FIXME: strange dfeault method, was present before migration ? to check product_id = fields.Many2one('product.product', 'Product', required=True) product_tmpl_id = fields.Many2one('product.template', 'Template', required=True) product_variant_count = fields.Integer('Variant Count', related='product_tmpl_id.product_variant_count') new_quantity = fields.Float( 'New Quantity on Hand', default=1, digits=dp.get_precision('Product Unit of Measure'), required=True, help='This quantity is expressed in the Default Unit of Measure of the product.') lot_id = fields.Many2one('stock.production.lot', 'Lot/Serial Number', domain="[('product_id','=',product_id)]") location_id = fields.Many2one('stock.location', 'Location', required=True, domain="[('usage', '=', 'internal')]") @api.model def default_get(self, fields): res = super(ProductChangeQuantity, self).default_get(fields) if not res.get('product_id') and self.env.context.get('active_id') and self.env.context.get('active_model') == 'product.template' and self.env.context.get('active_id'): res['product_id'] = self.env['product.product'].search([('product_tmpl_id', '=', self.env.context['active_id'])], limit=1).id elif not res.get('product_id') and self.env.context.get('active_id') and self.env.context.get('active_model') == 'product.product' and self.env.context.get('active_id'): res['product_id'] = self.env['product.product'].browse(self.env.context['active_id']).id if 'location_id' in fields and not res.get('location_id'): res['location_id'] = self.env.ref('stock.stock_location_stock').id return res @api.onchange('location_id', 'product_id') def onchange_location_id(self): # TDE FIXME: should'nt we use context / location ? if self.location_id and self.product_id: availability = self.product_id.with_context(compute_child=False)._product_available() self.new_quantity = availability[self.product_id.id]['qty_available'] @api.onchange('product_id') def onchange_product_id(self): if self.product_id: self.product_tmpl_id = self.onchange_product_id_dict(self.product_id.id)['product_tmpl_id'] @api.multi def _prepare_inventory_line(self): product = self.product_id.with_context(location=self.location_id.id, lot_id=self.lot_id.id) th_qty = product.qty_available res = { 'product_qty': self.new_quantity, 'location_id': self.location_id.id, 'product_id': self.product_id.id, 'product_uom_id': self.product_id.uom_id.id, 'theoretical_qty': th_qty, 'prod_lot_id': self.lot_id.id, } return res def onchange_product_id_dict(self, product_id): return { 'product_tmpl_id': self.env['product.product'].browse(product_id).product_tmpl_id.id, } @api.model def create(self, values): if values.get('product_id'): values.update(self.onchange_product_id_dict(values['product_id'])) return super(ProductChangeQuantity, self).create(values) @api.constrains('new_quantity') def check_new_quantity(self): if any(wizard.new_quantity < 0 for wizard in self): raise UserError(_('Quantity cannot be negative.')) @api.multi def change_product_qty(self): """ Changes the Product Quantity by making a Physical Inventory. """ Inventory = self.env['stock.inventory'] for wizard in self: product = wizard.product_id.with_context(location=wizard.location_id.id, lot_id=wizard.lot_id.id) line_data = wizard._prepare_inventory_line() if wizard.product_id.id and wizard.lot_id.id: inventory_filter = 'none' elif wizard.product_id.id: inventory_filter = 'product' else: inventory_filter = 'none' inventory = Inventory.create({ 'name': _('INV: %s') % tools.ustr(wizard.product_id.name), 'filter': inventory_filter, 'product_id': wizard.product_id.id, 'location_id': wizard.location_id.id, 'lot_id': wizard.lot_id.id, 'line_ids': [(0, 0, line_data)], }) inventory.action_done() return {'type': 'ir.actions.act_window_close'}