【问题标题】:How to change font size in an order receipt in Odoo POS?如何在 Odoo POS 中更改订单收据中的字体大小?
【发布时间】: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


    【解决方案1】:

    完整的模板如下所示

    <t t-name="NameWrapped">
        <t t-foreach="change.name_wrapped.slice(1)" t-as="wrapped_line">
            <line>
                <left></left>
                <right><t t-esc="wrapped_line"/></right>
            </line>
        </t>
    </t>
    

    继承并更新这个模板,结果应该是:

    <t t-name="NameWrapped">
        <t t-foreach="change.name_wrapped.slice(1)" t-as="wrapped_line">
            <line size='double-height'>
                <left></left>
                <right><t t-esc="wrapped_line"/></right>
            </line>
        </t>
    </t>
    

    所以,你可以做类似的事情

    <t t-extend="NameWrapped">
        <t t-jquery="line" t-operation="replace">
            <line size="double-height">
                <left></left>
                <right><t t-esc="wrapped_line"/></right>
            </line>
        </t>
    </t>
    

    【讨论】:

      猜你喜欢
      • 2018-09-30
      • 2021-01-04
      • 2018-09-20
      • 2015-06-28
      • 1970-01-01
      • 1970-01-01
      • 2018-08-20
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多