Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
1 ตอบกลับ
1888 มุมมอง

I want to show the number of the document in a link, like this:


related_invoice_url = self.env['ir.config_parameter'].get_param('web.base.url')

related_invoice_url += '/web#id=%d&view_type=form&model=%s' % (invoice_id.id, 'account.move')


< field widget="url" text="????" name="related_invoice" >< /field>


How can I show the invoice number as text in the link?


Thank you

อวตาร
ละทิ้ง
คำตอบที่ดีที่สุด

Hi,

Try with a html field and pass the required parameters in it for link creation
just like :

related_invoice_html_field = """
(div)
    (a href='""" + related_invoice_url + """')
        (font style="font-size: 14px;")""" + "(u)" + invoice number + "(/u)" + """(/font)
    (/a)
(/div)
"""

User readonly attribute in xml file if it is useful. 

อวตาร
ละทิ้ง
ผู้เขียน

thank you

Related Posts ตอบกลับ มุมมอง กิจกรรม
0
ส.ค. 25
164
1
ส.ค. 25
2118
1
ก.ค. 25
2591
2
ก.ค. 25
8030
2
ก.ค. 25
4485