forked from ScoDoc/ScoDoc
initialisation poids formulaire prenant en compte les coefs module
This commit is contained in:
parent
857c3007a5
commit
ab1898b185
@ -40,6 +40,7 @@ from app import db
|
|||||||
from app import log
|
from app import log
|
||||||
from app import models
|
from app import models
|
||||||
from app.models.formsemestre import FormSemestre
|
from app.models.formsemestre import FormSemestre
|
||||||
|
from app.models.moduleimpls import ModuleImpl
|
||||||
import app.scodoc.sco_utils as scu
|
import app.scodoc.sco_utils as scu
|
||||||
from app.scodoc.sco_utils import ModuleType
|
from app.scodoc.sco_utils import ModuleType
|
||||||
from app.scodoc.sco_exceptions import AccessDenied, ScoValueError
|
from app.scodoc.sco_exceptions import AccessDenied, ScoValueError
|
||||||
@ -62,9 +63,11 @@ def evaluation_create_form(
|
|||||||
evaluation = models.Evaluation.query.get(evaluation_id)
|
evaluation = models.Evaluation.query.get(evaluation_id)
|
||||||
moduleimpl_id = evaluation.moduleimpl_id
|
moduleimpl_id = evaluation.moduleimpl_id
|
||||||
#
|
#
|
||||||
modimpl = sco_moduleimpl.moduleimpl_withmodule_list(moduleimpl_id=moduleimpl_id)[0]
|
modimpl_o = sco_moduleimpl.moduleimpl_withmodule_list(moduleimpl_id=moduleimpl_id)[
|
||||||
mod = modimpl["module"]
|
0
|
||||||
formsemestre_id = modimpl["formsemestre_id"]
|
]
|
||||||
|
mod = modimpl_o["module"]
|
||||||
|
formsemestre_id = modimpl_o["formsemestre_id"]
|
||||||
sem = FormSemestre.query.get(formsemestre_id)
|
sem = FormSemestre.query.get(formsemestre_id)
|
||||||
sem_ues = sem.query_ues(with_sport=False).all()
|
sem_ues = sem.query_ues(with_sport=False).all()
|
||||||
is_malus = mod["module_type"] == ModuleType.MALUS
|
is_malus = mod["module_type"] == ModuleType.MALUS
|
||||||
@ -141,6 +144,7 @@ def evaluation_create_form(
|
|||||||
vals["visibulletinlist"] = []
|
vals["visibulletinlist"] = []
|
||||||
#
|
#
|
||||||
if is_apc: # BUT: poids vers les UE
|
if is_apc: # BUT: poids vers les UE
|
||||||
|
ue_coef_dict = ModuleImpl.query.get(moduleimpl_id).module.get_ue_coef_dict()
|
||||||
for ue in sem_ues:
|
for ue in sem_ues:
|
||||||
if edit:
|
if edit:
|
||||||
existing_poids = models.EvaluationUEPoids.query.filter_by(
|
existing_poids = models.EvaluationUEPoids.query.filter_by(
|
||||||
@ -151,7 +155,11 @@ def evaluation_create_form(
|
|||||||
if existing_poids:
|
if existing_poids:
|
||||||
poids = existing_poids.poids
|
poids = existing_poids.poids
|
||||||
else:
|
else:
|
||||||
|
coef_ue = ue_coef_dict.get(ue.id, 0.0) or 0.0
|
||||||
|
if coef_ue > 0:
|
||||||
poids = 1.0 # par defaut au départ
|
poids = 1.0 # par defaut au départ
|
||||||
|
else:
|
||||||
|
poids = 0.0
|
||||||
initvalues[f"poids_{ue.id}"] = poids
|
initvalues[f"poids_{ue.id}"] = poids
|
||||||
#
|
#
|
||||||
form = [
|
form = [
|
||||||
@ -297,7 +305,7 @@ def evaluation_create_form(
|
|||||||
readonly=False,
|
readonly=False,
|
||||||
)
|
)
|
||||||
|
|
||||||
dest_url = "moduleimpl_status?moduleimpl_id=%s" % modimpl["moduleimpl_id"]
|
dest_url = "moduleimpl_status?moduleimpl_id=%s" % modimpl_o["moduleimpl_id"]
|
||||||
if tf[0] == 0:
|
if tf[0] == 0:
|
||||||
head = html_sco_header.sco_header(page_title=page_title)
|
head = html_sco_header.sco_header(page_title=page_title)
|
||||||
return (
|
return (
|
||||||
|
Loading…
Reference in New Issue
Block a user