py设计一个超市进销存管理系统

时间: 2023-08-27 09:06:55 浏览: 131
好的,一个超市进销存管理系统主要包括以下模块: 1. 商品管理模块:包括添加商品、修改商品、删除商品、查询商品等操作; 2. 库存管理模块:包括商品入库、商品出库、库存查询等操作; 3. 销售管理模块:包括销售记录、销售统计等操作; 4. 用户管理模块:包括添加用户、修改用户、删除用户、查询用户等操作; 5. 权限管理模块:包括用户权限分配、角色管理等操作。 下面是一个简单的示例代码: ```python import json class Product: def __init__(self, pid, name, price, quantity): self.id = pid self.name = name self.price = price self.quantity = quantity def __str__(self): return f'{self.id}\t{self.name}\t{self.price}\t{self.quantity}' class Inventory: def __init__(self, filename): self.filename = filename self.products = [] self.load() def load(self): try: with open(self.filename, 'r') as f: data = json.load(f) for p in data: product = Product(p['id'], p['name'], p['price'], p['quantity']) self.products.append(product) except FileNotFoundError: pass def save(self): with open(self.filename, 'w') as f: data = [] for p in self.products: data.append({'id': p.id, 'name': p.name, 'price': p.price, 'quantity': p.quantity}) json.dump(data, f) def add_product(self, product): self.products.append(product) self.save() def remove_product(self, pid): for p in self.products: if p.id == pid: self.products.remove(p) self.save() return True return False def update_product(self, pid, name, price, quantity): for p in self.products: if p.id == pid: p.name = name p.price = price p.quantity = quantity self.save() return True return False def search_product(self, pid=None, name=None): result = [] for p in self.products: if pid and p.id == pid: result.append(p) elif name and p.name == name: result.append(p) return result def get_all_products(self): return self.products def add_quantity(self, pid, quantity): for p in self.products: if p.id == pid: p.quantity += quantity self.save() return True return False def remove_quantity(self, pid, quantity): for p in self.products: if p.id == pid: if p.quantity >= quantity: p.quantity -= quantity self.save() return True else: return False return False class Sale: def __init__(self, pid, quantity, total): self.pid = pid self.quantity = quantity self.total = total def __str__(self): return f'{self.pid}\t{self.quantity}\t{self.total}' class SalesRecord: def __init__(self, filename): self.filename = filename self.sales = [] self.load() def load(self): try: with open(self.filename, 'r') as f: data = json.load(f) for s in data: sale = Sale(s['pid'], s['quantity'], s['total']) self.sales.append(sale) except FileNotFoundError: pass def save(self): with open(self.filename, 'w') as f: data = [] for s in self.sales: data.append({'pid': s.pid, 'quantity': s.quantity, 'total': s.total}) json.dump(data, f) def add_sale(self, sale): self.sales.append(sale) self.save() def get_sales(self): return self.sales def get_total_sales(self): total = 0 for s in self.sales: total += s.total return total class User: def __init__(self, username, password, role): self.username = username self.password = password self.role = role def __str__(self): return f'{self.username}\t{self.role}' class UserManager: def __init__(self, filename): self.filename = filename self.users = [] self.load() def load(self): try: with open(self.filename, 'r') as f: data = json.load(f) for u in data: user = User(u['username'], u['password'], u['role']) self.users.append(user) except FileNotFoundError: pass def save(self): with open(self.filename, 'w') as f: data = [] for u in self.users: data.append({'username': u.username, 'password': u.password, 'role': u.role}) json.dump(data, f) def add_user(self, user): self.users.append(user) self.save() def remove_user(self, username): for u in self.users: if u.username == username: self.users.remove(u) self.save() return True return False def update_user(self, username, password, role): for u in self.users: if u.username == username: u.password = password u.role = role self.save() return True return False def search_user(self, username=None): result = [] for u in self.users: if username and u.username == username: result.append(u) return result def get_all_users(self): return self.users class Role: ADMIN = 'admin' CASHIER = 'cashier' class Supermarket: def __init__(self): self.inventory = Inventory('inventory.json') self.sales = SalesRecord('sales.json') self.users = UserManager('users.json') self.current_user = None def login(self, username, password): users = self.users.search_user(username) if users: user = users[0] if user.password == password: self.current_user = user return True return False def logout(self): self.current_user = None def is_admin(self): return self.current_user and self.current_user.role == Role.ADMIN def add_product(self, pid, name, price, quantity): product = Product(pid, name, price, quantity) self.inventory.add_product(product) def remove_product(self, pid): if self.inventory.remove_product(pid): self.sales.sales = [s for s in self.sales.sales if s.pid != pid] def update_product(self, pid, name, price, quantity): self.inventory.update_product(pid, name, price, quantity) def search_product(self, pid=None, name=None): return self.inventory.search_product(pid, name) def get_all_products(self): return self.inventory.get_all_products() def add_quantity(self, pid, quantity): if self.inventory.add_quantity(pid, quantity): product = self.search_product(pid=pid)[0] total = product.price * quantity sale = Sale(pid, quantity, total) self.sales.add_sale(sale) def remove_quantity(self, pid, quantity): if self.inventory.remove_quantity(pid, quantity): product = self.search_product(pid=pid)[0] total = product.price * quantity sale = Sale(pid, quantity, total) self.sales.add_sale(sale) def get_sales(self): return self.sales.get_sales() def get_total_sales(self): return self.sales.get_total_sales() def add_user(self, username, password, role): user = User(username, password, role) self.users.add_user(user) def remove_user(self, username): self.users.remove_user(username) def update_user(self, username, password, role): self.users.update_user(username, password, role) def search_user(self, username=None): return self.users.search_user(username) def get_all_users(self): return self.users.get_all_users() ``` 上面的代码中,我们定义了 `Product`、`Inventory`、`Sale`、`SalesRecord`、`User`、`UserManager`、`Supermarket` 等类来实现超市进销存管理系统的各项操作,其中: - `Product` 类表示商品信息,包括商品编号、商品名称、商品单价和库存数量; - `Inventory` 类表示库存管理模块,包括添加商品、删除商品、修改商品、查询商品、商品入库、商品出库等操作; - `Sale` 类表示销售记录,包括商品编号、销售数量和销售总额; - `SalesRecord` 类表示销售管理模块,包括销售记录和销售统计等操作; - `User` 类表示用户信息,包括用户名、密码和角色; - `UserManager` 类表示用户管理模块,包括添加用户、删除用户、修改用户、查询用户等操作; - `Supermarket` 类表示超市进销存管理系统,包括系统登录、系统登出、商品管理、库存管理、销售管理、用户管理等操作。 我们可以通过以下代码来测试上面的超市进销存管理系统: ```python # 创建一个超市进销存管理系统 supermarket = Supermarket() # 添加商品 supermarket.add_product('001', '可乐', 2.5, 100) supermarket.add_product('002', '薯片', 3.0, 200) supermarket.add_product('003', '巧克力', 5.0, 150) # 查询商品 print('所有商品:') for p in supermarket.get_all_products(): print(p) print() print('查询商品:') for p in supermarket.search_product(name='可乐'): print(p) print() # 商品入库 supermarket.add_quantity('001', 50) # 商品出库 supermarket.remove_quantity('002', 100) # 查询销售记录 print('销售记录:') for s in supermarket.get_sales(): print(s) print() # 查询销售总额 print(f'销售总额:{supermarket.get_total_sales()}') print() # 添加用户 supermarket.add_user('admin', 'admin123', Role.ADMIN) supermarket.add_user('cashier', 'cashier123', Role.CASHIER) # 查询用户 print('所有用户:') for u in supermarket.get_all_users(): print(u) print() print('查询用户:') for u in supermarket.search_user(username='admin'): print(u) print() # 修改用户 supermarket.update_user('admin', 'admin456', Role.CASHIER) # 删除用户 supermarket.remove_user('cashier') ```
阅读全文

