如何在 qweb 报告上增加公司徽标图像大小
How to increase company logo image size on qweb report
我不知道如何在 qweb 报告上增加公司徽标。
这是报告。
如何在图片左上角增加公司标志?
Odoo 将调用网络 external_layout_standard when the document template is not set in the company (where the header is defined) and the size of the image is limited in height using the max-height 属性。
尝试使用样式属性增加 img
标签上定义的 max-height
。
示例:
<template id="external_layout_custom_img_style" inherit_id="web.external_layout_standard">
<xpath expr="//div[hasclass('col-3')]/img" position="attributes">
<attribute name="style">max-height: 64px;</attribute>
</xpath>
</template>
我不知道如何在 qweb 报告上增加公司徽标。
这是报告。
如何在图片左上角增加公司标志?
Odoo 将调用网络 external_layout_standard when the document template is not set in the company (where the header is defined) and the size of the image is limited in height using the max-height 属性。
尝试使用样式属性增加 img
标签上定义的 max-height
。
示例:
<template id="external_layout_custom_img_style" inherit_id="web.external_layout_standard">
<xpath expr="//div[hasclass('col-3')]/img" position="attributes">
<attribute name="style">max-height: 64px;</attribute>
</xpath>
</template>