odoo8 进入form表单界面的时候,可不可以直接进入edit编辑状态。 而不是通过点击“编辑”按钮才可以编辑数据?
-
@yeko
在py文件中可以直接通过action flags对象来透传initial_mode参数@api.multi def action_edit_partner(self): self.ensure_one() return { 'type': 'ir.actions.act_window', 'view_type': 'form', 'view_mode': 'form', 'res_model': 'res.partner', 'res_id': 1, 'context': self.env.context, 'flags': {'initial_mode': 'edit'}, }
如果是在前端的话,需要如下(odoo11中):
odoo.define('sps_product.default_to_edit_mode', function (require) { "use strict"; var FormView = require('web.FormView'); FormView.include({ init : function(viewInfo, params){ this._super.apply(this, arguments); var modelName = this.controllerParams.modelName; if('product.template' == modelName){ var mode = 'edit'; this.controllerParams.mode = mode; this.rendererParams.mode = mode; } }, }); });