My Project
Loading...
Searching...
No Matches
interface_resp.h
Go to the documentation of this file.
1
15void affichArticles(int tRef[], float tPoids[], float tVol[], float tPrix[], int tLogique);
16
26void affichUnArticle(int tRef[], float tPoids[], float tVol[], float tPrix[], int tLogique);
27
36void affichUnClient(int tNumClient[], float tCagnotte[], int tSus[], int tLogique);
37
46void affichClients(int tNumClient[], float tCagnotte[], int tSus[], int tLogique);
47
56void affichAjoutArticle(int *ref, float *poids, float *volume, float *prix);
57
63void affichSupprimerArticle(int *ref);
64
73void affichModifierArticle(int *ref, float *poids, float *volume, float *prix);
74
79
87void affichAjoutClient(int tNumClient[], int tLogique, int *numC);
88
94void menu_resp(int *choix);
95
101void global_resp();
102
106void affiche_resp();
void menu_resp(int *choix)
Laisse le responsable choisir une option du menu.
Definition interface_resp.c:230
void affiche_resp()
Affiche le menu principal de l'interface du responsable.
Definition interface_resp.c:18
void global_resp()
Fonction principale de l'interface du responsable.
Definition interface_resp.c:243
void affichSupprimerArticle(int *ref)
Affiche les informations nécessaires pour supprimer un article.
Definition interface_resp.c:162
void affichUnArticle(int tRef[], float tPoids[], float tVol[], float tPrix[], int tLogique)
Affiche les informations d'un article spécifique.
Definition interface_resp.c:64
void affichClients(int tNumClient[], float tCagnotte[], int tSus[], int tLogique)
Affiche la liste des clients.
Definition interface_resp.c:114
void problemRechercheArticle()
Affiche un message en cas de problème lors de la recherche d'un article.
void affichAjoutClient(int tNumClient[], int tLogique, int *numC)
Affiche les informations nécessaires pour ajouter un nouveau client.
Definition interface_resp.c:211
void affichAjoutArticle(int *ref, float *poids, float *volume, float *prix)
Affiche les informations nécessaires pour ajouter un nouvel article.
Definition interface_resp.c:131
void affichUnClient(int tNumClient[], float tCagnotte[], int tSus[], int tLogique)
Affiche les informations d'un client spécifique.
Definition interface_resp.c:89
void affichModifierArticle(int *ref, float *poids, float *volume, float *prix)
Affiche les informations nécessaires pour modifier un article.
Definition interface_resp.c:178
void affichArticles(int tRef[], float tPoids[], float tVol[], float tPrix[], int tLogique)
Affiche la liste des articles.
Definition interface_resp.c:47