領収証発行サービス
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.

56 lines
1.5KB

  1. <!DOCTYPE html>
  2. <html lang="ja">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>領収証</title>
  6. <style>
  7. </style>
  8. <link rel="stylesheet" href="{{ resource_path('css/receipt_common.css') }}">
  9. <link rel="stylesheet" href="{{ resource_path('css/receipt_a4.css') }}">
  10. </head>
  11. <body>
  12. <div class="main">
  13. <section class="header">
  14. <p>発行日 {{ $status_receipt_confirm_datetime }}</p>
  15. <p>領収証番号 {{ $receipt_no }}</p>
  16. </section>
  17. <section class="title b">
  18. <P>領収証</P>
  19. </section>
  20. <section class="name">
  21. {{ $receipt_name }} 様
  22. </section>
  23. <section class="amount">
  24. <div class="container">
  25. <div class="item">
  26. ¥{{ $receipt_amount }} -
  27. </div>
  28. <div class="item tax">
  29. (内税 10%対象)
  30. </div>
  31. </div>
  32. </section>
  33. <section class="amount_sub">
  34. 内消費税 ¥160-
  35. </section>
  36. <section class="description">
  37. <P>但し {{ $receipt_purpose }}として</P>
  38. <P>上記正に領収いたしました。</P>
  39. <P>利用日 : {{ $receipt_use_date }}</P>
  40. <P>駐車場名 : {{ $parking_name }}</P>
  41. </section>
  42. <section class="issuer">
  43. <P>発行者 {{ $customer_name }}</P>
  44. <P>インボイス登録番号 {{ $receipt_invoice_no }}</P>
  45. </section>
  46. </div>
  47. </body>
  48. </html>