我正在OpenERP 7中为餐馆模块开发一个看板视图, 该视图用于显示客户订购的食品状态。 目前阶段是:
- 等待队列
- 正在进行中
- 准备好送达
- 已送达
- 取消
我创建了两组:
- 服务员
- 厨师
当用户的小组是服务员时,他/她只能在舞台“准备好送达”时修改记录。
对于Chef,他/她只能在舞台为“等待队列”或“进行中”时修改记录。
如何为这种情况设置域/访问权限?
这是我的看板视图的XML:
<record model="ir.ui.view" id="inno_master_kitchen_kanban_view">
<field name="name">Master Kitchen</field>
<field name="model">inno.master.kitchen</field>
<field name="arch" type="xml">
<kanban default_group_by="state" create="false">
<field name="state"/>
<field name="customer_id"/>
<field name="product_id"/>
<field name="product_qty"/>
<field name="table_name"/>
<field name="order_reference"/>
<templates>
<t t-name="kanban-box">
<div class="kitchen_kanban oe_kanban_color_0 oe_kanban_card">
<div class="oe_kanban_box_header ">
<b><field name="table_name"/></b>
</div>
<div class="oe_kanban_content">
<img style="float:left;" t-att-src="kanban_image('product.product', 'image_medium', record.product_id.raw_value)" class="oe_kanban_image" />
<div><b><field name="order_reference"/></b></div>
<div><field name="product_id"/></div>
<div>
<field name="product_qty"/>
<field name="product_uom"/>
</div>
<img style="float:right;" t-att-src="kanban_image('res.partner', 'image_small', record.customer_id.raw_value)" width="24" height="24" t-att-title="record.customer_id.value" class="oe_kanban_avatar" />
</div>
<div class="oe_clear"></div>
</div>
</t>
</templates>
</kanban>
</field>
</record>
答案 0 :(得分:2)
只需简单地授予更新州字段的权限。
或
over ride write方法&amp;做正确的代码和提出你不能这样做的消息。
def write(self, cr, uid, ids, vals, context=None): res = super(crm_lead, self).write(cr, uid, ids, vals, context) warning = {} if vals.get('stage_id'): stage = self.pool.get('crm.case.stage').browse(cr, uid, vals['stage_id'], context=context) if stage.name == 'Pre Sale': #raise osv.except_osv(_('Error!'),_('You cannot confirm a sales order which has no line.')) dummy,group_id = self.pool.get('ir.model.data').get_object_reference(cr, 1, 'base', 'group_sale_manager') user_groups = self.pool.get('res.users').read(cr, uid, [uid], context)[0]['groups_id'] if group_id not in user_groups: raise osv.except_osv(_('Warning!'), _('You are not a sales manager and so you are not allowed to win this thing')) return res