
org.openurp.edu.extern.config.CertSignupScope.scala Maven / Gradle / Ivy
/*
* Copyright (C) 2014, The OpenURP Software.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see .
*/
package org.openurp.edu.extern.config
import org.beangle.commons.lang.Strings
import org.beangle.data.model.LongId
import org.beangle.data.model.annotation.config
import org.openurp.base.std.model.Student
import org.openurp.code.edu.model.EducationLevel
import scala.collection.mutable
/** 校外考试报名学生范围
*
*/
@config
class CertSignupScope extends LongId {
var setting: CertSignupSetting = _
var grades: Option[String] = None
var level: EducationLevel = _
var included: Boolean = _
var codes: Option[String] = None
def matchStd(std: Student): Boolean = {
if (codes.nonEmpty && Strings.isNotBlank(codes.get)) {
Strings.split(codes.get).toSet.contains(std.code)
} else {
if (std.level == this.level) {
grades match {
case None => true
case Some(g) => Strings.split(g).toSet.contains(std.state.get.grade.code)
}
} else {
false
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy