Advertisement
rht_odoo

Mode de paiement pour la sélection du type de facture

Dec 12th, 2024
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.83 KB | None | 0 0
  1. <data>
  2. <xpath position="after" expr="/t[@t-name='account.report_invoice_document']//t[@t-call='web.external_layout']/div[2]/div/div[4]/div[@id='right-elements']" meta-id="right-elements" meta-t-attf-class="#{'col-5' if report_type != 'html' else 'col-12 col-md-5'} ms-5 d-inline-block float-end">
  3. <p t-if="o.move_type == 'out_invoice' and o.currency_id.name == 'EUR' and o.preferred_payment_method_line_id.name =='Virement'">
  4. Pour votre paiement, merci d’utiliser les informations bancaires suivantes :
  5. <br/>
  6. IBAN : FR76 1870 7000 8009 6211 3788 593
  7. <br/>
  8. BIC : CCBPFRPPVER
  9. <br/>
  10. Domiciliation : BPVF ST QUENTIN ENTREPRISE
  11. </p>
  12. <p t-if="o.move_type == 'out_invoice' and o.currency_id.name == 'USD' and o.preferred_payment_method_line_id.name =='Virement'">
  13. For your payment, please use the following bank account details : 
  14. </p>
  15. <table class="table o_table table-borderless" t-if="o.move_type == 'out_invoice' and o.currency_id.name == 'USD' and o.preferred_payment_method_line_id.name =='Virement'">
  16. <tbody>
  17. <tr>
  18. <td>
  19. <p>
  20. <span class="h6-fs">RIB</span>
  21. </p>
  22. </td>
  23. <td>
  24. <p>
  25. <span class="h6-fs">
  26. Banque</span>
  27. </p>
  28. </td>
  29. <td>
  30. <p>
  31. <span class="h6-fs">Guichet
  32. <br/>
  33. </span>
  34. </p>
  35. </td>
  36. <td>
  37. <p>
  38. <span class="h6-fs">
  39. Num. compte<br/>
  40. </span>
  41. </p>
  42. </td>
  43. <td>
  44. <p>
  45. <span class="h6-fs"> Cle<br/>
  46. </span>
  47. </p>
  48. </td>
  49. </tr>
  50. <tr>
  51. <td>
  52. <p>
  53. <span class="h6-fs">
  54. DOLLAR<br/>
  55. </span>
  56. </p>
  57. </td>
  58. <td>
  59. <p>
  60. <span class="h6-fs">
  61. 18707<br/>
  62. </span>
  63. </p>
  64. </td>
  65. <td>
  66. <p>
  67. <span class="h6-fs">
  68. 00080<br/>
  69. </span>
  70. </p>
  71. </td>
  72. <td>
  73. <p>
  74. <span class="h6-fs">
  75. 02128016124<br/>
  76. </span>
  77. </p>
  78. </td>
  79. <td>
  80. <p>
  81. <span class="h6-fs">
  82. 78</span>
  83. </p>
  84. </td>
  85. </tr>
  86. <tr>
  87. <td>
  88. <span class="o_small-fs">IBAN                     FR76 1870 7000 8002 1280 1612 478
  89. </span>
  90. </td>
  91. </tr>
  92. </tbody>
  93. </table>
  94. <br/>
  95. <br/>
  96. <p t-if="o.move_type == 'out_invoice' and o.preferred_payment_method_line_id.name =='Prélèvement SEPA'">
  97. Règlement par prélèvement automatique à date d’échéance
  98. </p>
  99. <p t-if="o.move_type == 'out_invoice' and o.preferred_payment_method_line_id.name =='Factoring'">
  100. The amount of this invoice has been assigned to La Banque Postale by means of
  101. subrogation under terms of a factoring contract. In order to be fully discharged of this debt,
  102. please make payment as follows :<br/>
  103. La Banque Postale Leasing &amp; Factoring<br/>
  104. Traitement des encaissements – TSA30236 – 93736 Bobigny Cedex 9 <br/>
  105. IBAN : FR76 1647 8000 0102 1861 1812 023 – BIC : CRNPFRP1XXX<br/>
  106. However, in order to maintain our relationship, we will follow up this bill until its payments to
  107. La Banque Postale.</p>
  108. <br/>
  109.  
  110. </xpath>
  111. </data>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement