项目实战-----Python编写疫苗信息管理系统

Posted yk 坤帝

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了项目实战-----Python编写疫苗信息管理系统相关的知识,希望对你有一定的参考价值。

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。 本文链接:

https://blog.csdn.net/weixin_43425784/article/details/118585467

项目实战-----Python编写疫苗信息管理系统

个人公众号 yk 坤帝 学习更多硬核知识。

文章目录

1.整体结构图
2.连接数据库
3.主界面
4.注册界面
5.登陆界面
6.功能选项

		功能区主界面
					新建疫苗信息
					新建疫苗分配信息
					新建疫苗养护信息
					新建接种人员信息
					查询疫苗分配信息
					查询疫苗养护信息
					查询接种人员信息
					查询疫苗信息
					修改疫苗信息
					删除疫苗信息

本来这个小应用是给一个客户做的,后来找个理由又说不要了,当时心里真是我艹(一种植物)了,其实之前没用过Tkinter,只能边做边学,还好不是太难,一夜就肝出来了。由于时间比较紧,所以只实现了基本功能,有很多地方的代码可以进行优化,界面美化页没有怎么弄,后期应该也不弄了,反正我也用不到这玩意儿。
Tkinter对于那些只是临时使用,需要快速开发出一个满足基本需求的轻型应用的用户来说,还是非常香的,相关组件也是相当完整的,看到这里估计肯定有人想说pyside2和pyqt5,嗯~~,它俩也挺好的。下面的代码供大家交流使用,哪位大佬想赐教可以直接评论,嘿嘿嘿!

1.整体结构图
在这里插入图片描述

2.连接数据库

def connect_DBS(self, database, content):
    db = pymysql.connect(host="localhost", user="root", password="pwd", database=database)
    cursor = db.cursor()
    cursor.execute(content)
    data = cursor.fetchone()
    db.commit()
    db.close()
    return data

3.主界面
图片

个人公众号:yk 坤帝 
    def main_window(self):
        tk.Button(app, text='登录', bg='white', font=("Arial,12"), width=12, height=1, command=self.login).place(x=260,                                                                                                      y=200)
        tk.Button(app, text='注册', bg='white', font=("Arial,12"), width=12, height=1, command=self.register).place(x=260,                                                                                                                y=240)
        tk.Button(app, text='退出', bg='white', font=("Arial,12"), width=12, height=1, command=self.quit_mainloop).place(x=260, y=280)

4.注册界面
图片

个人公众号:yk 坤帝 
    def register(self):
        register = tk.Toplevel(app)
        register.title('用户注册')
        register.geometry("600x400")
        tk.Label(register, text="欢迎注册", font=("KaiTi", 40)).place(x=200, y=20)
        tk.Label(register, text='添加管理员姓名:', font=("Arial", 9)).place(x=80, y=120)
        tk.Label(register, text='确认管理员编号:', font=('Arial', 9)).place(x=80, y=150)
        entry1 = tk.Entry(register, font=("Arial, 9"), width=46, )
        entry2 = tk.Entry(register, font=("Arial, 9"), width=46, )
        entry1.pack()
        entry2.pack()
        entry1.place(x=180, y=120, width=350, height=25)
        entry2.place(x=180, y=150, width=350, height=25)
    def user_register():
        user_name = entry1.get()
        user_code = entry2.get()
        if user_name == "" or user_code == "":
            tkinter.messagebox.showwarning(title="警告", message="用户名或密码不能为空!")
        else:
            content = "INSERT INTO user_info (user_name, user_code) VALUES ('%s', '%s');" % (user_name, user_code)
            self.connect_DBS(database="vaccine_info", content=content)
            tkinter.messagebox.showinfo(title="信息", message="注册成功!")
    tk.Button(register, text="注册", bg='white', font=("Arial,9"), width=12, height=0, command=user_register).place(x=250, y=250)

5.登陆界面
图片

