-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcilent.cpp
120 lines (118 loc) · 2.81 KB
/
cilent.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
#include <iostream>
#include <fstream>
#include <cstring>
#include "cilent.h"
using namespace std;
Goods g[MAX_NUM];//用结构体储存商品信息
int total = 0;//仓库内的物品总数
void show_goods()//显示仓库内商品信息
{
if(total == 0)
{
cout << "\b仓库内无商品!" << endl;
return;
}
for(int i = 0; i< total; ++i)
cout << g[i].name << " " << g[i].count << endl;
}
bool save_goods()
{
int count;
string name;
cout << "\b 输入存入的物品英文名字【单词间请用下划线隔开】与存放数量" << endl;
cin >> name >> count;
int temp = find_goods(name);
if(temp == -1) //说明仓库中没有该物品,需创建一个新条目
{
g[total].name = name;
g[total++].count = count;
return true;
}
else if(temp < total) //说明仓库中有该类商品,直接修改数量即可
{
g[temp].count += count;
return true;
}
else //find_goods返回意料之外的值,报告错误
{
return false;
}
}
bool get_goods()
{
int count;
string name;
cout << "\b 输入取出的的物品英文名字【单词间请用下划线隔开】与取出数量" << endl;
cin >> name >> count;
int temp = find_goods(name);
if(temp == -1) //说明仓库中没有该物品,取出失败
{
cout << "\b 仓库中没有该商品" << endl;
return false;
}
else if(temp < total) //说明仓库中有该类商品
{
if(g[temp].count < count) //取出数量大于库存数量,拒绝请求
{
cout << "\b 取出数量大于库存数量" << endl;
return false;
}
else if(g[temp].count == count)// 库存数量为零,删除该商品条目
{
for(int i = temp; i < total - 1; ++i)
{
g[i].name = g[i + 1].name;
g[i].count = g[i + 1].count;
}
total--;
}
else //若库存数量大于取出数量,则从库存数量减去取出数量
{
g[temp].count -= count;
}
if(g[temp].count < count) //取出数量大于库存数量,拒绝请求
{
cout << "\b 取出数量大于库存数量" << endl;
return false;
}
}
else //find_goods返回意料之外的值,报告错误
{
return false;
}
}
int find_goods(string name)
{
int i;
for(i = 0; i < total; ++i)
if(name == g[i].name) break;//在列表中寻找有无该名字的商品,找到时i为商品对应下标
if(i == total) return -1;//-1表示没有找到该商品
else return i;//返回商品对应的下标
}
int welcome()
{
cout << " 仓库管理系统 " << endl;
cout << " 请输入您需要进行的操作编号 " << endl;
cout << " 1.存物品 2.取物品 3.查询物品 4.展示列表" << endl;
cout << " 0.退出 " << endl;
int choice;
cin >> choice;
return choice;
}
bool flash_list()
{
ofstream fout ("in.txt");
if(!fout.is_open())//查看文件是否打开成功
{
cout << "\b商品列表更新失败" << endl;
return false;
}
else
{
fout << total;
for(int i = 0; i< total; ++i)
fout << g[i].name << " " << g[i].count << endl;//将结构体数组的内容输入里面
return true;
}
fout.close();
}