我有一个openerp表,我想打印所有产品及其相关仓库
我做了一个循环并在该循环中打印以下
<td width="100" align="center"> ${product.name} </td>
<td width="200" align="center"> ${product.lst_price} </td>
<td width="100" align="center"> ${product.qty_available} </td>
<td width="100" align="center"> ${product.warehouse_id.name} </td>
打印名称,价格和数量有效,但当我尝试打印仓库名称时,我什么都没得到。
为什么不打印仓库名称?