def login(self):
    login = tk.Toplevel(app)
    login.title('用户登录')
    login.geometry("600x400")
    tk.Label(login, text="欢迎登录", font=("KaiTi", 40)).place(x=200, y=20)
    tk.Label(login, text='管理员姓名:', font=("Arial", 9)).place(x=80, y=120)
    tk.Label(login, text='管理员编号:', font=('Arial', 9)).place(x=80, y=150)
    entry1 = tk.Entry(login, font=("Arial, 9"), width=46)
    entry2 = tk.Entry(login, font=("Arial, 9"), width=46, show="*")
    entry1.pack()
    entry2.pack()
    entry1.place(x=180, y=120, width=350, height=25)
    entry2.place(x=180, y=150, width=350, height=25)

    def user_check():
        user_name = entry1.get()
        user_code = entry2.get()
        content = "SELECT * FROM user_info WHERE user_name = '%s';" % user_name
        data = self.connect_DBS(database="vaccine_info", content=content)
        try:
            if user_name == data[1] and user_code == data[2]:
                tkinter.messagebox.showinfo(title="信息", message="欢迎登录!")
                self.options()
            elif user_name != data[1]:
                tkinter.messagebox.showerror(title="错误", message="请注册后再进行登录!")
            elif user_name == data[1] and user_code != data[2]:
                tkinter.messagebox.showerror(title="错误", message="密码错误!")
        except TypeError:
            tkinter.messagebox.showerror(title="错误", message="请注册后再进行登录!")
    tk.Button(login, text="登录", bg='white', font=("Arial,9"), width=12, height=0, command=user_check).place(x=250, y=250)

6.功能选项
功能区主界面
图片

个人公众号:yk 坤帝 
    def options(self):
        options = tk.Toplevel(app)
        options.title('功能选项')
        options.geometry("600x500")
        tk.Label(options, text="欢迎使用!", font=("KaiTi", 40)).place(x=180, y=15)
        tk.Button(options, text='新建疫苗信息', bg='white', font=("Arial,12"), width=20, height=2,command=self.add_vacc_info).place(x=100, y=100)
        tk.Button(options, text='新建疫苗分配信息', bg='white', font=("Arial,12"), width=20, height=2,command=self.add_vaccine_distr_info).place(x=100, y=160)
        tk.Button(options, text='新建疫苗养护信息', bg='white', font=("Arial,12"), width=20, height=2,              command=self.add_vaccine_maintenance_info).place(x=100, y=220)
        tk.Button(options, text='新建接种人员信息', bg='white', font=("Arial,12"), width=20, height=2,command=self.add_vaccination_person_info).place(x=100, y=280)
        tk.Button(options, text='查询疫苗分配信息', bg='white', font=("Arial,12"), width=20, height=2,command=self.vaccine_distr_info_query).place(x=100, y=340)
        tk.Button(options, text='查询疫苗养护信息', bg='white', font=("Arial,12"), width=20, height=2,           command=self.vaccination_maintenance_info_query).place(x=320, y=100)
        tk.Button(options, text='查询接种人员信息', bg='white', font=("Arial,12"), width=20, height=2,command=self.vaccination_person_info_query).place(x=320, y=160)
        tk.Button(options, text='查询疫苗信息', bg='white', font=("Arial,12"), width=20, height=2,command=self.vaccine_info_query).place(x=320, y=220)
        tk.Button(options, text='修改疫苗信息', bg='white', font=("Arial,12"), width=20, height=2,command=self.modify_vaccine_info).place(x=320, y=280)
        tk.Button(options, text='删除疫苗信息', bg='white', font=("Arial,12"), width=20, height=2,command=self.del_vaccine_info).place(x=320, y=340)

新建疫苗信息
图片

