[Odoo] [Qweb]字典foreach,print key和value

时间:2015-12-06 20:39:17

标签: python openerp qweb

有没有办法在循环 Qweb 中打印python字典中的键和值? 例如,如果我有一个返回字典的函数:

def get_informations(self):
    mydico={'myfirstkey':1,'mysecondkey':2}
    return mydico

然后,在Qweb报告中:

<t t-foreach="doc.get_informations()" t-as="l">
    <tr>
       <td class="text-right">
         <t t-esc="l"/>
       </td>
       <td class="text-right">
         <span t-esc="l_value"/>
       </td>
    </tr>
</t>

如何打印

由于

2015年7月12日更新:

感谢您的回归。 确实,当我把

 <t t-foreach="{'my': 'first', 'my2': 'second' }" t-as="v">

它有效,我有类似的东西:

my    first
my2   second

但是当我在 foreach 中使用一个函数时,输出完全相同,qweb无法将它分开,我有:

{'my': 'first', 'my2': 'second' }
{'my': 'first', 'my2': 'second' }

所以我决定采取另一种方式:

在我的继承报告

<t t-foreach="doc.tabTaxes" t-as="v">
    <tr>
        <td>
            <span t-esc="v.name"/>
        </td>
        <td>
            <span t-esc="doc.get_amount(v.name)[0]"/>
        </td>
    </tr>
</t>

sale.order 模型中继承:

@api.one
def get_amount(self, taxeNom):
    total=0
    for ligne in self.order_line:
        for taxe in ligne.tax_id:
            if (taxeNom == taxe.name):
                try: total += ligne.price_reduce * (taxe.amount/100.)
                except: total +=0
    return "{0:.2f}".format(total)

4 个答案:

答案 0 :(得分:8)

@FTK,

鉴于您的函数正在将有效字典返回到qWeb模板,下面的代码应该完成这项工作:

    <div id="wrap" class="oe_structure">
        <t t-foreach="{'my': 'first', 'my2': 'second' }" t-as="v">
         *<t t-esc="v"/> : <t t-esc="v_value"/></t>
    </div> 

你可以把tr放在循环中,这样它会像你期望的那样创建表格行,下面的代码会这样做:

    <div id="wrap" class="oe_structure">
        <table class="table table-bordered table-condensed">
            <t t-foreach="doc.get_informations()" t-as="item">
                <tr>
                    <td class="text-right">
                        <t t-esc="item"/>
                    </td>
                    <td class="text-right">
                        <t t-esc="item_value"/>
                    </td>
                </tr>
            </t>
        </table>
    </div>

你当然不需要他们的div。 希望这会对你有所帮助,

贝斯茨,

答案 1 :(得分:4)

最后,我了解了如何使用V9:

<tr t-foreach="o.get_list_taxe(o.id)[0]" t-as="taxe">
  <t t-set="name" t-value="taxe['name']"/>
  <t t-set="total" t-value="taxe['total']"/>
  <td>
    <strong>
      <p>
        <t t-esc="name"/>
      </p>
    </strong>
  </td>
  <td class="text-right">
    <t t-esc="total" t-esc-options='{"widget": "monetary", "display_currency": "res_company.currency_id"}'/>
  </td>
</tr>

答案 2 :(得分:3)

  • $ as_all

正在迭代的对象

  • $ AS_VALUE

当前迭代值,与$和列表和整数相同,但对于映射,它提供值(其中$ as提供键)

  
      
  • 警告
  •   
     

$ as将替换为传递给t-as

的名称

此链接的参考:https://www.odoo.com/documentation/8.0/reference/qweb.html

答案 3 :(得分:2)

这对我有用,因为我发现当你遍历字典时它会返回一个包含两个项目的元组(key, value)

<h4>Houses sold by type</h4>
  <t t-foreach="house_count" t-as="houses">
    <t t-set="house" t-value="houses[0]"/>
    <t t-set="count" t-value="houses[1]"/>
      <p><span t-esc="house" />: <span t-esc="count" /> houses sold</p>
  </t>

仅以房屋为例