Server IP : 127.0.0.2 / Your IP : 18.221.21.111 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/odoo/addons/base/ir/ |
Upload File : |
# -*- coding: utf-8 -*- # Part of Odoo. See LICENSE file for full copyright and licensing details. import datetime import dateutil import logging import os import time from pytz import timezone import odoo from odoo import api, fields, models, tools, workflow, _ from odoo.exceptions import MissingError, UserError, ValidationError from odoo.report.report_sxw import report_sxw, report_rml from odoo.tools.safe_eval import safe_eval, test_python_expr _logger = logging.getLogger(__name__) class IrActions(models.Model): _name = 'ir.actions.actions' _table = 'ir_actions' _order = 'name' name = fields.Char(required=True) type = fields.Char(string='Action Type', required=True) usage = fields.Char(string='Action Usage') xml_id = fields.Char(compute='_compute_xml_id', string="External ID") help = fields.Html(string='Action Description', help='Optional help text for the users with a description of the target view, such as its usage and purpose.', translate=True) def _compute_xml_id(self): res = self.get_external_id() for record in self: record.xml_id = res.get(record.id) @api.model def create(self, vals): res = super(IrActions, self).create(vals) # ir_values.get_actions() depends on action records self.env['ir.values'].clear_caches() return res @api.multi def write(self, vals): res = super(IrActions, self).write(vals) # ir_values.get_actions() depends on action records self.env['ir.values'].clear_caches() return res @api.multi def unlink(self): """unlink ir.action.todo which are related to actions which will be deleted. NOTE: ondelete cascade will not work on ir.actions.actions so we will need to do it manually.""" todos = self.env['ir.actions.todo'].search([('action_id', 'in', self.ids)]) todos.unlink() res = super(IrActions, self).unlink() # ir_values.get_actions() depends on action records self.env['ir.values'].clear_caches() return res @api.model def _get_eval_context(self, action=None): """ evaluation context to pass to safe_eval """ return { 'uid': self._uid, 'user': self.env.user, 'time': time, 'datetime': datetime, 'dateutil': dateutil, 'timezone': timezone, } class IrActionsReportXml(models.Model): _name = 'ir.actions.report.xml' _inherit = 'ir.actions.actions' _table = 'ir_act_report_xml' _sequence = 'ir_actions_id_seq' _order = 'name' name = fields.Char(translate=True) type = fields.Char(default='ir.actions.report.xml') model = fields.Char(required=True) report_type = fields.Selection([('qweb-pdf', 'PDF'), ('qweb-html', 'HTML'), ('controller', 'Controller'), ('pdf', 'RML pdf (deprecated)'), ('sxw', 'RML sxw (deprecated)'), ('webkit', 'Webkit (deprecated)')], required=True, default="pdf", help="HTML will open the report directly in your browser, PDF will use wkhtmltopdf to render the HTML into a PDF file and let you download it, Controller allows you to define the url of a custom controller outputting any kind of report.") report_name = fields.Char(string='Template Name', required=True, help="For QWeb reports, name of the template used in the rendering. The method 'render_html' of the model 'report.template_name' will be called (if any) to give the html. For RML reports, this is the LocalService name.") groups_id = fields.Many2many('res.groups', 'res_groups_report_rel', 'uid', 'gid', string='Groups') ir_values_id = fields.Many2one('ir.values', string='More Menu entry', readonly=True, help='More menu entry.', copy=False) # options multi = fields.Boolean(string='On Multiple Doc.', help="If set to true, the action will not be displayed on the right toolbar of a form view.") attachment_use = fields.Boolean(string='Reload from Attachment', help='If you check this, then the second time the user prints with same attachment name, it returns the previous report.') attachment = fields.Char(string='Save as Attachment Prefix', help='This is the filename of the attachment used to store the printing result. Keep empty to not save the printed reports. You can use a python expression with the object and time variables.') # Deprecated rml stuff header = fields.Boolean(string='Add RML Header', default=True, help="Add or not the corporate RML header") parser = fields.Char(string='Parser Class') auto = fields.Boolean(string='Custom Python Parser', default=True) report_xsl = fields.Char(string='XSL Path') report_xml = fields.Char(string='XML Path') report_rml = fields.Char(string='Main Report File Path/controller', help="The path to the main report file/controller (depending on Report Type) or empty if the content is in another data field") report_file = fields.Char(related='report_rml', string='Report File', required=False, readonly=False, store=True, help="The path to the main report file (depending on Report Type) or empty if the content is in another field") report_sxw = fields.Char(compute='_compute_report_sxw', string='SXW Path') report_sxw_content_data = fields.Binary(string='SXW Content') report_rml_content_data = fields.Binary(string='RML Content') report_sxw_content = fields.Binary(compute='_compute_report_sxw_content', inverse='_inverse_report_sxw_content', string='SXW Content') report_rml_content = fields.Binary(compute='_compute_report_rml_content', inverse='_inverse_report_rml_content', string='RML Content') @api.depends('report_rml') def _compute_report_sxw(self): for report in self: if report.report_rml: self.report_sxw = report.report_rml.replace('.rml', '.sxw') def _report_content(self, name): data = self[name + '_content_data'] if not data and self[name]: try: with tools.file_open(self[name], mode='rb') as fp: data = fp.read() except Exception: data = False return data @api.depends('report_sxw', 'report_sxw_content_data') def _compute_report_sxw_content(self): for report in self: report.report_sxw_content = report._report_content('report_sxw') @api.depends('report_rml', 'report_rml_content_data') def _compute_report_rml_content(self): for report in self: report.report_rml_content = report._report_content('report_rml') def _inverse_report_sxw_content(self): for report in self: report.report_sxw_content_data = report.report_sxw_content def _inverse_report_rml_content(self): for report in self: report.report_rml_content_data = report.report_rml_content @api.model_cr def _lookup_report(self, name): """ Look up a report definition. """ join = os.path.join # First lookup in the deprecated place, because if the report definition # has not been updated, it is more likely the correct definition is there. # Only reports with custom parser sepcified in Python are still there. if 'report.' + name in odoo.report.interface.report_int._reports: return odoo.report.interface.report_int._reports['report.' + name] self._cr.execute("SELECT * FROM ir_act_report_xml WHERE report_name=%s", (name,)) row = self._cr.dictfetchone() if not row: raise Exception("Required report does not exist: %s" % name) if row['report_type'] in ('qweb-pdf', 'qweb-html'): return row['report_name'] elif row['report_rml'] or row['report_rml_content_data']: kwargs = {} if row['parser']: kwargs['parser'] = getattr(odoo.addons, row['parser']) return report_sxw('report.'+row['report_name'], row['model'], join('addons', row['report_rml'] or '/'), header=row['header'], register=False, **kwargs) elif row['report_xsl'] and row['report_xml']: return report_rml('report.'+row['report_name'], row['model'], join('addons', row['report_xml']), row['report_xsl'] and join('addons', row['report_xsl']), register=False) else: raise Exception("Unhandled report type: %s" % row) @api.multi def create_action(self): """ Create a contextual action for each report. """ for report in self: ir_values = self.env['ir.values'].sudo().create({ 'name': report.name, 'model': report.model, 'key2': 'client_print_multi', 'value': "ir.actions.report.xml,%s" % report.id, }) report.write({'ir_values_id': ir_values.id}) return True @api.multi def unlink_action(self): """ Remove the contextual actions created for the reports. """ self.check_access_rights('write', raise_exception=True) for report in self: if report.ir_values_id: try: report.ir_values_id.sudo().unlink() except Exception: raise UserError(_('Deletion of the action record failed.')) return True @api.model def render_report(self, res_ids, name, data): """ Look up a report definition and render the report for the provided IDs. """ report = self._lookup_report(name) if isinstance(report, basestring): # Qweb report # The only case where a QWeb report is rendered with this method occurs when running # yml tests originally written for RML reports. if tools.config['test_enable'] and not tools.config['test_report_directory']: # Only generate the pdf when a destination folder has been provided. return self.env['report'].get_html(res_ids, report, data=data), 'html' else: return self.env['report'].get_pdf(res_ids, report, data=data), 'pdf' else: return report.create(self._cr, self._uid, res_ids, data, context=self._context) class IrActionsActWindow(models.Model): _name = 'ir.actions.act_window' _table = 'ir_act_window' _inherit = 'ir.actions.actions' _sequence = 'ir_actions_id_seq' _order = 'name' @api.constrains('res_model', 'src_model') def _check_model(self): for action in self: if action.res_model not in self.env: raise ValidationError(_('Invalid model name %r in action definition.') % action.res_model) if action.src_model and action.src_model not in self.env: raise ValidationError(_('Invalid model name %r in action definition.') % action.src_model) @api.depends('view_ids.view_mode', 'view_mode', 'view_id.type') def _compute_views(self): """ Compute an ordered list of the specific view modes that should be enabled when displaying the result of this action, along with the ID of the specific view to use for each mode, if any were required. This function hides the logic of determining the precedence between the view_modes string, the view_ids o2m, and the view_id m2o that can be set on the action. """ for act in self: act.views = [(view.view_id.id, view.view_mode) for view in act.view_ids] got_modes = [view.view_mode for view in act.view_ids] all_modes = act.view_mode.split(',') missing_modes = [mode for mode in all_modes if mode not in got_modes] if missing_modes: if act.view_id.type in missing_modes: # reorder missing modes to put view_id first if present missing_modes.remove(act.view_id.type) act.views.append((act.view_id.id, act.view_id.type)) act.views.extend([(False, mode) for mode in missing_modes]) @api.depends('res_model', 'search_view_id') def _compute_search_view(self): for act in self: fvg = self.env[act.res_model].fields_view_get(act.search_view_id.id, 'search') act.search_view = str(fvg) name = fields.Char(string='Action Name', translate=True) type = fields.Char(default="ir.actions.act_window") view_id = fields.Many2one('ir.ui.view', string='View Ref.', ondelete='set null') domain = fields.Char(string='Domain Value', help="Optional domain filtering of the destination data, as a Python expression") context = fields.Char(string='Context Value', default={}, required=True, help="Context dictionary as Python expression, empty by default (Default: {})") res_id = fields.Integer(string='Record ID', help="Database ID of record to open in form view, when ``view_mode`` is set to 'form' only") res_model = fields.Char(string='Destination Model', required=True, help="Model name of the object to open in the view window") src_model = fields.Char(string='Source Model', help="Optional model name of the objects on which this action should be visible") target = fields.Selection([('current', 'Current Window'), ('new', 'New Window'), ('inline', 'Inline Edit'), ('fullscreen', 'Full Screen'), ('main', 'Main action of Current Window')], default="current", string='Target Window') view_mode = fields.Char(required=True, default='tree,form', help="Comma-separated list of allowed view modes, such as 'form', 'tree', 'calendar', etc. (Default: tree,form)") view_type = fields.Selection([('tree', 'Tree'), ('form', 'Form')], default="form", string='View Type', required=True, help="View type: Tree type to use for the tree view, set to 'tree' for a hierarchical tree view, or 'form' for a regular list view") usage = fields.Char(string='Action Usage', help="Used to filter menu and home actions from the user form.") view_ids = fields.One2many('ir.actions.act_window.view', 'act_window_id', string='Views') views = fields.Binary(compute='_compute_views', help="This function field computes the ordered list of views that should be enabled " \ "when displaying the result of an action, federating view mode, views and " \ "reference view. The result is returned as an ordered list of pairs (view_id,view_mode).") limit = fields.Integer(default=80, help='Default limit for the list view') groups_id = fields.Many2many('res.groups', 'ir_act_window_group_rel', 'act_id', 'gid', string='Groups') search_view_id = fields.Many2one('ir.ui.view', string='Search View Ref.') filter = fields.Boolean() auto_search = fields.Boolean(default=True) search_view = fields.Text(compute='_compute_search_view') multi = fields.Boolean(string='Restrict to lists', help="If checked and the action is bound to a model, it will only appear in the More menu on list views") @api.multi def read(self, fields=None, load='_classic_read'): """ call the method get_empty_list_help of the model and set the window action help message """ result = super(IrActionsActWindow, self).read(fields, load=load) if not fields or 'help' in fields: for values in result: model = values.get('res_model') if model in self.env: values['help'] = self.env[model].get_empty_list_help(values.get('help', "")) return result @api.model def for_xml_id(self, module, xml_id): """ Returns the act_window object created for the provided xml_id :param module: the module the act_window originates in :param xml_id: the namespace-less id of the action (the @id attribute from the XML file) :return: A read() view of the ir.actions.act_window """ record = self.env.ref("%s.%s" % (module, xml_id)) return record.read()[0] @api.model def create(self, vals): self.clear_caches() return super(IrActionsActWindow, self).create(vals) @api.multi def unlink(self): self.clear_caches() return super(IrActionsActWindow, self).unlink() @api.multi def exists(self): ids = self._existing() existing = self.filtered(lambda rec: rec.id in ids) if len(existing) < len(self): # mark missing records in cache with a failed value exc = MissingError(_("Record does not exist or has been deleted.")) (self - existing)._cache.update(fields.FailedValue(exc)) return existing @api.model @tools.ormcache() def _existing(self): self._cr.execute("SELECT id FROM %s" % self._table) return set(row[0] for row in self._cr.fetchall()) VIEW_TYPES = [ ('tree', 'Tree'), ('form', 'Form'), ('graph', 'Graph'), ('pivot', 'Pivot'), ('calendar', 'Calendar'), ('gantt', 'Gantt'), ('kanban', 'Kanban'), ] class IrActionsActWindowView(models.Model): _name = 'ir.actions.act_window.view' _table = 'ir_act_window_view' _rec_name = 'view_id' _order = 'sequence' sequence = fields.Integer() view_id = fields.Many2one('ir.ui.view', string='View') view_mode = fields.Selection(VIEW_TYPES, string='View Type', required=True) act_window_id = fields.Many2one('ir.actions.act_window', string='Action', ondelete='cascade') multi = fields.Boolean(string='On Multiple Doc.', help="If set to true, the action will not be displayed on the right toolbar of a form view.") @api.model_cr_context def _auto_init(self): res = super(IrActionsActWindowView, self)._auto_init() self._cr.execute('SELECT indexname FROM pg_indexes WHERE indexname = \'act_window_view_unique_mode_per_action\'') if not self._cr.fetchone(): self._cr.execute('CREATE UNIQUE INDEX act_window_view_unique_mode_per_action ON ir_act_window_view (act_window_id, view_mode)') return res class IrActionsActWindowclose(models.Model): _name = 'ir.actions.act_window_close' _inherit = 'ir.actions.actions' _table = 'ir_actions' type = fields.Char(default='ir.actions.act_window_close') class IrActionsActUrl(models.Model): _name = 'ir.actions.act_url' _table = 'ir_act_url' _inherit = 'ir.actions.actions' _sequence = 'ir_actions_id_seq' _order = 'name' name = fields.Char(string='Action Name', translate=True) type = fields.Char(default='ir.actions.act_url') url = fields.Text(string='Action URL', required=True) target = fields.Selection([('new', 'New Window'), ('self', 'This Window')], string='Action Target', default='new', required=True) class IrActionsServer(models.Model): """ Server actions model. Server action work on a base model and offer various type of actions that can be executed automatically, for example using base action rules, of manually, by adding the action in the 'More' contextual menu. Since Odoo 8.0 a button 'Create Menu Action' button is available on the action form view. It creates an entry in the More menu of the base model. This allows to create server actions and run them in mass mode easily through the interface. The available actions are : - 'Execute Python Code': a block of python code that will be executed - 'Trigger a Workflow Signal': send a signal to a workflow - 'Run a Client Action': choose a client action to launch - 'Create or Copy a new Record': create a new record with new values, or copy an existing record in your database - 'Write on a Record': update the values of a record - 'Execute several actions': define an action that triggers several other server actions """ _name = 'ir.actions.server' _table = 'ir_act_server' _inherit = 'ir.actions.actions' _sequence = 'ir_actions_id_seq' _order = 'sequence,name' DEFAULT_PYTHON_CODE = """# Available variables: # - time, datetime, dateutil, timezone: Python libraries # - env: Odoo Environement # - model: Model of the record on which the action is triggered # - record: Record on which the action is triggered if there is one, otherwise None # - records: Records on which the action is triggered if there is one, otherwise None # - log : log(message), function to log debug information in logging table # - Warning: Warning Exception to use with raise # To return an action, assign: action = {...}\n\n\n\n""" @api.model def _select_objects(self): records = self.env['ir.model'].search([]) return [(record.model, record.name) for record in records] + [('', '')] @api.model def _get_states(self): """ Override me in order to add new states in the server action. Please note that the added key length should not be higher than already-existing ones. """ return [('code', 'Execute Python Code'), ('trigger', 'Trigger a Workflow Signal'), ('client_action', 'Run a Client Action'), ('object_create', 'Create or Copy a new Record'), ('object_write', 'Write on a Record'), ('multi', 'Execute several actions')] name = fields.Char(string='Action Name', translate=True) type = fields.Char(default='ir.actions.server') condition = fields.Char(default="True", help="Condition verified before executing the server action. If it " "is not verified, the action will not be executed. The condition is " "a Python expression, like 'record.list_price > 5000'. A void " "condition is considered as always True. Help about python expression " "is given in the help tab.") state = fields.Selection(selection=lambda self: self._get_states(), string='Action To Do', default='code', required=True, help="Type of server action. The following values are available:\n" "- 'Execute Python Code': a block of python code that will be executed\n" "- 'Trigger a Workflow Signal': send a signal to a workflow\n" "- 'Run a Client Action': choose a client action to launch\n" "- 'Create or Copy a new Record': create a new record with new values, or copy an existing record in your database\n" "- 'Write on a Record': update the values of a record\n" "- 'Execute several actions': define an action that triggers several other server actions\n" "- 'Send Email': automatically send an email (available in email_template)") # Generic sequence = fields.Integer(default=5, help="When dealing with multiple actions, the execution order is " "based on the sequence. Low number means high priority.") model_id = fields.Many2one('ir.model', string='Base Model', required=True, ondelete='cascade', help="Base model on which the server action runs.") model_name = fields.Char(related='model_id.model', readonly=True) menu_ir_values_id = fields.Many2one('ir.values', string='More Menu entry', readonly=True, help='More menu entry.', copy=False) # Client Action action_id = fields.Many2one('ir.actions.actions', string='Client Action', help="Select the client action that has to be executed.") # Python code code = fields.Text(string='Python Code', default=DEFAULT_PYTHON_CODE, help="Write Python code that the action will execute. Some variables are " "available for use; help about pyhon expression is given in the help tab.") # Workflow signal use_relational_model = fields.Selection([('base', 'Use the base model of the action'), ('relational', 'Use a relation field on the base model')], string='Relational Target Model', default='base', required=True) wkf_transition_id = fields.Many2one('workflow.transition', string='Signal to Trigger', help="Select the workflow signal to trigger.") wkf_model_id = fields.Many2one('ir.model', string='Target Model', help="The model that will receive the workflow signal. Note that it should have a workflow associated with it.") wkf_model_name = fields.Char(string='Target Model Name', related='wkf_model_id.model', store=True, readonly=True) wkf_field_id = fields.Many2one('ir.model.fields', string='Relation Field', oldname='trigger_obj_id', help="The field on the current object that links to the target object record (must be a many2one, or an integer field with the record ID)") # Multi child_ids = fields.Many2many('ir.actions.server', 'rel_server_actions', 'server_id', 'action_id', string='Child Actions', help='Child server actions that will be executed. Note that the last return returned action value will be used as global return value.') # Create/Copy/Write use_create = fields.Selection([('new', 'Create a new record in the Base Model'), ('new_other', 'Create a new record in another model'), ('copy_current', 'Copy the current record'), ('copy_other', 'Choose and copy a record in the database')], string="Creation Policy", default='new', required=True) crud_model_id = fields.Many2one('ir.model', string='Create/Write Target Model', oldname='srcmodel_id', help="Model for record creation / update. Set this field only to specify a different model than the base model.") crud_model_name = fields.Char(string='Create/Write Target Model Name', related='crud_model_id.model', store=True, readonly=True) ref_object = fields.Reference(string='Reference record', selection='_select_objects', oldname='copy_object') link_new_record = fields.Boolean(string='Attach the new record', help="Check this if you want to link the newly-created record " "to the current record on which the server action runs.") link_field_id = fields.Many2one('ir.model.fields', string='Link using field', oldname='record_id', help="Provide the field where the record id is stored after the operations.") use_write = fields.Selection([('current', 'Update the current record'), ('expression', 'Update a record linked to the current record using python'), ('other', 'Choose and Update a record in the database')], string='Update Policy', default='current', required=True) write_expression = fields.Char(string='Expression', oldname='write_id', help="Provide an expression that, applied on the current record, gives the field to update.") fields_lines = fields.One2many('ir.server.object.lines', 'server_id', string='Value Mapping', copy=True) # Fake fields used to implement the placeholder assistant model_object_field = fields.Many2one('ir.model.fields', string="Field", help="Select target field from the related document model.\n" "If it is a relationship field you will be able to select " "a target field at the destination of the relationship.") sub_object = fields.Many2one('ir.model', string='Sub-model', readonly=True, help="When a relationship field is selected as first field, " "this field shows the document model the relationship goes to.") sub_model_object_field = fields.Many2one('ir.model.fields', string='Sub-field', help="When a relationship field is selected as first field, " "this field lets you select the target field within the " "destination document model (sub-model).") copyvalue = fields.Char(string='Placeholder Expression', help="Final placeholder expression, to be copy-pasted in the desired template field.") # Fake fields used to implement the ID finding assistant id_object = fields.Reference(string='Record', selection='_select_objects') id_value = fields.Char(string='Record ID') def _check_expression(self, expression, model): """ Check python expression (condition, write_expression). Each step of the path must be a valid many2one field, or an integer field for the last step. :param str expression: a python expression, beginning by 'obj' or 'object' :param model: a record of the model 'ir.model' :returns tuple: (is_valid, target_model_name, error_msg) """ if not model: return (False, None, 'Your expression cannot be validated because the Base Model is not set.') # fetch current model model_name = model.model # transform expression into a path that should look like 'object.many2onefield.many2onefield' path = expression.split('.') initial = path.pop(0) if initial not in ['obj', 'object', 'record']: return (False, None, 'Your expression should begin with obj, object, record.\nAn expression builder is available in the help tab.') # analyze path while path: step = path.pop(0) field = self.env[model_name]._fields.get(step) if not field: return (False, None, 'Part of the expression (%s) is not recognized as a column in the model %s.' % (step, model_name)) ftype = field.type if ftype not in ['many2one', 'int']: return (False, None, 'Part of the expression (%s) is not a valid column type (is %s, should be a many2one or an int)' % (step, ftype)) if ftype == 'int' and path: return (False, None, 'Part of the expression (%s) is an integer field that is only allowed at the end of an expression' % (step)) if ftype == 'many2one': model_name = field.comodel_name return (True, model_name, None) @api.constrains('code') def _check_python_code(self): for action in self.filtered('code'): msg = test_python_expr(expr=action.code.strip(), mode="exec") if msg: raise ValidationError(msg) @api.constrains('write_expression', 'model_id') def _check_write_expression(self): for record in self: if record.write_expression and record.model_id: correct, model_name, message = self._check_expression(record.write_expression, record.model_id) if not correct: _logger.warning('Invalid expression: %s' % message) raise ValidationError(_('Incorrect Write Record Expression')) @api.constrains('child_ids') def _check_recursion(self): if not self._check_m2m_recursion('child_ids'): raise ValidationError(_('Recursion found in child server actions')) @api.onchange('model_id') def _onchange_model_id(self): """ When changing the action base model, reset workflow and crud config to ease value coherence. """ self.use_create = 'new' self.use_write = 'current' self.use_relational_model = 'base' self.wkf_model_id = self.model_id self.wkf_field_id = False self.crud_model_id = self.model_id @api.onchange('use_relational_model', 'wkf_field_id') def _onchange_wkf_config(self): """ Update workflow type configuration - update the workflow model (for base (model_id) /relational (field.relation)) - update wkf_transition_id to False if workflow model changes, to force the user to choose a new one """ if self.use_relational_model == 'relational' and self.wkf_field_id: field = self.wkf_field_id self.wkf_model_id = self.env['ir.model'].search([('model', '=', field.relation)]) else: self.wkf_model_id = self.model_id @api.onchange('wkf_model_id') def _onchange_wkf_model_id(self): """ When changing the workflow model, update its stored name also """ self.wkf_transition_id = False @api.onchange('use_create', 'use_write', 'ref_object') def _onchange_crud_config(self): """ Wrapper on CRUD-type (create or write) on_change """ if self.state == 'object_create': self._onchange_create_config() elif self.state == 'object_write': self._onchange_write_config() def _onchange_create_config(self): """ When changing the object_create type configuration: - `new` and `copy_current`: crud_model_id is the same as base model - `new_other`: user choose crud_model_id - `copy_other`: disassemble the reference object to have its model - if the target model has changed, then reset the link field that is probably not correct anymore """ crud_model_id = self.crud_model_id if self.use_create == 'new': self.crud_model_id = self.model_id elif self.use_create == 'new_other': pass elif self.use_create == 'copy_current': self.crud_model_id = self.model_id elif self.use_create == 'copy_other' and self.ref_object: ref_model = self.ref_object._name self.crud_model_id = self.env['ir.model'].search([('model', '=', ref_model)]) if self.crud_model_id != crud_model_id: self.link_field_id = False def _onchange_write_config(self): """ When changing the object_write type configuration: - `current`: crud_model_id is the same as base model - `other`: disassemble the reference object to have its model - `expression`: has its own on_change, nothing special here """ crud_model_id = self.crud_model_id if self.use_write == 'current': self.crud_model_id = self.model_id elif self.use_write == 'other' and self.ref_object: ref_model = self.ref_object._name self.crud_model_id = self.env['ir.model'].search([('model', '=', ref_model)]) elif self.use_write == 'expression': pass if self.crud_model_id != crud_model_id: self.link_field_id = False @api.onchange('crud_model_id') def _onchange_crud_model_id(self): """ When changing the CRUD model, update its stored name also """ self.link_field_id = False @api.onchange('write_expression') def _onchange_write_expression(self): """ Check the write_expression and update crud_model_id accordingly """ values = {} if self.write_expression: valid, model_name, message = self._check_expression(self.write_expression, self.model_id) else: valid, model_name, message = True, None, False if self.model_id: model_name = self.model_id.model if not valid: return { 'warning': { 'title': _('Incorrect expression'), 'message': message or _('Invalid expression'), } } if model_name: self.crud_model_id = self.env['ir.model'].search([('model', '=', model_name)]) def _build_expression(self, field_name, sub_field_name): """ Returns a placeholder expression for use in a template field, based on the values provided in the placeholder assistant. :param field_name: main field name :param sub_field_name: sub field name (M2O) :return: final placeholder expression """ expression = '' if field_name: expression = "object." + field_name if sub_field_name: expression += "." + sub_field_name return expression @api.onchange('model_object_field', 'sub_model_object_field') def _onchange_model_object_field(self): field = self.model_object_field sub_field = self.sub_model_object_field self.sub_object = False self.sub_model_object_field = False self.copyvalue = False if field: if field.ttype in ['many2one', 'one2many', 'many2many']: comodel = self.env['ir.model'].search([('model', '=', field.relation)]) if comodel: self.sub_object = comodel self.copyvalue = self._build_expression(field.name, sub_field.name) self.sub_model_object_field = sub_field else: self.copyvalue = self._build_expression(field.name, False) @api.onchange('id_object') def _onchange_id_object(self): self.id_value = self.id_object.id if self.id_object else False @api.multi def create_action(self): """ Create a contextual action for each server action. """ for action in self: ir_values = self.env['ir.values'].sudo().create({ 'name': _('Run %s') % action.name, 'model': action.model_id.model, 'key2': 'client_action_multi', 'value': "ir.actions.server,%s" % action.id, }) action.write({'menu_ir_values_id': ir_values.id}) return True @api.multi def unlink_action(self): """ Remove the contextual actions created for the server actions. """ self.check_access_rights('write', raise_exception=True) for action in self: if action.menu_ir_values_id: try: action.menu_ir_values_id.sudo().unlink() except Exception: raise UserError(_('Deletion of the action record failed.')) return True @api.model def run_action_client_action(self, action, eval_context=None): if not action.action_id: raise UserError(_("Please specify an action to launch!")) record = self.env[action.action_id.type].browse(action.action_id.id) return record.read()[0] @api.model def run_action_code_multi(self, action, eval_context=None): safe_eval(action.code.strip(), eval_context, mode="exec", nocopy=True) # nocopy allows to return 'action' if 'action' in eval_context: return eval_context['action'] @api.model def run_action_trigger(self, action, eval_context=None): """ Trigger a workflow signal, depending on the use_relational_model: - `base`: base_model_pool.signal_workflow(cr, uid, context.get('active_id'), <TRIGGER_NAME>) - `relational`: find the related model and object, using the relational field, then target_model_pool.signal_workflow(cr, uid, target_id, <TRIGGER_NAME>) """ # weird signature and calling -> no self.env, use action param's record = action.env[action.model_id.model].browse(self._context['active_id']) if action.use_relational_model == 'relational': record = getattr(record, action.wkf_field_id.name) if not isinstance(record, models.BaseModel): record = action.env[action.wkf_model_id.model].browse(record) record.signal_workflow(action.wkf_transition_id.signal) @api.model def run_action_multi(self, action, eval_context=None): res = False for act in action.child_ids: result = act.run() if result: res = result return res @api.model def run_action_object_write(self, action, eval_context=None): """ Write server action. - 1. evaluate the value mapping - 2. depending on the write configuration: - `current`: id = active_id - `other`: id = from reference object - `expression`: id = from expression evaluation """ res = {} for exp in action.fields_lines: res[exp.col1.name] = exp.eval_value(eval_context=eval_context)[exp.id] if action.use_write == 'current': model = action.model_id.model ref_id = self._context.get('active_id') elif action.use_write == 'other': model = action.crud_model_id.model ref_id = action.ref_object.id elif action.use_write == 'expression': model = action.crud_model_id.model ref = safe_eval(action.write_expression, eval_context) if isinstance(ref, models.BaseModel): ref_id = ref.id else: ref_id = int(ref) if self._context.get('onchange_self'): record_cached = self._context['onchange_self'] for field, new_value in res.iteritems(): record_cached[field] = new_value else: self.env[model].browse(ref_id).write(res) @api.model def run_action_object_create(self, action, eval_context=None): """ Create and Copy server action. - 1. evaluate the value mapping - 2. depending on the write configuration: - `new`: new record in the base model - `copy_current`: copy the current record (id = active_id) + gives custom values - `new_other`: new record in target model - `copy_other`: copy the current record (id from reference object) + gives custom values """ res = {} for exp in action.fields_lines: res[exp.col1.name] = exp.eval_value(eval_context=eval_context)[exp.id] if action.use_create in ['new', 'copy_current']: model = action.model_id.model elif action.use_create in ['new_other', 'copy_other']: model = action.crud_model_id.model if action.use_create == 'copy_current': ref_id = self._context.get('active_id') res = self.env[model].browse(ref_id).copy(res) elif action.use_create == 'copy_other': res = action.ref_object.copy(res) else: res = self.env[model].create(res) if action.link_new_record and action.link_field_id: record = self.env[action.model_id.model].browse(self._context.get('active_id')) record.write({action.link_field_id.name: res.id}) @api.model def _get_eval_context(self, action=None): """ Prepare the context used when evaluating python code, like the condition or code server actions. :param action: the current server action :type action: browse record :returns: dict -- evaluation context given to (safe_)safe_eval """ def log(message, level="info"): with self.pool.cursor() as cr: cr.execute(""" INSERT INTO ir_logging(create_date, create_uid, type, dbname, name, level, message, path, line, func) VALUES (NOW() at time zone 'UTC', %s, %s, %s, %s, %s, %s, %s, %s, %s) """, (self.env.uid, 'server', self._cr.dbname, __name__, level, message, "action", action.id, action.name)) eval_context = super(IrActionsServer, self)._get_eval_context(action=action) model = self.env[action.model_id.model] record = None records = None if self._context.get('active_model') == action.model_id.model and self._context.get('active_id'): record = model.browse(self._context['active_id']) if self._context.get('active_model') == action.model_id.model and self._context.get('active_ids'): records = model.browse(self._context['active_ids']) if self._context.get('onchange_self'): record = self._context['onchange_self'] eval_context.update({ # orm 'env': self.env, 'model': model, # Exceptions 'Warning': odoo.exceptions.Warning, # record 'record': record, 'records': records, # TODO: REMOVE ME IN saas-14 'workflow': workflow, # deprecated use record, records 'object': record, 'obj': record, # Deprecated use env or model instead 'pool': self.pool, 'cr': self._cr, 'context': self._context, 'user': self.env.user, # helpers 'log': log, }) return eval_context @api.multi def run(self): """ Runs the server action. For each server action, the condition is checked. Note that a void (``False``) condition is considered as always valid. If it is verified, the run_action_<STATE> method is called. This allows easy overriding of the server actions. :param dict context: context should contain following keys - active_id: id of the current object (single mode) - active_model: current model that should equal the action's model The following keys are optional: - active_ids: ids of the current records (mass mode). If active_ids and active_id are present, active_ids is given precedence. :return: an action_id to be executed, or False is finished correctly without return action """ res = False for action in self: eval_context = self._get_eval_context(action) condition = action.condition if condition is False: # Void (aka False) conditions are considered as True condition = True if hasattr(self, 'run_action_%s_multi' % action.state): expr = safe_eval(str(condition), eval_context) if not expr: continue # call the multi method run_self = self.with_context(eval_context['context']) func = getattr(run_self, 'run_action_%s_multi' % action.state) res = func(action, eval_context=eval_context) elif hasattr(self, 'run_action_%s' % action.state): active_id = self._context.get('active_id') if not active_id and self._context.get('onchange_self'): active_id = self._context['onchange_self']._origin.id active_ids = self._context.get('active_ids', [active_id] if active_id else []) for active_id in active_ids: # run context dedicated to a particular active_id run_self = self.with_context(active_ids=[active_id], active_id=active_id) eval_context["context"] = run_self._context expr = safe_eval(str(condition), eval_context) if not expr: continue # call the single method related to the action: run_action_<STATE> func = getattr(run_self, 'run_action_%s' % action.state) res = func(action, eval_context=eval_context) return res @api.model def _run_actions(self, ids): """ Run server actions with given ids. Allow crons to run specific server actions """ return self.browse(ids).run() class IrServerObjectLines(models.Model): _name = 'ir.server.object.lines' _description = 'Server Action value mapping' _sequence = 'ir_actions_id_seq' server_id = fields.Many2one('ir.actions.server', string='Related Server Action', ondelete='cascade') col1 = fields.Many2one('ir.model.fields', string='Field', required=True) value = fields.Text(required=True, help="Expression containing a value specification. \n" "When Formula type is selected, this field may be a Python expression " " that can use the same values as for the condition field on the server action.\n" "If Value type is selected, the value will be used directly without evaluation.") type = fields.Selection([('value', 'Value'), ('equation', 'Python expression')], 'Evaluation Type', default='value', required=True, change_default=True) @api.multi def eval_value(self, eval_context=None): result = dict.fromkeys(self.ids, False) for line in self: expr = line.value if line.type == 'equation': expr = safe_eval(line.value, eval_context) elif line.col1.ttype in ['many2one', 'integer']: try: expr = int(line.value) except Exception: pass result[line.id] = expr return result class IrActionsTodo(models.Model): """ Configuration Wizards """ _name = 'ir.actions.todo' _description = "Configuration Wizards" _order = "sequence, id" action_id = fields.Many2one('ir.actions.actions', string='Action', required=True, index=True) sequence = fields.Integer(default=10) state = fields.Selection([('open', 'To Do'), ('done', 'Done')], string='Status', default='open', required=True) name = fields.Char() type = fields.Selection([('manual', 'Launch Manually'), ('once', 'Launch Manually Once'), ('automatic', 'Launch Automatically')], default='manual', required=True, help="""Manual: Launched manually. Automatic: Runs whenever the system is reconfigured. Launch Manually Once: after having been launched manually, it sets automatically to Done.""") groups_id = fields.Many2many('res.groups', 'res_groups_action_rel', 'uid', 'gid', string='Groups') note = fields.Text(string='Text', translate=True) @api.multi def name_get(self): return [(record.id, record.action_id.name) for record in self] @api.multi def unlink(self): if self: try: todo_open_menu = self.env.ref('base.open_menu') # don't remove base.open_menu todo but set its original action if todo_open_menu in self: todo_open_menu.action_id = self.env.ref('base.action_client_base_menu').id self -= todo_open_menu except ValueError: pass return super(IrActionsTodo, self).unlink() @api.model def name_search(self, name, args=None, operator='ilike', limit=100): if args is None: args = [] if name: actions = self.search([('action_id', operator, name)] + args, limit=limit) return actions.name_get() return super(IrActionsTodo, self).name_search(name, args=args, operator=operator, limit=limit) @api.multi def action_launch(self, context=None): """ Launch Action of Wizard""" self.ensure_one() if self.type in ('automatic', 'once'): self.write({'state': 'done'}) # Load action action = self.env[self.action_id.type].browse(self.action_id.id) result = action.read()[0] if action._name != 'ir.actions.act_window': return result result.setdefault('context', '{}') # Open a specific record when res_id is provided in the context ctx = safe_eval(result['context'], {'user': self.env.user}) if ctx.get('res_id'): result['res_id'] = ctx.pop('res_id') # disable log for automatic wizards if self.type == 'automatic': ctx['disable_log'] = True result['context'] = ctx return result @api.multi def action_open(self): """ Sets configuration wizard in TODO state""" return self.write({'state': 'open'}) @api.multi def progress(self): """ Returns a dict with 3 keys {todo, done, total}. These keys all map to integers and provide the number of todos marked as open, the total number of todos and the number of todos not open (which is basically a shortcut to total-todo) :rtype: dict """ user_groups = self.env.user.groups_id def groups_match(todo): """ Checks if the todo's groups match those of the current user """ return not todo.groups_id or bool(todo.groups_id & user_groups) done = filter(groups_match, self.browse(self.search([('state', '!=', 'open')]))) total = filter(groups_match, self.browse(self.search([]))) return { 'done': len(done), 'total': len(total), 'todo': len(total) - len(done), } class IrActionsActClient(models.Model): _name = 'ir.actions.client' _inherit = 'ir.actions.actions' _table = 'ir_act_client' _sequence = 'ir_actions_id_seq' _order = 'name' name = fields.Char(string='Action Name', translate=True) type = fields.Char(default='ir.actions.client') tag = fields.Char(string='Client action tag', required=True, help="An arbitrary string, interpreted by the client" " according to its own needs and wishes. There " "is no central tag repository across clients.") target = fields.Selection([('current', 'Current Window'), ('new', 'New Window'), ('fullscreen', 'Full Screen'), ('main', 'Main action of Current Window')], default="current", string='Target Window') res_model = fields.Char(string='Destination Model', help="Optional model, mostly used for needactions.") context = fields.Char(string='Context Value', default="{}", required=True, help="Context dictionary as Python expression, empty by default (Default: {})") params = fields.Binary(compute='_compute_params', inverse='_inverse_params', string='Supplementary arguments', help="Arguments sent to the client along with" "the view tag") params_store = fields.Binary(string='Params storage', readonly=True) @api.depends('params_store') def _compute_params(self): self_bin = self.with_context(bin_size=False, bin_size_params_store=False) for record, record_bin in zip(self, self_bin): record.params = record_bin.params_store and safe_eval(record_bin.params_store, {'uid': self._uid}) def _inverse_params(self): for record in self: params = record.params record.params_store = repr(params) if isinstance(params, dict) else params