Openerp 中打开 URL 的三种 方法
-
最近总结了,Openerp 中打开 URL 的三种 方法:
一、在form view 添加 <a>标签
二、使用url widget, <field name="field_name" widget="url"/>
三、使用按钮,return { 'type': 'ir.actions.act_url', 'http://www.openerp.com': drawing_url, 'nodestroy': True, 'target': 'new' }
谢谢mrshelly等人的帮助!!!! -
第三种方法似应为
return { 'type': 'ir.actions.act_url', 'url':'http://www.openerp.com', 'nodestroy': True, 'target': 'new' }
或 使用变量drawing_ur
return { 'type': 'ir.actions.act_url', 'url':drawing_url, 'nodestroy': True, 'target': 'new' }