【发布时间】:2019-08-20 21:32:38
【问题描述】:
使用 Odoo 11 我想更改 Kitchen Order 收据上的字体大小
<t t-foreach="changes.new" t-as="change">
<div size="double-height" t-if="!change.order">
<line line-ratio='0.6'>
<left><t t-esc="change.name_wrapped[0]" /></left>
<right><t t-esc="change.qty" /> <t t-esc="change.unit" /></right>
</line>
<t t-call="NameWrapped"/>
我想让名字的字体更大
我试过了
<t t-foreach="changes.new" t-as="change">
<div size="double-height" t-if="!change.order">
<line line-ratio='0.6'>
<left><t t-esc="change.name_wrapped[0]" /></left>
<right><t t-esc="change.qty" /> <t t-esc="change.unit" /></right>
</line>
<t t-call="NameWrapped" size='double-height'/>
【问题讨论】:
标签: xml odoo odoo-10 odoo-11 odoo-view