Sha256: 5547ae2e27568f9ea782e7d82b5e68689fbfd7c0d955cdede9522e82262087a4
Contents?: true
Size: 1.08 KB
Versions: 5
Compression:
Stored size: 1.08 KB
Contents
# frozen_string_literal: true module Meibo class JapanProfile < ::Meibo::Profile class AcademicSession < ::Meibo::AcademicSession TYPES = { school_year: "schoolYear" }.freeze DataModel.define( self, attribute_name_to_header_field_map: superclass.attribute_name_to_header_field_map, converters: superclass.converters.merge( enum: { type: TYPES.values.freeze }.freeze ) ) # NOTE: 以下固定 # - titleは連携処理実行時の対象年度西暦 + 「年度」を設定 # - typeはschoolYear固定 # - start_dateは対象年度の開始日固定 # - end_dateは対象年度の終了日固定 def initialize(school_year:, title: "#{school_year}年度", type: TYPES[:school_year], start_date: Date.new(school_year, 4, 1), end_date: Date.new(school_year + 1, 3, 31), **other_fields) super(school_year: school_year, title: title, type: type, start_date: start_date, end_date: end_date, **other_fields) end end end end
Version data entries
5 entries across 5 versions & 1 rubygems