2017-03-15 14 views
0

qwebを継承してカスタムテキストを追加するにはどうすればよいですか?qwebレポートodoo9でカスタムテキストを追加

販売/ビュー/ report_saleorder.xmlで例えば

下のクラス=「oe_structure」私は1つのテーブルを必要とする

<p t-field="doc.note" /> 
      <p t-if="doc.payment_term_id.note"> 
       <span t-field="doc.payment_term_id.note"/> 
      </p> 
      <p t-if="not doc.payment_term_id and doc.partner_id.property_payment_term_id"> 
       <span t-field="doc.partner_id.property_payment_term_id.note"/> 
      </p> 
      <p id="fiscal_position_remark" t-if="doc.fiscal_position_id and doc.fiscal_position_id.note"> 
       <strong>Fiscal Position Remark:</strong> 
       <span t-field="doc.fiscal_position_id.note"/> 
      </p> 
      <div class="oe_structure"/> 


    <xpath expr="???" position="???"> 
      <table><tr><td>CUSTOM TEXT</td></tr></table> 
    </xpath> 

答えて

2

上記のXMLは、レポート全体がしかしある場合、私はわかりませんこのようなものを使うことができます。

<xpath expr="//div[@class='oe_structure'][last()]" position="after"> 
    <!-- YOUR TABLE HERE --> 
</xpath> 

これは、これはあなたが継承されているXMLでoe_structureの最後のインスタンスである前提としています。

+0

助けてくれてありがとう、私はクラスを追加する前に@ - > @class – Pointer

+0

ああ、はい。私はこれを訂正します。私はまだ起きているだけです。まだコーヒーを飲んでいない。 –

関連する問題