You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

139 line
7.5 KiB

  1. <div class="row">
  2. <div class="col-sm-12">
  3. <div class="ibox float-e-margins">
  4. <div class="ibox-title">
  5. <h5>Invoice Detail</h5>
  6. </div>
  7. <div class="ibox-content">
  8. <div class="table-responsive">
  9. <table class="table">
  10. <tr>
  11. <td colspan="2"
  12. class="invoice-smaller-text">
  13. TBuddy UG (haftungsbeschränkt) - Freschenhausener Weg 3 - 21220 Seevetal
  14. </td>
  15. </tr>
  16. <tr>
  17. <td style="width: 66%">
  18. <h6>RECHNUNGSEMPFÄNGER</h6>
  19. <% if ( data.invoice.billing_company_name && data.invoice.billing_company_name.length ) { %>
  20. <strong><%= data.invoice.billing_company_name %></strong><br />
  21. <% } %>
  22. <% if ( data.invoice.billing_company_tax_id && data.invoice.billing_company_tax_id.length ) { %>
  23. <%= data.invoice.billing_company_tax_id %><br />
  24. <br />
  25. <% } %>
  26. <%= data.invoice.billing_first_name %> <%= data.invoice.billing_last_name %><br />
  27. <%= data.invoice.billing_street %><br />
  28. <%= data.invoice.billing_zip %> <%= data.invoice.billing_city %>
  29. </td>
  30. <td>
  31. <table class="table table-invoice-data">
  32. <tr>
  33. <td>Rechnungsdatum</td>
  34. <td><%= moment( data.invoice.billing_date_dt.date ).format( 'd.M.YYYY' ) %></td>
  35. </tr>
  36. <tr>
  37. <td>Kundennummer</td>
  38. <td><%= data.invoice.account_id %></td>
  39. </tr>
  40. <tr>
  41. <td>Rechnungsnummer</td>
  42. <td><%= data.invoice.billing_id %></td>
  43. </tr>
  44. <% if ( data.invoice.billing_period_start_dt && data.invoice.billing_period_end_dt ) { %>
  45. <tr>
  46. <td class="text-right">Abrechnungszeitraum</td>
  47. <td><%= moment( data.invoice.billing_period_start_dt.date ).format( 'MMMM YYYY' ) %> - <%= moment( data.invoice.billing_period_end_dt.date ).format( 'MMMM YYYY' ) %></td>
  48. </tr>
  49. <% } %>
  50. <tr>
  51. <td>Vorauszahlung</td>
  52. <td>1 Monat</td>
  53. </tr>
  54. </table>
  55. </td>
  56. </tr>
  57. <tr>
  58. <td colspan="2">
  59. <h4>RECHNUNG</h4>
  60. </td>
  61. </tr>
  62. <tr>
  63. <td colspan="2">
  64. <table class="table table-bordered table-hover table-invoice">
  65. <thead>
  66. <tr>
  67. <th>Beschreibung</th>
  68. <th>Betrag</th>
  69. </tr>
  70. </thead>
  71. <tbody>
  72. <tr>
  73. <td>
  74. <strong><%= data.invoice.package_name %></strong> Paket
  75. <br /><small>für das Team <strong><%= data.invoice.team_name %></strong>.</small>
  76. </td>
  77. <td>
  78. <%= ( data.invoice.package_price - data.invoice.package_tax ) %> EUR
  79. </td>
  80. </tr>
  81. <tr>
  82. <td class="invoice-smaller-text">
  83. Summe netto
  84. </td>
  85. <td class="invoice-smaller-text"><%= ( data.invoice.package_price - data.invoice.package_tax ) %> EUR</td>
  86. </tr>
  87. <tr>
  88. <td class="invoice-smaller-text">
  89. zzgl. 19% MwSt.
  90. </td>
  91. <td class="invoice-smaller-text"><%= data.invoice.package_tax %> EUR</td>
  92. </tr>
  93. <tr>
  94. <td><strong>Summe brutto</strong></td>
  95. <td><strong><%= data.invoice.package_price %> EUR</strong></td>
  96. </tr>
  97. </tbody>
  98. </table>
  99. </td>
  100. </tr>
  101. <tr>
  102. <td colspan="2">
  103. <table class="table invoice invoice-footer">
  104. <tr>
  105. <td>
  106. TBuddy UG (haftungsbeschränkt)<br />
  107. Freschenhausener Weg 3<br />
  108. 21220 Seevetal
  109. </td>
  110. <td>
  111. Fidor Bank AG<br />
  112. IBAN: DE18700222000020094633<br />
  113. BIC: FDDODEMMXXX
  114. </td>
  115. <td>
  116. Eintragung im Handelsregister<br />
  117. Registergericht: Lüneburg<br />
  118. Registernummer: 205951
  119. </td>
  120. </tr>
  121. </table>
  122. </td>
  123. </tr>
  124. </table>
  125. </div>
  126. <div class="row">
  127. <div class="col-xs-12">
  128. <button data-id="btn-print-invoice"
  129. class="btn btn-primary hide-during-print">
  130. Print
  131. </button>
  132. </div>
  133. </div>
  134. </div>
  135. </div>
  136. </div>
  137. </div>