yamori

有給休暇計算を主目的とした簡易勤怠管理システム

  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. 6
  7. 7
  8. 8
  9. 9
  10. 10
  11. 11
  12. 12
  13. 13
  14. 14
  15. 15
  16. 16
  17. 17
  18. 18
  19. 19
  20. 20
  21. 21
  22. 22
  23. 23
  24. 24
  25. 25
  26. 26
  27. 27
  28. 28
  29. 29
  30. 30
  31. 31
  32. 32
  33. 33
  34. 34
  35. 35
  36. 36
  37. 37
  38. 38
  39. 39
  40. 40
  41. 41
  42. 42
  43. 43
  44. 44
  45. 45
  46. 46
  47. 47
  48. 48
  49. 49
  50. 50
  51. 51
  52. 52
<!--
SPDX-License-Identifier: AGPL-3.0-only
Copyright 2025 Shota FUJI

This program is free software: you can redistribute it and/or modify it under the terms
of the GNU Affero General Public License as published by the Free Software Foundation,
either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE.  See the GNU Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License along
with this program.  If not, see <http://www.gnu.org/licenses/>.
-->

労働者の出勤や欠勤といった "勤怠区分" を日付・労働者ごとに記録したデータです。

=== "行方式"

    行方式ではひとつの行に 1 労働者の 1 日分の勤怠区分を記録します。

    !!! example "例"

        | 社員 ID | 日付       | 勤怠区分     |
        | ------- | ---------- | ------------ |
        | A01     | 2025-07-01 | 出勤         |
        | A01     | 2025-07-02 | 出勤         |
        | A01     | 2025-07-03 | 欠勤         |
        | A01     | 2025-07-04 | 年次有給休暇 |
        | B01     | 2025-07-01 | 公休         |
        | B01     | 2025-07-02 | 公           |
        | B01     | 2025-07-03 | 出           |
        | B01     | 2025-07-04 | 有休         |
        | ...     | ...        | ...          |

=== "行列方式 (シフト表方式)"

    <!-- TODO: もっとうまい言い回しに変える -->

    行列方式では `行 = 労働者` `列 = 日付` として組み合わせで記録します。

    !!! example "例"

        | 社員 ID | 2025-07-01 | 2025-07-02 | 2025-07-03 | 2025-07-04   | ... |
        | ------- | ---------- | ---------- | ---------- | ------------ | --- |
        | A01     | 出勤       | 出勤       | 欠勤       | 年次有給休暇 | ... |
        | B01     | 公休       | 公         | 出         | 有休         | ... |

!!! info "未記載事項"

    各列や行、ヘッダや書式について