我正在尝试在树状视图中选择多个员工,并希望更新其状态(选择字段具有两个选项,即“存在”,“缺席”)。
status = fields.Selection(string="Status", selection=[('present', "Present"), ('absent', "Absent")])
我的第一种方法:
我使用act_window
在“操作”下拉菜单中创建了“当前”选项(当选中多个复选框时出现)
<act_window name="Present"
res_model="hr.employee"
src_model="hr.employee"
multi="True"
key2="client_action_multi"
id="employee_present"
/>
并尝试在python文件中为其定义一个函数,但是我无法链接
act_window
使用该功能。
第二种方法:
然后我尝试另一种创建按钮并将其链接到javascript文件的方法,但是这种方法也无法解决我的问题。
下面是文件hr_attendance/static/src/xml/qweb.xml
<?xml version="1.0" encoding="UTF-8"?>
<templates id="sync_template" xml:space="preserve">
<t t-extend="ListView.buttons">
<t t-jquery="button.o_list_button_add" t-operation="after">
<button class="btn btn-sm btn-default sync_button" type="button">Present</button>
</t>
</t>
</templates>
下面是sync.js hr_attendance/static/src/js
openerp.hr_attendance = function(instance) {
var ListView = instance.web.ListView;
console.log('Inside Javascript Code method call...');
ListView.include({
render_buttons: function() {
// GET BUTTON REFERENCE
this._super.apply(this, arguments)
if (this.$buttons) {
var btn = this.$buttons.find('.sync_button')
}
// PERFORM THE ACTION
btn.on('click', this.proxy('do_sync'))
},
do_sync: function() {
new instance.web.Model('hr.attendance')
.call('present', [[]])
.done(function() {
alert('done')
})
}
});
}
下面是我用JavaScript代码调用的函数
@api.multi
def present(self):
self.write({'status': 'present'})
答案 0 :(得分:0)
OCA Repositories中有一个不错的社区模块,称为“批量编辑”。您真的可以轻松地为员工等业务对象创建批量编辑操作,只需激活操作菜单(在Odoo V8中为“更多”)即可。
另一种解决方案是使用python代码创建服务器操作。也可以为操作菜单激活服务器操作(在odoo V8服务器操作的右上角有一个按钮)。但是您将需要执行两个操作,第一个解决方案可以执行一个操作。
此服务器操作的代码非常简单:
obj.browse(env.context.get('active_ids')).write({'my_field': my_value})
您显然必须在选择字段上写一个服务器动作的值为“ Present”,而另一个则为“ Absent”。
服务器操作可在“设置/技术/操作/服务器操作”中找到。