相关推荐

最新推荐

recommend-type

Python实现调用另一个路径下py文件中的函数方法总结

本篇将详细介绍如何在Python中实现这一目标,提供五种不同的方法来调用另一个路径下的py文件中的函数。 1. **方法一**: 这种方法适用于主文件和被调用文件在同一父目录下的情况。首先,我们需要修改`sys.path`,...
recommend-type

python学生信息管理系统实现代码

本文将详细介绍如何使用Python实现一个简单的学生信息管理系统。这个系统能够完成学生信息的创建、查看、查询、删除和修改等基本功能。通过阅读和理解以下内容,你可以了解到如何利用Python的文件操作、JSON序列化...
recommend-type

Python中py文件引用另一个py文件变量的方法

在Python编程中,有时我们需要在一个Python模块(`.py`文件)中使用另一个模块中的变量或函数。这可以通过导入(`import`)机制实现。在给定的标题和描述中,我们探讨的是如何在一个`.py`文件中引用另一个`.py`文件...
recommend-type

Python3+Django3开发简单的人员管理系统

在本文中,我们将探讨如何使用Python3和Django3框架来开发一个简单的人员管理系统。Django是一个高级的Python Web框架,它鼓励快速开发并遵循整洁的编码规范。下面,我们将详细讲解开发过程中的关键步骤。 1. **...
recommend-type

