summaryrefslogtreecommitdiff
path: root/templates/Traditional_Chinese_UTF8-income_statement.html
blob: 9e367c6229872f740288de35d93c351947e697d3 (plain)
  1. <body>
  2. <h2 align=center>
  3. <%company%>
  4. <br><%address%>
  5. <p>損益表
  6. <br><%period%>
  7. </h2>
  8. <%if department%>
  9. <h4>部門: <%department%></h4>
  10. <%end department%>
  11. <%if projectnumber%>
  12. <h4>方案編號: <%projectnumber%></h4>
  13. <%end projectnumber%>
  14. <table width=100% border=0>
  15. <tr>
  16. <th width=400 align=left colspan=2>收入<br><hr width=300 size=5 align=left noshade></th>
  17. <th><%this_period%></th>
  18. <th><%last_period%></th>
  19. </tr>
  20. <%foreach income_account%>
  21. <tr>
  22. <td width=4> </td>
  23. <td><%income_account%></td>
  24. <td align=right><%income_this_period%></td>
  25. <td align=right><%income_last_period%></td>
  26. </tr>
  27. <%end income_account%>
  28. <tr>
  29. <td colspan=2> </td>
  30. <td><hr noshade size=1></td>
  31. <td><hr noshade size=1></td>
  32. </tr>
  33. <tr valign=top>
  34. <td> </td>
  35. <th align=left>收入合計</th>
  36. <td align=right><%total_income_this_period%><hr noshade size=2></td>
  37. <td align=right><%total_income_last_period%><hr noshade size=2></td>
  38. </tr>
  39. <tr>
  40. <th align=left colspan=2>費用<br><hr width=300 size=5 align=left noshade></th>
  41. </tr>
  42. <%foreach expense_account%>
  43. <tr>
  44. <td> </td>
  45. <td><%expense_account%></td>
  46. <td align=right><%expenses_this_period%></td>
  47. <td align=right><%expenses_last_period%></td>
  48. </tr>
  49. <%end expense_account%>
  50. <tr>
  51. <td colspan=2> </td>
  52. <td><hr noshade size=1></td>
  53. <td><hr noshade size=1></td>
  54. </tr>
  55. <tr valign=top>
  56. <td> </td>
  57. <th align=left>費用合計</th>
  58. <td align=right><%total_expenses_this_period%><br><hr noshade size=2</td>
  59. <td align=right><%total_expenses_last_period%><br><hr noshade size=2</td>
  60. </tr>
  61. <tr valign=top>
  62. <th align=left colspan=2>收入 / (虧損)</th>
  63. <td align=right><%total_this_period%><br><hr noshade size=2></td>
  64. <td align=right><%total_last_period%><br><hr noshade size=2></td>
  65. </tr>
  66. </table>