def add_vacc_info(self):
    add_vacc_info = tk.Toplevel(app)
    add_vacc_info.title('添加疫苗信息')
    add_vacc_info.geometry("600x400")
    tk.Label(add_vacc_info, text='疫苗批号:', font=("Arial", 9)).place(x=80, y=60)
    tk.Label(add_vacc_info, text='疫苗名称:', font=('Arial', 9)).place(x=80, y=90)
    tk.Label(add_vacc_info, text='企业名称:', font=('Arial', 9)).place(x=80, y=120)
    tk.Label(add_vacc_info, text='企业编号:', font=('Arial', 9)).place(x=80, y=150)
    tk.Label(add_vacc_info, text='    规格:', font=('Arial', 9)).place(x=80, y=180)
    tk.Label(add_vacc_info, text='    进价:', font=('Arial', 9)).place(x=80, y=210)
    tk.Label(add_vacc_info, text='  预售价:', font=('Arial', 9)).place(x=80, y=240)
    tk.Label(add_vacc_info, text='企业上限:', font=('Arial', 9)).place(x=80, y=270)
    tk.Label(add_vacc_info, text='企业下限:', font=('Arial', 9)).place(x=80, y=300)
    entry1 = tk.Entry(add_vacc_info, font=("Arial, 9"), width=46)
    entry2 = tk.Entry(add_vacc_info, font=("Arial, 9"), width=46)
    entry3 = tk.Entry(add_vacc_info, font=("Arial, 9"), width=46)
    entry4 = tk.Entry(add_vacc_info, font=("Arial, 9"), width=46)
    entry5 = tk.Entry(add_vacc_info, font=("Arial, 9"), width=46)
    entry6 = tk.Entry(add_vacc_info, font=("Arial, 9"), width=46)
    entry7 = tk.Entry(add_vacc_info, font=("Arial, 9"), width=46)
    entry8 = tk.Entry(add_vacc_info, font=("Arial, 9"), width=46)
    entry9 = tk.Entry(add_vacc_info, font=("Arial, 9"), width=46)
    entry1.pack()
    entry2.pack()
    entry3.pack()
    entry4.pack()
    entry5.pack()
    entry6.pack()
    entry7.pack()
    entry8.pack()
    entry9.pack()
    entry1.place(x=180, y=60, width=350)
    entry2.place(x=180, y=90, width=350)
    entry3.place(x=180, y=120, width=350)
    entry4.place(x=180, y=150, width=350)
    entry5.place(x=180, y=180, width=350)
    entry6.place(x=180, y=210, width=350)
    entry7.place(x=180, y=240, width=350)
    entry8.place(x=180, y=270, width=350)
    entry9.place(x=180, y=300, width=350)

    def add():
        text1 = entry1.get()
        text2 = entry2.get()
        text3 = entry3.get()
        text4 = entry4.get()
        text5 = entry5.get()
        text6 = entry6.get()
        text7 = entry7.get()
        text8 = entry8.get()
        text9 = entry9.get()
        content = "INSERT INTO vaccine_info (" \\
                  "vaccine_num, vaccine_name, company_name, company_num, size, buy_price, pre_sale_price, limit_up, limit_down" \\
                  ")" \\
                  " VALUES (%s, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s');" % (
                  text1, text2, text3, text4, text5, text6, text7, text8, text9)
        self.connect_DBS(database="vaccine_info", content=content)
        tkinter.messagebox.showinfo(title="信息", message="数据添加成功!")

    def clear():
        entry1.delete(0, "end")
        entry2.delete(0, "end")
        entry3.delete(0, "end")
        entry4.delete(0, "end")
        entry5.delete(0, "end")
        tkinter.messagebox.showinfo(title="信息", message="数据已清空,请继续添加!")
    tk.Button(add_vacc_info, text="添加", bg='white', font=("Arial,9"), width=9, height=0, command=add).place(x=400,                                                                                                       y=360)
    tk.Button(add_vacc_info, text="清空", bg='white', font=("Arial,9"), width=9, height=0, command=clear).place(x=160,                                                                                                             y=360)

新建疫苗分配信息
图片

个人公众号:yk 坤帝 
    def add_vaccine_distr_info(self):
        add_vaccine_distr_info = tk.Toplevel(app)
        add_vaccine_distr_info.title('添加疫苗分配信息')
        add_vaccine_distr_info.geometry("600x400")
        tk.Label(add_vaccine_distr_info, text='疫苗分配单号:', font=("Arial", 9)).place(x=80, y=60)
        tk.Label(add_vaccine_distr_info, text='       日期:', font=('Arial', 9)).place(x=80, y=90)
        tk.Label(add_vaccine_distr_info, text='   疫苗批号:', font=('Arial', 9)).place(x=80, y=120)
        tk.Label(add_vaccine_distr_info, text='   疫苗名称:', font=('Arial', 9)).place(x=80, y=150)
        tk.Label(add_vaccine_distr_info, text='   企业编号:', font=('Arial', 9)).place(x=80, y=180)
        tk.Label(add_vaccine_distr_info, text=' 质检员编号:', font=('Arial', 9)).place(x=80, y=210)
        tk.Label(add_vaccine_distr_info, text='      数量:', font=('Arial', 9)).place(x=80, y=240)
        entry1 = tk.Entry(add_vaccine_distr_info, font=("Arial, 9"), width=46)
        entry2 = tk.Entry(add_vaccine_distr_info, font=("Arial, 9"), width=46)
        entry3 = tk.Entry(add_vaccine_distr_info, font=("Arial, 9"), width=46)
        entry4 = tk.Entry(add_vaccine_distr_info, font=("Arial, 9"), width=46)
        entry5 = tk.Entry(add_vaccine_distr_info, font=("Arial, 9"), width=46)
        entry6 = tk.Entry(add_vaccine_distr_info, font=("Arial, 9"), width=46)
        entry7 = tk.Entry(add_vaccine_distr_info, font=("Arial, 9"), width=46)
        entry1.pack()
        entry2.pack()
        entry3.pack()
        entry4.pack()
        entry5.pack()
        entry6.pack()
        entry7.pack()
        entry1.place(x=180, y=60, width=350)
        entry2.place(x=180, y=90, width=350)
        entry3.place(x=180, y=120, width=350)
        entry4.place(x=180, y=150, width=350)
        entry5.place(x=180, y=180, width=350)
        entry6.place(x=180, y=210, width=350)
        entry7.place(x=180, y=240, width=350)