python小练习——图书管理系统(增加数据存储)

在本篇【Python小练习——图书管理系统(增加数据存储)】中,我们将深入探讨如何使用Python构建一个简单的图书管理系统,并通过扩展功能实现数据的持久化存储。这个系统旨在帮助初学者掌握Python的基础知识,如函数...
recommend-type

Python调试器vardbg:动画可视化算法流程

资源摘要信息:"vardbg是一个专为Python设计的简单调试器和事件探查器,它通过生成程序流程的动画可视化效果,增强了算法学习的直观性和互动性。该工具适用于Python 3.6及以上版本,并且由于使用了f-string特性,它要求用户的Python环境必须是3.6或更高。 vardbg是在2019年Google Code-in竞赛期间为CCExtractor项目开发而创建的,它能够跟踪每个变量及其内容的历史记录,并且还能跟踪容器内的元素(如列表、集合和字典等),以便用户能够深入了解程序的状态变化。" 知识点详细说明: 1. Python调试器(Debugger):调试器是开发过程中用于查找和修复代码错误的工具。 vardbg作为一个Python调试器,它为开发者提供了跟踪代码执行、检查变量状态和控制程序流程的能力。通过运行时监控程序,调试器可以发现程序运行时出现的逻辑错误、语法错误和运行时错误等。 2. 事件探查器(Event Profiler):事件探查器是对程序中的特定事件或操作进行记录和分析的工具。 vardbg作为一个事件探查器,可以监控程序中的关键事件,例如变量值的变化和函数调用等,从而帮助开发者理解和优化代码执行路径。 3. 动画可视化效果:vardbg通过生成程序流程的动画可视化图像,使得算法的执行过程变得生动和直观。这对于学习算法的初学者来说尤其有用,因为可视化手段可以提高他们对算法逻辑的理解,并帮助他们更快地掌握复杂的概念。 4. Python版本兼容性:由于vardbg使用了Python的f-string功能,因此它仅兼容Python 3.6及以上版本。f-string是一种格式化字符串的快捷语法,提供了更清晰和简洁的字符串表达方式。开发者在使用vardbg之前,必须确保他们的Python环境满足版本要求。 5. 项目背景和应用:vardbg是在2019年的Google Code-in竞赛中为CCExtractor项目开发的。Google Code-in是一项面向13到17岁的学生开放的竞赛活动,旨在鼓励他们参与开源项目。CCExtractor是一个用于从DVD、Blu-Ray和视频文件中提取字幕信息的软件。vardbg的开发过程中,该项目不仅为学生提供了一个实际开发经验的机会,也展示了学生对开源软件贡献的可能性。 6. 特定功能介绍: - 跟踪变量历史记录:vardbg能够追踪每个变量在程序执行过程中的历史记录,使得开发者可以查看变量值的任何历史状态,帮助诊断问题所在。 - 容器元素跟踪:vardbg支持跟踪容器类型对象内部元素的变化,包括列表、集合和字典等数据结构。这有助于开发者理解数据结构在算法执行过程中的具体变化情况。 通过上述知识点的详细介绍,可以了解到vardbg作为一个针对Python的调试和探查工具,在提供程序流程动画可视化效果的同时,还通过跟踪变量和容器元素等功能,为Python学习者和开发者提供了强大的支持。它不仅提高了学习算法的效率,也为处理和优化代码提供了强大的辅助功能。
recommend-type

管理建模和仿真的文件

管理Boualem Benatallah引用此版本:布阿利姆·贝纳塔拉。管理建模和仿真。约瑟夫-傅立叶大学-格勒诺布尔第一大学,1996年。法语。NNT:电话:00345357HAL ID:电话:00345357https://theses.hal.science/tel-003453572008年12月9日提交HAL是一个多学科的开放存取档案馆,用于存放和传播科学研究论文,无论它们是否被公开。论文可以来自法国或国外的教学和研究机构,也可以来自公共或私人研究中心。L’archive ouverte pluridisciplinaire
recommend-type

【IT设备维保管理入门指南】:如何制定有效的维护计划,提升设备性能与寿命

