Odooシステムでは、製品テンプレートにproduct_code(interal reference)を設定すると、その注釈もqwebレポートに表示されます。私は販売注文qwebレポートの製品名のみを取得したいと思いますが、product_codeフィールドレポートを削除(または非表示)することはできますか?そうであれば、それを解決するための具体的な手順を教えてください。ありがとう 私QWEBコード:Odoo-9の販売注文レポートqwebの 'product_code'フィールドを削除するには?
</tr>
<t t-set="index" t-value="0"/>
<t t-set="product" t-value="0"/>
<t t-foreach="doc.handle_orderline(doc.order_line)" t-as="product_line">
<t t-set="product_num" t-value="0"/>
<t t-set="index" t-value="index + 1"/>
<t t-foreach="product_line" t-as="l">
<t t-set="product_num" t-value="product_num+1"/>
<t t-if="not l.product_uom_qty">
<t t-set="index" t-value="index - 1"/>
</t>
<tr t-if="l.product_uom_qty">
<t t-if="product_num == 1">
<td class="text-center" t-att-rowspan="len(product_line)">
<span t-esc="index"/>
</td>
<td class="text-center" t-att-rowspan="len(product_line)">
<strong><span t-field="l.name"/></strong>
<br/>
<t t-if="l.width_id">(<span style="font-style:italic" t-field="l.width_id.name"/>)</t>
</td>
</t>
で
:
は、次のコードを置き換えますか?あなたの試行コードで質問を更新できますか? –
私に返信してくれてありがとう、流行しているコードは私のsale_order_report_documentsに製品名を表示しています: –