def add():
    text1 = entry1.get()
    text2 = entry2.get()
    text3 = entry3.get()
    text4 = entry4.get()
    text5 = entry5.get()
    text6 = entry6.get()
    text7 = entry7.get()
    content = "INSERT INTO vaccine_distr_info (" \\
              "vaccine_distr_num, date, vaccine_num, vaccine_name, company_num, operator_num, num" \\
              ")" \\
              " VALUES (%s, '%s', '%s', '%s', '%s', '%s', '%s');" % (
                  text1, text2, text3, text4, text5, text6, text7)
    self.connect_DBS(database="vaccine_info", content=content)
    tkinter.messagebox.showinfo(title="信息", message="数据添加成功!")

def clear():
    entry1.delete(0, "end")
    entry2.delete(0, "end")
    entry3.delete(0, "end")
    entry4.delete(0, "end")
    entry5.delete(0, "end")
    entry6.delete(0, "end")
    entry7.delete(0, "end")
    tkinter.messagebox.showinfo(title="信息", message="数据已清空,请继续添加!")
tk.Button(add_vaccine_distr_info, text="添加", bg='white', font=("Arial,9"), width=9, height=0,command=add).place(x=400,y=360)
tk.Button(add_vaccine_distr_info, text="清空", bg='white', font=("Arial,9"), width=9, height=0,command=clear).place(x=160,y=360)

新建疫苗养护信息
图片

def add_vaccine_maintenance_info(self):
    vaccine_maintenance_info = tk.Toplevel(app)
    vaccine_maintenance_info.title('添加疫苗养护信息')
    vaccine_maintenance_info.geometry("600x400")
    tk.Label(vaccine_maintenance_info, text='养护疫苗批号:', font=("Arial", 9)).place(x=80, y=60)
    tk.Label(vaccine_maintenance_info, text='养护疫苗名称:', font=('Arial', 9)).place(x=80, y=90)
    tk.Label(vaccine_maintenance_info, text=' 管理员编号:', font=('Arial', 9)).place(x=80, y=120)
    tk.Label(vaccine_maintenance_info, text=' 管理员姓名:', font=('Arial', 9)).place(x=80, y=150)
    tk.Label(vaccine_maintenance_info, text='   养护时间:', font=('Arial', 9)).place(x=80, y=180)
    tk.Label(vaccine_maintenance_info, text=' 冷藏室温度:', font=('Arial', 9)).place(x=80, y=210)
    tk.Label(vaccine_maintenance_info, text=' 冷冻室温度:', font=('Arial', 9)).place(x=80, y=240)
    tk.Label(vaccine_maintenance_info, text='设备运转情况:', font=('Arial', 9)).place(x=80, y=270)
    tk.Label(vaccine_maintenance_info, text='    是否报警:', font=('Arial', 9)).place(x=80, y=300)
    entry1 =

以上是关于项目实战-----Python编写疫苗信息管理系统的主要内容,如果未能解决你的问题,请参考以下文章

手把手教你用Python做web疫苗登记系统

用Python写了一个疫苗信息管理系统

基于Python的疫苗管理系统(附源码)

12.PGL图学习之项目实践(UniMP算法实现论文节点分类新冠疫苗项目实战,助力疫情)[系列九]

用Python写了一个疫苗信息管理系统

用Python写了一个疫苗信息管理系统