Update opolka/ScoDoc from ScoDoc/ScoDoc #2

Merged
opolka merged 1272 commits from ScoDoc/ScoDoc:master into master 2024-05-27 09:11:04 +02:00
2 changed files with 3 additions and 2 deletions
Showing only changes of commit 5ea65433be - Show all commits

View File

@ -773,7 +773,8 @@ def convert_colonnes_to_multiindex(df):
colonnes_verbose = [] colonnes_verbose = []
for col in colonnes: for col in colonnes:
if col[0] in pe_rcs.TYPES_RCS: if col[0] in pe_rcs.TYPES_RCS:
col_verbose = [pe_rcs.TYPES_RCS[col[0]]] + list(col[1:]) descr = pe_rcs.get_descr_rcs(col[0])
col_verbose = [descr] + list(col[1:])
col_verbose = tuple(col_verbose) col_verbose = tuple(col_verbose)
else: else:
col_verbose = col col_verbose = col

View File

@ -54,7 +54,7 @@ TYPES_RCS = {
}, },
"3A": { "3A": {
"aggregat": ["S5", "S6"], "aggregat": ["S5", "S6"],
"descr": "3ème année (S5+S6)", "descr": "BUT3 (S5+S6)",
}, },
"5S": { "5S": {
"aggregat": ["S1", "S2", "S3", "S4", "S5"], "aggregat": ["S1", "S2", "S3", "S4", "S5"],