如何避免Odoo 9中的方形公司徽标?

时间:2016-06-20 17:20:25

标签: openerp odoo-9

当我在Odoo 9中上传新的公司徽标时,它总是生成一个正方形的新图像 - 对我的报告有用。如何强制它不生成新的方形版本?

2 个答案:

答案 0 :(得分:2)

您可以使用宽度低于1024像素

的徽标来避免使用方形徽标

答案 1 :(得分:-1)

您可以在报告中写下您想要的高度,如下所示:

<template id="custom_external_layout_header" inherit_id="report.external_layout_header">
    <xpath expr="//img[@t-if='company.logo']" position="attributes">
        <attribute name="style">height: 50px; padding-bottom: 7px;</attribute>
    </xpath>
</template>

如果您愿意,也可以更改paperformat标题大小。