My Project
Loading...
Searching...
No Matches
interface_resp.h
Go to the documentation of this file.
1
16void affichArticles(int tRef[], float tPoids[], float tVol[], float tPrix[], int tLogique);
17
28void affichUnArticle(int tRef[], float tPoids[], float tVol[], float tPrix[], int tLogique);
29
39void affichUnClient(int tNumClient[], float tCagnotte[], int tSus[], int tLogique);
40
50void affichClients(int tNumClient[], float tCagnotte[], int tSus[], int tLogique);
51
63void affichAjoutArticle(int *ref, float *poids, float *volume, float *prix, int tRef[], int tLogArticle);
64
71void affichSupprimerArticle(int *ref);
72
82void affichModifierArticle(int *ref, float *poids, float *volume, float *prix);
83
90
99void affichAjoutClient(int tNumClient[], int tLogique, int *numC);
100
107void menu_resp(int *choix);
108
109
116int affichageConnexion(void);
117
123void affichModifClient(int tNumClient[], int tSus[], int tLogique);
124
131void global_resp(void);
132
137void affiche_resp(void);
void menu_resp(int *choix)
Laisse le responsable choisir une option du menu.
Definition interface_resp.c:384
int affichageConnexion(void)
Affiche les informations nécessaires pour entrer le mod de passe responsable.
Definition interface_resp.c:180
void problemRechercheArticle(void)
Affiche un message en cas de problème lors de la recherche d'un article.
void affichSupprimerArticle(int *ref)
Affiche les informations nécessaires pour supprimer un article.
Definition interface_resp.c:131
void affichUnArticle(int tRef[], float tPoids[], float tVol[], float tPrix[], int tLogique)
Affiche les informations d'un article spécifique.
Definition interface_resp.c:47
void affichClients(int tNumClient[], float tCagnotte[], int tSus[], int tLogique)
Affiche la liste des clients.
Definition interface_resp.c:83
void affichAjoutArticle(int *ref, float *poids, float *volume, float *prix, int tRef[], int tLogArticle)
Affiche les informations nécessaires pour ajouter un nouvel article.
Definition interface_resp.c:92
void affichAjoutClient(int tNumClient[], int tLogique, int *numC)
Affiche les informations nécessaires pour ajouter un nouveau client.
Definition interface_resp.c:166
void affichUnClient(int tNumClient[], float tCagnotte[], int tSus[], int tLogique)
Affiche les informations d'un client spécifique.
Definition interface_resp.c:66
void affiche_resp(void)
Affiche le menu principal de l'interface du responsable.
Definition interface_resp.c:15
void affichModifClient(int tNumClient[], int tSus[], int tLogique)
Affiche le menu qui permet de modifier l'état de la cagnotte d'un client.
Definition interface_resp.c:206
void affichModifierArticle(int *ref, float *poids, float *volume, float *prix)
Affiche les informations nécessaires pour modifier un article.
Definition interface_resp.c:140
void affichArticles(int tRef[], float tPoids[], float tVol[], float tPrix[], int tLogique)
Affiche la liste des articles.
Definition interface_resp.c:38
void global_resp(void)
Fonction principale de l'interface du responsable.
Definition interface_resp.c:394