我发现下面会在openerp
中弹出按钮按下操作的确认对话框<button name="action_button_confirm" states="draft" string="Confirm Sale"
type="object" groups="base.group_user" confirm="Do you confirm this sale?"/>
我希望仅当订单行中的某个产品是服务且文本应为
时才会显示确认文本Do you like to confirm sale with service "AC Service"?
其中Ac Services是服务产品名称(即基于订单行的动态文本)。请建议我这样做的方法。感谢
答案 0 :(得分:3)
我已经创建了一个针对条件提醒的向导,这对我来说做得很好。对于有类似问题的人,我将我的想法放在下面
我的新向导类
class sale_order_confirm(osv.osv):
_name = "sale.order.confirm"
_description = "Sales Order Confirm"
def action_confirm(self, cr, uid, ids, context=None):
assert len(ids) == 1, 'This option should only be used for a single id at a time.'
wf_service = netsvc.LocalService('workflow')
wf_service.trg_validate(uid, 'sale.order', ids[0], 'order_confirm', cr)
# redisplay the record as a sales order
view_ref = self.pool.get('ir.model.data').get_object_reference(cr, uid, 'sale', 'view_order_form')
view_id = view_ref and view_ref[1] or False,
return {
'type': 'ir.actions.act_window',
'name': _('Sales Order'),
'res_model': 'sale.order',
'res_id': ids[0],
'view_type': 'form',
'view_mode': 'form',
'view_id': view_id,
'target': 'current',
'nodestroy': True,
}
sale_order_confirm()
我的观看记录
<record id="view_cancel_order" model="ir.ui.view">
<field name="name">Cancel Repair</field>
<field name="model">sale.order.confirm</field>
<field name="arch" type="xml">
<form string="Confirm Sale Order" version="7.0">
<group>
<label string="This Sale Order will be confirmed with service Product. Agree?"/>
</group>
<footer>
<button name="action_confirm" string="Yes" type="object" class="oe_highlight"/>
or
<button string="Cancel" class="oe_link" special="cancel" />
</footer>
</form>
</field>
</record>
我已经稍微改变了sale_order.py中的action_button_confirm功能
def action_button_confirm(self, cr, uid, ids, context=None):
assert len(ids) == 1, 'This option should only be used for a single id at a time.'
is_optional_item_exists = False # here i can check for wt ever condition and this variable will have the resul
so_obj = self.browse(cr, uid, ids, context)
if so_obj:
for line in so_obj[0].order_line:
print line.name
if line.is_optional_item:
is_optional_item_exists = True
if(is_optional_item_exists):
return {
'name': 'Order Confirmation',
'view_type': 'form',
'view_mode': 'form',
'res_model': 'sale.order.confirm',
'type': 'ir.actions.act_window',
'nodestroy': True,
'target': 'new',
}
else:
wf_service = netsvc.LocalService('workflow')
wf_service.trg_validate(uid, 'sale.order', ids[0], 'order_confirm', cr)
# redisplay the record as a sales order
view_ref = self.pool.get('ir.model.data').get_object_reference(cr, uid, 'sale', 'view_order_form')
view_id = view_ref and view_ref[1] or False,
return {
'type': 'ir.actions.act_window',
'name': _('Sales Order'),
'res_model': 'sale.order',
'res_id': ids[0],
'view_type': 'form',
'view_mode': 'form',
'view_id': view_id,
'target': 'current',
'nodestroy': True,
}
谢谢大家和干杯!!
答案 1 :(得分:2)
如果您希望能够自定义AFAIK,则需要使用向导。
扩展表单并将按钮名称更改为确定是否需要显示向导的方法(返回包含窗口操作的字典),或者直接调用现有的action_button_confirm方法。然后,如果用户单击“确定”,向导可以调用操作按钮确认。
这肯定是可以做到的,但有点像是警告大多数用户无论如何都会忽略。