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_asset/wizard/ |
Upload File : |
# -*- coding: utf-8 -*- # Part of Odoo. See LICENSE file for full copyright and licensing details. from lxml import etree from odoo import api, fields, models, _ from odoo.osv.orm import setup_modifiers class AssetModify(models.TransientModel): _name = 'asset.modify' _description = 'Modify Asset' name = fields.Text(string='Reason', required=True) method_number = fields.Integer(string='Number of Depreciations', required=True) method_period = fields.Integer(string='Period Length') method_end = fields.Date(string='Ending date') asset_method_time = fields.Char(compute='_get_asset_method_time', string='Asset Method Time', readonly=True) @api.one def _get_asset_method_time(self): if self.env.context.get('active_id'): asset = self.env['account.asset.asset'].browse(self.env.context.get('active_id')) self.asset_method_time = asset.method_time @api.model def fields_view_get(self, view_id=None, view_type='form', toolbar=False, submenu=False): result = super(AssetModify, self).fields_view_get(view_id, view_type, toolbar=toolbar, submenu=submenu) asset_id = self.env.context.get('active_id') active_model = self.env.context.get('active_model') if active_model == 'account.asset.asset' and asset_id: asset = self.env['account.asset.asset'].browse(asset_id) doc = etree.XML(result['arch']) if asset.method_time == 'number' and doc.xpath("//field[@name='method_end']"): node = doc.xpath("//field[@name='method_end']")[0] node.set('invisible', '1') setup_modifiers(node, result['fields']['method_end']) elif asset.method_time == 'end' and doc.xpath("//field[@name='method_number']"): node = doc.xpath("//field[@name='method_number']")[0] node.set('invisible', '1') setup_modifiers(node, result['fields']['method_number']) result['arch'] = etree.tostring(doc) return result @api.model def default_get(self, fields): res = super(AssetModify, self).default_get(fields) asset_id = self.env.context.get('active_id') asset = self.env['account.asset.asset'].browse(asset_id) if 'name' in fields: res.update({'name': asset.name}) if 'method_number' in fields and asset.method_time == 'number': res.update({'method_number': asset.method_number}) if 'method_period' in fields: res.update({'method_period': asset.method_period}) if 'method_end' in fields and asset.method_time == 'end': res.update({'method_end': asset.method_end}) if self.env.context.get('active_id'): active_asset = self.env['account.asset.asset'].browse(self.env.context.get('active_id')) res['asset_method_time'] = active_asset.method_time return res @api.multi def modify(self): """ Modifies the duration of asset for calculating depreciation and maintains the history of old values, in the chatter. """ asset_id = self.env.context.get('active_id', False) asset = self.env['account.asset.asset'].browse(asset_id) old_values = { 'method_number': asset.method_number, 'method_period': asset.method_period, 'method_end': asset.method_end, } asset_vals = { 'method_number': self.method_number, 'method_period': self.method_period, 'method_end': self.method_end, } asset.write(asset_vals) asset.compute_depreciation_board() tracked_fields = self.env['account.asset.asset'].fields_get(['method_number', 'method_period', 'method_end']) changes, tracking_value_ids = asset._message_track(tracked_fields, old_values) if changes: asset.message_post(subject=_('Depreciation board modified'), body=self.name, tracking_value_ids=tracking_value_ids) return {'type': 'ir.actions.act_window_close'}