def creationCarte(): prenom = request.form['prenom'] nom = request.form['nom'] matricule = request.form['matricule'] activation = request.form['activ'] if activation == "False": activation = False rep = modeleResanet.creerCarte(matricule, activation) personnels = modeleResanet.getPersonnelsSansCarte() return render_template('creerCarte.html', personnels=personnels, activation="bloque", cree=True, nom=nom, prenom=prenom) elif activation == "True": activation = True rep = modeleResanet.creerCarte(matricule, activation) personnels = modeleResanet.getPersonnelsSansCarte() return render_template('creerCarte.html', personnels=personnels, activation="active", cree=True, nom=nom, prenom=prenom)
def suppPersonnel() : matricule = request.form[ 'matricule' ] nom = request.form[ 'nom' ] prenom = request.form[ 'prenom' ] rep = modeleResanet.delPersonnel( matricule ) personnels = modeleResanet.getPersonnelsSansCarte() return render_template( 'vuePersonnelSansCarte.html' , personnels = personnels , supp = True , nom = nom , prenom = prenom )
def goCreerCarte(): aujourdhui = datesResanet.getDateAujourdhuiISO() aujourdhuis = datesResanet.convertirDateISOversFR(aujourdhui) personnels = modeleResanet.getPersonnelsSansCarte() return render_template('creerCarte.html', aujourdhuis=aujourdhuis, personnels=personnels)
def creeCompte() : matricule = request.form[ 'matricule' ] nom = request.form[ 'nom' ] prenom = request.form[ 'prenom' ] service = request.form[ 'service' ] lePersonnel = [ matricule , nom , prenom , service ] personnels = modeleResanet.getPersonnelsSansCarte() return render_template( 'vuePersonnelSansCarte.html' , personnels = personnels , lePersonnel = lePersonnel , card = True )
def creerCompte(): matricule = request.form['matricule'] print "\n\n\nMatricule : ", matricule if request.form.has_key('activerCarte'): modeleResanet.creerCarte(matricule, True) else: #ModeleResanet.creerCarte(matricule) modeleResanet.creerCarte(matricule, False) creer = True personnels = modeleResanet.getPersonnelsSansCarte() return render_template('vuePersonnelSansCarte.html', creer=creer, personnels=personnels)
def gestionnairePersonnelsSansCarte(): sansCarte = modeleResanet.getPersonnelsSansCarte() longeur = len(sansCarte) nom = [] prenom = [] nomService = [] matricule = [] for i in range(len(sansCarte)): nom.append(sansCarte[i]['nom']) prenom.append(sansCarte[i]['prenom']) nomService.append(sansCarte[i]['nomService']) matricule.append(str(sansCarte[i]['matricule'])) return render_template('vuePersonnelSansCarte.html', perso=longeur, leNom=nom, lePrenom=prenom, nomDuService=nomService, leMatricule=matricule)
def listerPersoSansCarte() : personnel = modeleResanet.getPersonnelsSansCarte() rangePersonnel = len(personnel) nom = [] prenom = [] matricule = [] nomService = [] for unNom in personnel : nom.append(unNom['nom']) for unPrenom in personnel : prenom.append(unPrenom['prenom']) for uneMatricule in personnel : matricule.append(str(uneMatricule['matricule'])) for unService in personnel : nomService.append(unService['nomService']) return render_template('vuePersonnelSansCarte.html', leNom = nom, lePrenom = prenom, laMatricule = matricule, leService = nomService, rangePerso = rangePersonnel)
def listerPersonnelSansCarte(): sansCarte = modeleResanet.getPersonnelsSansCarte() non = len(sansCarte) return render_template('vuePersonnelSansCarte.html', sansCarte=sansCarte, non=non)
def listerPersonnelSansCarte(): personnels = modeleResanet.getPersonnelsSansCarte() return render_template('vuePersonnelSansCarte.html', personnels=personnels)
def listePersonnelSansCarte(): personnelsans = modeleResanet.getPersonnelsSansCarte() aujourdhuifr = datesResanet.getDateAujourdhuiFR() return render_template('vuePersonnelSansCarte.html', personnelsans=personnelsans, aujourdhuifr=aujourdhuifr)