forked from bastelfreak/erp-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
articlesearch.cpp
87 lines (68 loc) · 2.41 KB
/
articlesearch.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/*
Created by Meusel
Responsible: Stolz, Bader, Engel
mutliple functions to search for an article
*/
#include <iostream>
#include "articlesearch.h"
void ArtikelSuche (TArticle MeineArtikel[])
{
//TArtikel MeineArtikel[1000];
int Auswahl1 = 0;
int ArtikelNummer = 0;
std::string ArtikelName = "";
double ArtikelPreis = 0.0;
//cout << " Bitte wählen Sie das Atribut, wonach Sie suchen möchten " <<endl;
std::cout << " Please choose an Atribute which you want to search " << std::endl;
std::cout << " 1 for Articel Number" << std::endl;
std::cout << " 2 for Articel Name" << std::endl;
std::cout << " 3 for Articel Price" << std::endl;
std::cin >> Auswahl1;
switch (Auswahl1)
{
case 1: ArtikelNummer = ArtikelNummerSuche();
break;
case 2: ArtikelName = ArtikelNameSuche ();
break;
case 3: ArtikelPreis = ArtikelPreisSuche();
break;
default:
std::cout << "Error, please try again!" << std::endl;
}
for (int i=0; i<=1000;i++)
{
if ((MeineArtikel[i].id == ArtikelNummer && ArtikelNummer != 0) || (MeineArtikel[i].name == ArtikelName && ArtikelName != "") || (MeineArtikel[i].price == ArtikelPreis && ArtikelPreis != 0))
{
std::cout << "Articel Number: " << MeineArtikel[i].id << std::endl;
std::cout << "Articel Name: " <<MeineArtikel[i].name << std::endl;
std::cout << "Articel Price: " << MeineArtikel[i].price << "Euro" << std::endl;
}
}
}
//we switch in this programm, when the user wants to search the ID number of the product
int ArtikelNummerSuche()
{
int ArtikelNummer;
// cout<< "Bitte geben Sie nun die Artikel-Nummer ein" <<endl;
std::cout<< "Please enter the Article Number" << std::endl;
std::cin >> ArtikelNummer;
return ArtikelNummer;
}
//we switch in this programm, when the user wants to search the name of the product
std::string ArtikelNameSuche ()
{
std::string ArtikelName;
//cout<< "Bitte geben Sie den Namen des Produktes ein!" <<endl;
std::cout << "Please enter the Article Name" << std::endl;
std::cin >> ArtikelName;
return ArtikelName;
}
//we switch in this programm, when the user wants to search the price of the product
double ArtikelPreisSuche ()
{
double ArtikelPreis;
//cout<< "Bitte geben Sie den Preis des Produktes ein!" <<endl;
std::cout << "Please enter the Article Price" << std::endl;
std::cin >> ArtikelPreis;
return ArtikelPreis;
}