![【IT设备维保管理入门指南】:如何制定有效的维护计划,提升设备性能与寿命](https://docs.plesk.com/en-US/onyx/administrator-guide/images/78798.webp) # 摘要 本文全面探讨了IT设备维保管理的各个方面,从理论基础到实践案例,再到技术革新和未来展望。首先概述了维保计划的重要性,强调了其在延长设备生命周期和提升性能稳定性方面的作用。接着,文中详细论述了维保计划的制定原则,包括预防性维护、设备分类及成本效益分析等。通过分析不同行业的实践案例,本文揭示了成功维保计划的关键因素,并提出了效果评估与改进的策略。随后,探讨了性能监
recommend-type

python爬取网页链接,url = “https://koubei.16888.com/57233/0-0-0-0”

在Python中,使用如`requests`库来发送HTTP请求并抓取网页链接是比较常见的做法。以下是如何使用`requests`和BeautifulSoup库(用于解析HTML)来爬取给定URL上的信息: 首先,确保已安装`requests`和`beautifulsoup4`库,如果未安装可以使用以下命令安装: ```bash pip install requests beautifulsoup4 ``` 然后,你可以编写以下Python脚本来爬取指定URL的内容: ```python import requests from bs4 import BeautifulSoup # 定义要
recommend-type

掌握Web开发:Udacity天气日记项目解析

资源摘要信息: "Udacity-Weather-Journal:Web开发路线的Udacity纳米度-项目2" 知识点: 1. Udacity:Udacity是一个提供在线课程和纳米学位项目的教育平台,涉及IT、数据科学、人工智能、机器学习等众多领域。纳米学位是Udacity提供的一种专业课程认证,通过一系列课程的学习和实践项目,帮助学习者掌握专业技能,并提供就业支持。 2. Web开发路线:Web开发是构建网页和网站的应用程序的过程。学习Web开发通常包括前端开发(涉及HTML、CSS、JavaScript等技术)和后端开发(可能涉及各种服务器端语言和数据库技术)的学习。Web开发路线指的是在学习过程中所遵循的路径和进度安排。 3. 纳米度项目2:在Udacity提供的学习路径中,纳米学位项目通常是实践导向的任务,让学生能够在真实世界的情境中应用所学的知识。这些项目往往需要学生完成一系列具体任务,如开发一个网站、创建一个应用程序等,以此来展示他们所掌握的技能和知识。 4. Udacity-Weather-Journal项目:这个项目听起来是关于创建一个天气日记的Web应用程序。在完成这个项目时,学习者可能需要运用他们关于Web开发的知识,包括前端设计(使用HTML、CSS、Bootstrap等框架设计用户界面),使用JavaScript进行用户交互处理,以及可能的后端开发(如果需要保存用户数据,可能会使用数据库技术如SQLite、MySQL或MongoDB)。 5. 压缩包子文件:这里提到的“压缩包子文件”可能是一个笔误或误解,它可能实际上是指“压缩包文件”(Zip archive)。在文件名称列表中的“Udacity-Weather-journal-master”可能意味着该项目的所有相关文件都被压缩在一个名为“Udacity-Weather-journal-master.zip”的压缩文件中,这通常用于将项目文件归档和传输。 6. 文件名称列表:文件名称列表提供了项目文件的结构概览,它可能包含HTML、CSS、JavaScript文件以及可能的服务器端文件(如Python、Node.js文件等),此外还可能包括项目依赖文件(如package.json、requirements.txt等),以及项目文档和说明。 7. 实际项目开发流程:在开发像Udacity-Weather-Journal这样的项目时,学习者可能需要经历需求分析、设计、编码、测试和部署等阶段。在每个阶段,他们需要应用他们所学的理论知识,并解决在项目开发过程中遇到的实际问题。 8. 技术栈:虽然具体的技术栈未在标题和描述中明确提及,但一个典型的Web开发项目可能涉及的技术包括但不限于HTML5、CSS3、JavaScript(可能使用框架如React.js、Angular.js或Vue.js)、Bootstrap、Node.js、Express.js、数据库技术(如上所述),以及版本控制系统如Git。 9. 学习成果展示:完成这样的项目后,学习者将拥有一个可部署的Web应用程序,以及一个展示他们技术能力的项目案例,这些对于未来的求职和职业发展都是有价值的。 10. 知识点整合:在进行Udacity-Weather-Journal项目时,学习者需要将所学的多个知识点融合在一起,包括前端设计、用户体验、后端逻辑处理、数据存储和检索、以及可能的API调用等。 总结来说,Udacity-Weather-Journal项目是Udacity Web开发纳米学位课程中的一个重要实践环节,它要求学习者运用他们所学到的前端和后端开发技能,完成一个具体的Web应用程序项目。通过完成这样的项目,学习者能够将理论知识转化为实践经验,并为他们未来在IT行业的职业发展打下坚实的基础。