如何在Odoo widget = url中定义不同的链接文本

时间:2016-02-10 09:57:16

标签: openerp

我根据发票号码制作了只读计算的URL字段。它工作得很好,但我想生成文本部分本身就像400:

<a href="https://external_site_invoice?num=400">400</a>

现在它生成整个链接作为非常难看的文本

<a href="https://external_site_invoice?num=400">https://external_site_invoice?num=400</a>

我的Odoo字段是这样定义的......

ext_invoice_number= fields.Integer(string="Ext number")

def _showlink(self):
    for rec in self:
        if rec.ext_invoice_number:
            if  rec.ext_invoice_number>0:
                rec.ext_link="https://external site/invoice?num=%d" % (rec.ext_invoice_number,)


ext_link = fields.Char(string="Link",compute=_showlink,)

如何在Odoo中定义URL的文本部分与链接不同?这个记录很少或者不可能?

1 个答案:

答案 0 :(得分:2)

您可以在窗口小部件定义中定义 text 属性,如:

<field name="field_with_url" widget="url" readonly="1" text="My own text"/>

此致