GoodERP
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

82 lignes
4.1KB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <data>
  4. <template id="report_other_money_order">
  5. <t t-call="report.external_layout">
  6. <div class="page">
  7. <div class="oe_structure"/>
  8. <div class="row">
  9. <div>
  10. <h1>其他收入单</h1>
  11. <span>客户名称:</span><span t-field="o.partner_id"/><br/>
  12. <span>单据日期:</span><span t-field="o.date"/><br/>
  13. <span>单据编号:</span><span t-field="o.name"/><br/>
  14. </div>
  15. <table class="table table-condensed" style="border-bottom: 2px solid black;">
  16. <thread>
  17. <tr style="vertical-align: bottom;border-bottom: 2px solid black;border-top: 2px solid black">
  18. <th class="text-right">收入类别</th>
  19. <th class="text-right">金额</th>
  20. <th class="text-right">备注</th>
  21. </tr>
  22. </thread>
  23. <tbody class="invoice_tbody">
  24. <tr t-foreach="o.line_ids" t-as="l">
  25. <td><span t-field="l.other_money_type"/></td>
  26. <td>
  27. <span t-field="l.amount"/>
  28. </td>
  29. <td>
  30. <span t-field="l.note"/>
  31. </td>
  32. </tr>
  33. </tbody>
  34. </table>
  35. <br/>
  36. <div class="row">
  37. <div class="col-xs-4 pull-right">
  38. <table class="table table-condensed">
  39. <tr class="border-black">
  40. <td><strong>税前小计</strong></td>
  41. <td class="text-right">
  42. <span t-field="o.amount_untaxed" t-field-options='{"widget": "monetary", "display_currency": "o.currency_id"}'/>
  43. </td>
  44. </tr>
  45. <tr>
  46. <td>税</td>
  47. <td class="text-right">
  48. <span t-field="o.amount_tax" t-field-options='{"widget": "monetary", "display_currency": "o.currency_id"}'/>
  49. </td>
  50. </tr>
  51. <tr class="border-black">
  52. <td><strong>合计</strong></td>
  53. <td class="text-right">
  54. <span t-field="o.amount_total" t-field-options='{"widget": "monetary", "display_currency": "o.currency_id"}'/>
  55. </td>
  56. </tr>
  57. </table>
  58. </div>
  59. </div>
  60. <strong class="text-left">支付条款:</strong><span t-field="o.payment_term"/><br/>
  61. <strong class="text-left">开票说明:</strong><span t-field="o.invoice_note"/><br/><br/>
  62. <div style="float:right ;">
  63. <font style="line-height:200%;">
  64. <strong>纸质发票号:__________________________</strong><br/>
  65. <strong>销售员:<span t-field='o.user_id'/></strong>
  66. </font>
  67. </div>
  68. </div>
  69. </div>
  70. </t>
  71. </template>
  72. <template id="report_invoice_draft">
  73. <t t-call="report.html_container">
  74. <t t-foreach="doc_ids" t-as="doc_id">
  75. <t t-raw="translate_doc(doc_id, doc_model, 'partner_id.lang', 'osbzr_max.report_invoice_draft_document')"/>
  76. </t>
  77. </t>
  78. </template>
  79. </data>
  80. </odoo>
上海开阖软件有限公司 沪ICP备12045867号-1