基于python+mysql超市信息管理系统(附完整源代码)

这篇具有很好参考价值的文章主要介绍了基于python+mysql超市信息管理系统(附完整源代码)。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

(参考的是这篇文章(5条消息) 数据库课程设计—超市零售信息管理系统(Python实现)_小桃在改bug的博客-CSDN博客_超市管理系统数据库设计但是这篇文章里没有完整的代码,所以我自己补全了ui界面和相关的代码,并进行了二创,框架也有改动,更主要的是写出来自己在编写过程中的一些错误,希望可以帮助排雷)

先放几张效果图

登录界面:

基于python的系统,数据库,课程设计,mysql,python

 文章来源地址https://www.toymoban.com/news/detail-778632.html

主界面:

基于python的系统,数据库,课程设计,mysql,python

 

添加信息界面:

 

 基于python的系统,数据库,课程设计,mysql,python

添加员工信息界面:

基于python的系统,数据库,课程设计,mysql,python

 

输入一个示例数据并添加:

 

基于python的系统,数据库,课程设计,mysql,python

首先进行需求分析,想要做的是一个商城的信息管理系统(是一个类似大型的超市),可以帮助管理进货、销售、人员、库存信息,那么就要有进货,售货,员工,仓库,安全问题等方面的考虑,根据上述分析出下面的框架(由于空间有限,这是部分的框架图)

基于python的系统,数据库,课程设计,mysql,python

 

 

根据上面的分析绘制ER图,由于每次绘制时图形数量的限制,E-R图分三部分,通过带颜色的连接两个ER图

基于python的系统,数据库,课程设计,mysql,python

基于python的系统,数据库,课程设计,mysql,python

基于python的系统,数据库,课程设计,mysql,python 根据上面的ER图进行逻辑结构设计消除依赖:

 

 

 

1.员工(员工编号,员工姓名,员工性别,员工年龄,员工工龄,员工电话,身份证号,工资,核酸情况);

2.商品(商品编号,商品名称,商品类别,商品单价,商品成本,供货商);

3.会员(会员卡卡号,会员姓名,电话,注册日期,累计金额,余额);

4.供货商(供货商编号,供货商名称,供货商电话,供货商地址);

5.仓库(仓库编号,仓库管理员编号,仓库名称,仓库地址);

6.退货信息(交易流水号,商品编号,退货数量,退款金额,退货日期);

7.销售(员工编号,商品编号,销售日期,销售数量,销售金额);

8.购买(会员卡卡号,商品编号,购买日期,购买数量);

9.供货(供货商编号,商品编号,供货日期,供货数量);

10.库存(仓库编号,商品编号,库存量);

11.安全问题(健康码,灭火器,自动灭火喷淋装置,检察人员编号);

形成如下表:

员工表Staff

属性名

含义

类型

说明

Snum

员工编号

varchar

主键

Sname

员工姓名

varchar

 

Ssex

员工性别

varchar

‘男’或‘女’

Sage

员工年龄

int

>=18

Sseniority

员工工龄

int

>=0

Sphone

员工电话

varchar

 

Sid

身份证号

varchar

 

Ssalary

工资

int

>=0

Syard

健康码

varchar

‘红码’‘绿码’‘黄码’

 

商品表Goods

属性名

含义

类型

说明

Gnum

商品编号

varchar

主键

Gname

商品名称

varchar

 

Gtype

商品类别

varchar

 

Gprice

商品售价

int

>=0

Gbid

商品进价

int

>=0

Gstock

库存量

int

>=0

Galarm

告警量

int

>=0

Gplan

计划库存量

int

>=0

Vnum

供货商编号

varchar

是表Vecdor的外键

 

会员表Member

属性名

含义

类型

说明

Mnum

会员卡号

varchar

主键

Mname

会员姓名

varchar

 

Mphone

会员电话

varchar

 

Mdate

注册日期

datetime

 

Mtotal

累计金额

int

>=0

Mbalance

卡内余额

int

>=0

Mpassword

会员密码

varchar

 

 

供货商Vendor

属性名

含义

类型

说明

Vnum

供货商编号

varchar

主键

Vname

供货商名称

varchar

 

Vphone

供货商电话

varchar

 

Vplace

供货商地址

varchar

 

仓库Ware

属性名

含义

类型

说明

Wnum

仓库编号

varchar

主键

Wname

仓库名称

varchar

 

Wplace

仓库地址

varchar

 

Snum

仓库管理员编号

varchar

是表Staff的外键

 

退货信息Infer

属性名

含义

类型

说明

Tnum

交易流水号

varchar

是表Trade的外键

Gnum

商品编号

varchar

是表Goods的外键

Iamount

退货数量

int

>=0

Imoney

退款金额

int

>=0

Idate

退货日期

datetime

 

 

商品交易表Trade

属性名

含义

类型

说明

Tnum

交易流水号

varchar

主键

Tdate

交易日期

datetime

 

Snum

员工编号

varchar

是表Staff的外键

Gnum

商品编号

varchar

是表Goods的外键

Tamount

交易数量

int

>=0

Tmoney

交易金额

int

>=0

Mnum

会员卡号

varchar

是表Member的外键

 

入库信息表Entry

属性名

含义

类型

说明

Enum

入库单编号

varchar

主键

Gnum

商品编号

varchar

是表Goods的外键

Eamount

入库量

int

>=0

Emoney

总金额

int

>=0

Vnum

供货商编号

varchar

是表Ventor的外键

Edate

入库日期

datetime

 

Snum

入库员编号

varchar

是表Staff的外键

 

出库信息表Exits

属性名

含义

类型

说明

Xnum

出库单编号

varchar

主键

Gnum

商品编号

varchar

是表Goods的外键

Xamount

出库量

int

>=0

Xmoney

总金额

int

>=0

Xdate

出库日期

datetime

 

Snum

出库员编号

varchar

是表Staff的外键

 

安全问题Check1

属性名

含义

类型

说明

Cdate

检查日期

date

主键

Cyard

顾客健康码

varchar

‘红码’‘绿码’‘黄码’

Cfire

灭火器

varchar

‘是’‘否’

Cspary

自动灭火喷洒装置

varchar

‘是’‘否’

下面附上我使用的版本python3.6+mysql8.0

1.需要手动在mysql 里创建一个数据库 sqlwork(什么名称都可以)

2.执行init.py进行初始化操作,也就是建表,插入初始数据,建立触发器,增加级联约束(之所以是这个顺序,是因为如果建表的时候就加入级联约束,外键约束就会导致插入数据失败)下面是init.py的代码

import pymysql


#数据库初始化
#创建表
connect = pymysql.connect(host="localhost", user="root",password="mysql", database="sqlwork")  # 建立连接
if connect:
    print("连接成功!")

cursor = connect.cursor()   # 创建一个游标对象,python里的sql语句都要通过cursor来执行
#创建表及其约束
cursor.execute("create table Staff(Snum  varchar(10) primary key,Sname varchar(20) not null,Ssex varchar(5) check(Ssex in('男','女')),Sage int not null check(Sage>=18),Sseniority int not null check(Sseniority>=0),Sphone varchar(20) not null,Sid varchar(25) not null,Ssalary int check(Ssalary>=0),Syard varchar(20) check(Syard in('红码','黄码','绿码')) )")
cursor.execute("create table Vendor(Vnum varchar(10) primary key,Vname varchar(10) not null,Vphone varchar(20) not null,Vpalce varchar(10) not null)")
#  on delete cascade
cursor.execute("create table Goods(Gnum varchar(10) primary key,Gname varchar(10) not null,Gtype varchar(10) not null,Gprice int check(Gprice>=0),Gbid int check(Gbid>=0),Gstock int check(Gstock>=0),Galarm int check(Galarm>=0), Gplan int check(Gplan>=0),Vnum varchar(10) not null)")
cursor.execute("create table Member(Mnum varchar(10) primary key,Mname varchar(10) not null,Mphone varchar(20) not null,Mdate datetime,Mtotal int check(Mtotal>=0),Mbalance int check(Mbalance>=0),Mpassword varchar(25) not null)")
# on delete set null
cursor.execute("create table Ware(Wnum varchar(10) primary key,Wname varchar(10) not null,Wplace varchar(10) not null,Snum varchar(10) not null)")
cursor.execute("create table Trade(Tnum varchar(10) primary key,Tdate datetime  not null,Snum varchar(10) not null,Gnum varchar(10) not null,Tamount int check(Tamount>=0),Tmoney int check(Tmoney>=0),Mnum varchar(10) not null)")
cursor.execute("create table Infer(Tnum varchar(10) not null,Gnum varchar(10) not null,Iamount int check(Iamount>=0),Imoney int check(Imoney>=0),Idate datetime not null)")
# on delete cascade
cursor.execute("create table Entry(Enum varchar(10) primary key,Gnum varchar(10) not null,Eamount int check(Eamount>=0),Emoney int check(Emoney>=0),Vnum varchar(10) not null,Edate datetime not null,Snum varchar(10) not null)")
cursor.execute("create table Exits(Xnum varchar(10) primary key,Gnum varchar(10) not null,Xamount int check(Xamount>=0),Xmoney int check(Xmoney>=0),Xdate datetime not null,Snum varchar(10) not null)")
cursor.execute("create table Check1(Cdate date primary key,Cyard varchar(10) check(Cyard in('红码','黄码','绿码')),Cfire varchar(10) check(Cfire in('是','否')),Cspary varchar(10) check(Cspary in('是','否')))")
connect.commit()  #提交
cursor.close()  # 关闭游标
connect.close()

#初始化数据(两条数据或一条数据,为了后续增加约束)
connect = pymysql.connect(host="localhost", user="root",password="mysql", database="sqlwork")  # 建立连接
cursor = connect.cursor()  # 创建一个游标对象,python里的sql语句都要通过cursor来执行
cursor.execute("insert into Goods values ('200001','薯片','零食',8,5,500,100,600,'100002')")
cursor.execute("insert into Goods values ('200002','可乐','饮料',3,2,1000,100,1200,'100001')")
cursor.execute("insert into Vendor values ('100001','可口','123456','杭州')")
cursor.execute("insert into Vendor values ('100002','乐事','135790','西安')")
cursor.execute("insert into Vendor values ('100003','牧场','246800','武汉')")
cursor.execute("insert into Staff values ('0001','张三','男',30,5,'139820117','411481320301',5000,'绿码')")
cursor.execute("insert into Staff values ('0002','熊大','女',32,3,'178883132','411481310302',3000,'绿码')")
cursor.execute("insert into Member values ('300001','迪迦','179320118',20220830194422,1050,300,'321336')")
cursor.execute("insert into Ware values('400001','一号','上海','0001')")
cursor.execute("insert into Check1 values(20220620,'绿码','是','是')")


connect.commit()  # 提交
cursor.close()
connect.close()

#创建触发器 满足顾客买商品的一个场景
connect = pymysql.connect(host="localhost", user="root",password="mysql", database="sqlwork")  # 建立连接
# 创建光标
cursor = connect.cursor()
#购买的商品数量要在库存里减去
cursor.execute("create trigger update_Goods before insert on Trade for each row update Goods set Gstock=Gstock-new.Tamount where Gnum=new.Gnum;")
#要在会员卡的总消费和余额里改变相应的数值
cursor.execute("create trigger update_Member before insert on Trade for each row update Member set Mtotal=Mtotal+new.Tmoney,Mbalance=Mbalance-new.Tmoney where Mnum=new.Mnum;")
connect.commit()
cursor.close()
connect.close()

connect = pymysql.connect(host="localhost", user="root",password="mysql", database="sqlwork")  # 建立连接
cursor = connect.cursor()

cursor.execute("alter table Goods add foreign key(Vnum) references Vendor(Vnum) on delete cascade")
cursor.execute("alter table Ware add foreign key(Snum) references Staff(Snum)")
cursor.execute("alter table Trade add foreign key(Snum) references Staff(Snum)")
cursor.execute("alter table Trade add foreign key(Gnum) references Goods(Gnum)")
cursor.execute("alter table Trade add foreign key(Mnum) references Member(Mnum)")
cursor.execute("alter table Infer add foreign key(Tnum) references Trade(Tnum)")
cursor.execute("alter table Infer add foreign key(Gnum) references Goods(Gnum)")
cursor.execute("alter table Entry add foreign key(Snum) references Staff(Snum)")
cursor.execute("alter table Entry add foreign key(Gnum) references Goods(Gnum)")
cursor.execute("alter table Entry add foreign key(Vnum) references Vendor(Vnum)")
cursor.execute("alter table Exits add foreign key(Snum) references Staff(Snum)")
cursor.execute("alter table Exits add foreign key(Gnum) references Goods(Gnum)")

connect.commit()
# 关闭数据库连接,防止泄露
connect.close()

3.接下来是主体部分(ui界面,sql查询)main.py代码如下(代码有1700行左右)

使用的是pymysql库实现数据库的连接以及相关sql语句执行操作

Tkinter库是用来实现ui界面,PIL库是用来放置图片背景使用

总体框架如下:

  1. 登录界面      login()
  2. 主界面(增删改查)    mainpage()
  3. 选择界面(对哪个表进行增删改查的界面,4个)    如all_add()
  4. 对某个表进行操作的界面(40个左右,因为有10个表,每个表几乎都要增删改查)    如Staff_add()
  5. 40个具体的sql语句执行的函数    如add_Staff()
import tkinter as tk
import tkinter.messagebox
from tkinter import *
import pymysql
from PIL import Image, ImageTk

#增删改查之后进去每个都可以对员工信息 商品信息 安全信息 仓库信息 供货信息 退货信息 会员信息进行操作


################################################################################################################


#数据库添加操作
def add_Goods():
    # 连接数据库
    connect = pymysql.connect(host="localhost", user="root",password="mysql", database="sqlwork")  # 建立连接
    # 创建光标
    cursor = connect.cursor()
    # 编写SQL语句
    sql = "insert into Goods(Gnum,Gname,Gtype,Gprice,Gbid,Gstock,Galarm,Gplan,Vnum) values(%s,%s,%s,%s,%s,%s,%s,%s,%s)"
    # 执行SQL语句,并且输出完成提示信息,否则回滚
    try:
        cursor.execute(sql,(g1.get(), g2.get(), g3.get(), g4.get(), g5.get(), g6.get(), g7.get(), g8.get(), g9.get()))
        connect.commit()
        tkinter.messagebox.showinfo("提示", "数据添加成功")
    except:
        connect.rollback()
    # 关闭数据库连接,防止泄露
    connect.close()
def add_Staff():
    # 连接数据库
    connect = pymysql.connect(host="localhost", user="root",password="mysql", database="sqlwork")  # 建立连接
    # 创建光标
    cursor = connect.cursor()
    # 编写SQL语句
    sql = "insert into Staff(Snum,Sname,Ssex,Sage,Sseniority,Sphone,Sid,Ssalary,Syard) values(%s,%s,%s,%s,%s,%s,%s,%s,%s)"
    # 执行SQL语句,并且输出完成提示信息,否则回滚
    try:
        cursor.execute(sql,(s1.get(), s2.get(), s3.get(), s4.get(), s5.get(), s6.get(), s7.get(), s8.get(), s9.get()))
        connect.commit()
        tkinter.messagebox.showinfo("提示", "数据添加成功")
    except:
        connect.rollback()
    # 关闭数据库连接,防止泄露
    connect.close()
def add_Check1():
    # 连接数据库
    connect = pymysql.connect(host="localhost", user="root", password="mysql", database="sqlwork")  # 建立连接
    # 创建光标
    cursor = connect.cursor()
    # 编写SQL语句
    sql = "insert into Check(Cdate,Cyard,Cfire,Cspary) values(%s,%s,%s,%s)"
    # 执行SQL语句,并且输出完成提示信息,否则回滚
    try:
        cursor.execute(sql, (c1.get(), c2.get(), c3.get(), c4.get()))
        connect.commit()
        tkinter.messagebox.showinfo("提示", "数据添加成功")
    except:
        connect.rollback()
    # 关闭数据库连接,防止泄露
    connect.close()
def add_Ware():
    # 连接数据库
    connect = pymysql.connect(host="localhost", user="root", password="mysql", database="sqlwork")  # 建立连接
    # 创建光标
    cursor = connect.cursor()
    # 编写SQL语句
    sql = "insert into Ware(Wnum,Wname,Wplace,Snum) values(%s,%s,%s,%s)"
    # 执行SQL语句,并且输出完成提示信息,否则回滚
    try:
        cursor.execute(sql, (w1.get(), w2.get(), w3.get(), w4.get()))
        connect.commit()
        tkinter.messagebox.showinfo("提示", "数据添加成功")
    except:
        connect.rollback()
    # 关闭数据库连接,防止泄露
    connect.close()
def add_Vendor():
    # 连接数据库
    connect = pymysql.connect(host="localhost", user="root", password="mysql", database="sqlwork")  # 建立连接
    # 创建光标
    cursor = connect.cursor()
    # 编写SQL语句
    sql = "insert into Vendor(Vnum,Vname,Vphone,Vplace) values(%s,%s,%s,%s)"
    # 执行SQL语句,并且输出完成提示信息,否则回滚
    try:
        cursor.execute(sql, (v1.get(), v2.get(), v3.get(), v4.get()))
        connect.commit()
        tkinter.messagebox.showinfo("提示", "数据添加成功")
    except:
        connect.rollback()
    # 关闭数据库连接,防止泄露
    connect.close()
def add_Infer():
    # 连接数据库
    connect = pymysql.connect(host="localhost", user="root", password="mysql", database="sqlwork")  # 建立连接
    # 创建光标
    cursor = connect.cursor()
    # 编写SQL语句
    sql = "insert into Infer(Tnum,Gnum,Iamount,Imoney,Idate) values(%s,%s,%s,%s,%s)"
    # 执行SQL语句,并且输出完成提示信息,否则回滚
    try:
        cursor.execute(sql, (i1.get(), i2.get(), i3.get(), i4.get(), i5.get()))
        connect.commit()
        tkinter.messagebox.showinfo("提示", "数据添加成功")
    except:
        connect.rollback()
    # 关闭数据库连接,防止泄露
    connect.close()
def add_Member():
    # 连接数据库
    connect = pymysql.connect(host="localhost", user="root", password="mysql", database="sqlwork")  # 建立连接
    # 创建光标
    cursor = connect.cursor()
    # 编写SQL语句
    sql = "insert into Member(Mnum,Mname,Mphone,Mdate,Mtotal,Mbalance,Mpassword) values(%s,%s,%s,%s,%s,%s,%s)"
    # 执行SQL语句,并且输出完成提示信息,否则回滚
    try:
        cursor.execute(sql, (m1.get(), m2.get(), m3.get(), m4.get(), m5.get(),m6.get(),m7.get()))
        connect.commit()
        tkinter.messagebox.showinfo("提示", "数据添加成功")
    except:
        connect.rollback()
    # 关闭数据库连接,防止泄露
    connect.close()
def add_Trade():
    # 连接数据库
    connect = pymysql.connect(host="localhost", user="root", password="mysql", database="sqlwork")  # 建立连接
    # 创建光标
    cursor = connect.cursor()
    # 编写SQL语句
    sql = "insert into Trade(Tnum,Tdate,Snum,Gnum,Tamount,Tmoney,Mnum) values(%s,%s,%s,%s,%s,%s,%s)"
    # 执行SQL语句,并且输出完成提示信息,否则回滚
    try:
        cursor.execute(sql, (t1.get(), t2.get(), t3.get(), t4.get(), t5.get(),t6.get(),t7.get()))
        connect.commit()
        tkinter.messagebox.showinfo("提示", "数据添加成功")
        sql = "select Gstock from Goods where Gnum=%s"
        cursor.execute(sql, (t4.get()))
        result1=cursor.fetchall()
        sql = "select Galarm from Goods where Gnum=%s"
        cursor.execute(sql, (t4.get()))
        result2 = cursor.fetchall()
        if(result1<result2):
            tkinter.messagebox.showinfo(title='提示', message='该商品较少,需要补货')
    except:
        connect.rollback()
    # 关闭数据库连接,防止泄露
    connect.close()
def add_Entry():
    # 连接数据库
    connect = pymysql.connect(host="localhost", user="root", password="mysql", database="sqlwork")  # 建立连接
    # 创建光标
    cursor = connect.cursor()
    # 编写SQL语句
    sql = "insert into Entry(Enum,Gnum,Eamount,Emoney,Vnum,Edate,Snum) values(%s,%s,%s,%s,%s,%s,%s)"
    # 执行SQL语句,并且输出完成提示信息,否则回滚
    try:
        cursor.execute(sql, (e1.get(), e2.get(), e3.get(), e4.get(), e5.get(),e6.get(),e7.get()))
        connect.commit()
        tkinter.messagebox.showinfo("提示", "数据添加成功")
    except:
        connect.rollback()
    # 关闭数据库连接,防止泄露
    connect.close()
def add_Exits():
    # 连接数据库
    connect = pymysql.connect(host="localhost", user="root", password="mysql", database="sqlwork")  # 建立连接
    # 创建光标
    cursor = connect.cursor()
    # 编写SQL语句
    sql = "insert into Exits(Xnum,Gnum,Xamount,Xmoney,Xdate,Snum) values(%s,%s,%s,%s,%s,%s)"
    # 执行SQL语句,并且输出完成提示信息,否则回滚
    try:
        cursor.execute(sql, (x1.get(), x2.get(), x3.get(), x4.get(), x5.get(),x6.get()))
        connect.commit()
        tkinter.messagebox.showinfo("提示", "数据添加成功")
    except:
        connect.rollback()
    # 关闭数据库连接,防止泄露
    connect.close()
########################################################################################################################
#数据库删除操作
def delete_Goods():
    connect = pymysql.connect(host="localhost", user="root",password="mysql", database="sqlwork")  # 建立连接
    cursor=connect.cursor()
    sql = "delete from Goods where Gnum=%s"
    try:
        cursor.execute(sql,(g10.get()))
        connect.commit()
        tkinter.messagebox.showinfo("提示","数据删除成功")
    except:
        connect.rollback()
    connect.close()
def delete_Staff():
    connect = pymysql.connect(host="localhost", user="root", password="mysql", database="sqlwork")  # 建立连接
    cursor = connect.cursor()
    sql = "delete from Staff where Snum=%s"
    try:
        cursor.execute(sql, (s10.get()))
        connect.commit()
        tkinter.messagebox.showinfo("提示", "数据删除成功")
    except:
        connect.rollback()
    connect.close()
def delete_Check1():
    connect = pymysql.connect(host="localhost", user="root", password="mysql", database="sqlwork")  # 建立连接
    cursor = connect.cursor()
    sql = "delete from Check where Cdate=%s"
    try:
        cursor.execute(sql, (c6.get()))
        connect.commit()
        tkinter.messagebox.showinfo("提示", "数据删除成功")
    except:
        connect.rollback()
    connect.close()
def delete_Ware():
    connect = pymysql.connect(host="localhost", user="root", password="mysql", database="sqlwork")  # 建立连接
    cursor = connect.cursor()
    sql = "delete from Ware where Wnum=%s"
    try:
        cursor.execute(sql, (w5.get()))
        connect.commit()
        tkinter.messagebox.showinfo("提示", "数据删除成功")
    except:
        connect.rollback()
    connect.close()
def delete_Vendor():
    connect = pymysql.connect(host="localhost", user="root", password="mysql", database="sqlwork")  # 建立连接
    cursor = connect.cursor()
    sql = "delete from Vendor where Vnum=%s"
    try:
        cursor.execute(sql, (v5.get()))
        connect.commit()
        tkinter.messagebox.showinfo("提示", "数据删除成功")
    except:
        connect.rollback()
    connect.close()
def delete_Infer():
    connect = pymysql.connect(host="localhost", user="root", password="mysql", database="sqlwork")  # 建立连接
    cursor = connect.cursor()
    sql = "delete from Infer where Tnum=%s"
    try:
        cursor.execute(sql, (i6.get()))
        connect.commit()
        tkinter.messagebox.showinfo("提示", "数据删除成功")
    except:
        connect.rollback()
    connect.close()
def delete_Member():
    connect = pymysql.connect(host="localhost", user="root", password="mysql", database="sqlwork")  # 建立连接
    cursor = connect.cursor()
    sql = "delete from Member where Mnum=%s"
    try:
        cursor.execute(sql, (m8.get()))
        connect.commit()
        tkinter.messagebox.showinfo("提示", "数据删除成功")
    except:
        connect.rollback()
    connect.close()
def delete_Trade():
    connect = pymysql.connect(host="localhost", user="root", password="mysql", database="sqlwork")  # 建立连接
    cursor = connect.cursor()
    sql = "delete from Trade where Tnum=%s"
    try:
        cursor.execute(sql, (t8.get()))
        connect.commit()
        tkinter.messagebox.showinfo("提示", "数据删除成功")
    except:
        connect.rollback()
    connect.close()
def delete_Entry():
    connect = pymysql.connect(host="localhost", user="root", password="mysql", database="sqlwork")  # 建立连接
    cursor = connect.cursor()
    sql = "delete from Entry where Enum=%s"
    try:
        cursor.execute(sql, (e8.get()))
        connect.commit()
        tkinter.messagebox.showinfo("提示", "数据删除成功")
    except:
        connect.rollback()
    connect.close()
def delete_Exits():
    connect = pymysql.connect(host="localhost", user="root", password="mysql", database="sqlwork")  # 建立连接
    cursor = connect.cursor()
    sql = "delete from Exits where Xnum=%s"
    try:
        cursor.execute(sql, (x7.get()))
        connect.commit()
        tkinter.messagebox.showinfo("提示", "数据删除成功")
    except:
        connect.rollback()
    connect.close()
#################################################################################################################################
#数据库更新操作
def update_Goods():
    connect = pymysql.connect(host="localhost", user="root",password="mysql", database="sqlwork")  # 建立连接
    cursor = connect.cursor()
    sql="update Goods set Gbid=%s,Gprice=%s where Gnum=%s"
    try:
        cursor.execute(sql,(g11.get(),g12.get(),g13.get()))
        connect.commit()
        tkinter.messagebox.showinfo("提示","数据更新成功!")
    except:
        connect.rollback()
    connect.close()
def update_Staff():
    connect = pymysql.connect(host="localhost", user="root", password="mysql", database="sqlwork")  # 建立连接
    cursor = connect.cursor()
    sql = "update Staff set Sphone=%s,Ssalary=%s where Snum=%s"
    try:
        cursor.execute(sql, (s11.get(), s12.get(), s13.get()))
        connect.commit()
        tkinter.messagebox.showinfo("提示", "数据更新成功!")
    except:
        connect.rollback()
    connect.close()
def update_Ware():
    connect = pymysql.connect(host="localhost", user="root", password="mysql", database="sqlwork")  # 建立连接
    cursor = connect.cursor()
    sql = "update Ware set Wname=%s,Snum=%s where Wnum=%s"
    try:
        cursor.execute(sql, (w6.get(), w7.get(), w8.get()))
        connect.commit()
        tkinter.messagebox.showinfo("提示", "数据更新成功!")
    except:
        connect.rollback()
    connect.close()
def update_Vendor():
    connect = pymysql.connect(host="localhost", user="root", password="mysql", database="sqlwork")  # 建立连接
    cursor = connect.cursor()
    sql = "update Vendor set Vphone=%s,Vplace=%s where Vnum=%s"
    try:
        cursor.execute(sql, (v6.get(), v7.get(), v8.get()))
        connect.commit()
        tkinter.messagebox.showinfo("提示", "数据更新成功!")
    except:
        connect.rollback()
    connect.close()
def update_Infer():
    connect = pymysql.connect(host="localhost", user="root", password="mysql", database="sqlwork")  # 建立连接
    cursor = connect.cursor()
    sql = "update Infer set Iamount=%s,Imoney=%s where Tnum=%s"
    try:
        cursor.execute(sql, (i7.get(), i8.get(), i9.get()))
        connect.commit()
        tkinter.messagebox.showinfo("提示", "数据更新成功!")
    except:
        connect.rollback()
    connect.close()
def update_Member():
    connect = pymysql.connect(host="localhost", user="root", password="mysql", database="sqlwork")  # 建立连接
    cursor = connect.cursor()
    sql = "update Member set Mphone=%s,Mpassword=%s where Mnum=%s"
    try:
        cursor.execute(sql, (m9.get(), m10.get(), m11.get()))
        connect.commit()
        tkinter.messagebox.showinfo("提示", "数据更新成功!")
    except:
        connect.rollback()
    connect.close()
def update_Trade():
    connect = pymysql.connect(host="localhost", user="root", password="mysql", database="sqlwork")  # 建立连接
    cursor = connect.cursor()
    sql = "update Trade set Tmoney=%s,Tamount=%s where Tnum=%s"
    try:
        cursor.execute(sql, (t9.get(), t10.get(), t11.get()))
        connect.commit()
        tkinter.messagebox.showinfo("提示", "数据更新成功!")
    except:
        connect.rollback()
    connect.close()
def update_Entry():
    connect = pymysql.connect(host="localhost", user="root", password="mysql", database="sqlwork")  # 建立连接
    cursor = connect.cursor()
    sql = "update Entry set Emoney=%s,Eamount=%s where Enum=%s"
    try:
        cursor.execute(sql, (e9.get(), e10.get(), e11.get()))
        connect.commit()
        tkinter.messagebox.showinfo("提示", "数据更新成功!")
    except:
        connect.rollback()
    connect.close()
def update_Exits():
    connect = pymysql.connect(host="localhost", user="root", password="mysql", database="sqlwork")  # 建立连接
    cursor = connect.cursor()
    sql = "update Exits set Xmoney=%s,Xamount=%s where Xnum=%s"
    try:
        cursor.execute(sql, (x8.get(), x9.get(), x10.get()))
        connect.commit()
        tkinter.messagebox.showinfo("提示", "数据更新成功!")
    except:
        connect.rollback()
    connect.close()
################################################################################################################################
#数据库条件查询
def select_Goods():
    connect = pymysql.connect(host="localhost", user="root",password="mysql", database="sqlwork")  # 建立连接
    cursor = connect.cursor()
    sql = "select * from Goods where Gnum=%s"
    try:
        cursor.execute(sql,(g14.get()))
        results = cursor.fetchall()
        tkinter.messagebox.showinfo(title='output',message=results)
    except:
        return
    connect.close()
def select_Staff():
    connect = pymysql.connect(host="localhost", user="root", password="mysql", database="sqlwork")  # 建立连接
    cursor = connect.cursor()
    sql = "select * from Staff where Snum=%s"
    try:
        cursor.execute(sql, (s14.get()))
        results = cursor.fetchall()
        tkinter.messagebox.showinfo(title='output', message=results)
    except:
        return
    connect.close()
def select_Check1():
    connect = pymysql.connect(host="localhost", user="root", password="mysql", database="sqlwork")  # 建立连接
    cursor = connect.cursor()
    sql = "select * from Check where Cdate=%s"
    try:
        cursor.execute(sql, (c7.get()))
        results = cursor.fetchall()
        tkinter.messagebox.showinfo(title='output', message=results)
    except:
        return
    connect.close()
def select_Ware():
    connect = pymysql.connect(host="localhost", user="root", password="mysql", database="sqlwork")  # 建立连接
    cursor = connect.cursor()
    sql = "select * from Ware where Wnum=%s"
    try:
        cursor.execute(sql, (w9.get()))
        results = cursor.fetchall()
        tkinter.messagebox.showinfo(title='output', message=results)
    except:
        return
    connect.close()
def select_Vendor():
    connect = pymysql.connect(host="localhost", user="root", password="mysql", database="sqlwork")  # 建立连接
    cursor = connect.cursor()
    sql = "select * from Vendor where Vnum=%s"
    try:
        cursor.execute(sql, (v9.get()))
        results = cursor.fetchall()
        tkinter.messagebox.showinfo(title='output', message=results)
    except:
        return
    connect.close()
def select_Infer():
    connect = pymysql.connect(host="localhost", user="root", password="mysql", database="sqlwork")  # 建立连接
    cursor = connect.cursor()
    sql = "select * from Infer where Tnum=%s"
    try:
        cursor.execute(sql, (i10.get()))
        results = cursor.fetchall()
        tkinter.messagebox.showinfo(title='output', message=results)
    except:
        return
    connect.close()
def select_Member():
    connect = pymysql.connect(host="localhost", user="root", password="mysql", database="sqlwork")  # 建立连接
    cursor = connect.cursor()
    sql = "select * from Member where Mnum=%s"
    try:
        cursor.execute(sql, (m12.get()))
        results = cursor.fetchall()
        tkinter.messagebox.showinfo(title='output', message=results)
    except:
        return
    connect.close()
def select_Trade():
    connect = pymysql.connect(host="localhost", user="root", password="mysql", database="sqlwork")  # 建立连接
    cursor = connect.cursor()
    sql = "select * from Trade where Tnum=%s"
    try:
        cursor.execute(sql, (t12.get()))
        results = cursor.fetchall()
        tkinter.messagebox.showinfo(title='output', message=results)
    except:
        return
    connect.close()
def select_Entry():
    connect = pymysql.connect(host="localhost", user="root", password="mysql", database="sqlwork")  # 建立连接
    cursor = connect.cursor()
    sql = "select * from Entry where Enum=%s"
    try:
        cursor.execute(sql, (e12.get()))
        results = cursor.fetchall()
        tkinter.messagebox.showinfo(title='output', message=results)
    except:
        return
    connect.close()
def select_Exits():
    connect = pymysql.connect(host="localhost", user="root", password="mysql", database="sqlwork")  # 建立连接
    cursor = connect.cursor()
    sql = "select * from Exits where Xnum=%s"
    try:
        cursor.execute(sql, (x11.get()))
        results = cursor.fetchall()
        tkinter.messagebox.showinfo(title='output', message=results)
    except:
        return
    connect.close()


######################################################################################################


#添加商品界面
def Goods_add():
    window_choice.destroy()
    #构建全集变量,方便上面的函数调用
    global window_function
    global g1,g2,g3,g4,g5,g6,g7,g8,g9
    #生成窗口
    window_function=tk.Tk()
    #窗口标题
    window_function.title("商城信息管理系统")
    #窗口大小
    window_function.geometry('400x700')


    #生成标签
    tk.Label(window_function, text="添加新商品", font=("黑体", 20)).grid(row=0,column=1,pady=10)
    tk.Label(window_function, text="请输入商品编号:").grid(row=1, column=0, padx=20, pady=20)
    tk.Label(window_function,text="请输入商品名称:").grid(row = 2,column =0,padx=20,pady=20)
    tk.Label(window_function,text="请输入商品类别:").grid(row = 3,column =0,padx=20,pady=20)
    tk.Label(window_function,text="请输入商品售价:").grid(row = 4,column =0,padx=20,pady=20)
    tk.Label(window_function, text="请输入商品成本:").grid(row=5, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入库存量:").grid(row=6, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入告警量:").grid(row=7, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入计划库存量:").grid(row=8, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入供货商编号:").grid(row=9, column=0, padx=20, pady=20)
    #定义变量记录输入信息
    g1 = tk.StringVar()
    g2 = tk.StringVar()
    g3 = tk.StringVar()
    g4 = tk.StringVar()
    g5 = tk.StringVar()
    g6 = tk.StringVar()
    g7 = tk.StringVar()
    g8 = tk.StringVar()
    g9 = tk.StringVar()
    #生成输入框
    entry1 = tk.Entry(window_function,show=None,textvariable=g1).grid(row = 1,column =1)
    entry2 = tk.Entry(window_function,show=None,textvariable=g2).grid(row = 2,column =1)
    entry3 = tk.Entry(window_function,show=None,textvariable=g3).grid(row = 3,column =1)
    entry4 = tk.Entry(window_function, show=None, textvariable=g4).grid(row=4, column=1)
    entry5 = tk.Entry(window_function, show=None, textvariable=g5).grid(row=5, column=1)
    entry6 = tk.Entry(window_function, show=None, textvariable=g6).grid(row=6, column=1)
    entry7 = tk.Entry(window_function, show=None, textvariable=g7).grid(row=7, column=1)
    entry8 = tk.Entry(window_function, show=None, textvariable=g8).grid(row=8, column=1)
    entry9 = tk.Entry(window_function, show=None, textvariable=g9).grid(row=9, column=1)
    #生成按钮
    button = tk.Button(window_function, text="添加", command=add_Goods).place(relx=0.3,rely=0.9)

    button2 = tk.Button(window_function, text="返回", command=change_add).place(relx=0.5,rely=0.9)


    #显示窗口
    window_function.mainloop()

#添加员工界面
def Staff_add():
    window_choice.destroy()
    # 构建全集变量,方便上面的函数调用
    global window_function
    global s1, s2, s3, s4, s5, s6, s7, s8, s9
    # 生成窗口
    window_function = tk.Tk()
    # 窗口标题
    window_function.title("商城信息管理系统")
    # 窗口大小
    window_function.geometry('400x700')

    # 生成标签
    tk.Label(window_function, text="添加新员工", font=("黑体", 20)).grid(row=0, column=1, pady=10)
    tk.Label(window_function, text="请输入员工编号:").grid(row=1, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入员工姓名:").grid(row=2, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入员工性别:").grid(row=3, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入员工年龄:").grid(row=4, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入员工工龄:").grid(row=5, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入员工电话:").grid(row=6, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入身份证号:").grid(row=7, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入员工工资:").grid(row=8, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入健康码情况:").grid(row=9, column=0, padx=20, pady=20)
    # 定义变量记录输入信息
    s1 = tk.StringVar()
    s2 = tk.StringVar()
    s3 = tk.StringVar()
    s4 = tk.StringVar()
    s5 = tk.StringVar()
    s6 = tk.StringVar()
    s7 = tk.StringVar()
    s8 = tk.StringVar()
    s9 = tk.StringVar()
    # 生成输入框
    entry1 = tk.Entry(window_function, show=None, textvariable=s1).grid(row=1, column=1)
    entry2 = tk.Entry(window_function, show=None, textvariable=s2).grid(row=2, column=1)
    entry3 = tk.Entry(window_function, show=None, textvariable=s3).grid(row=3, column=1)
    entry4 = tk.Entry(window_function, show=None, textvariable=s4).grid(row=4, column=1)
    entry5 = tk.Entry(window_function, show=None, textvariable=s5).grid(row=5, column=1)
    entry6 = tk.Entry(window_function, show=None, textvariable=s6).grid(row=6, column=1)
    entry7 = tk.Entry(window_function, show=None, textvariable=s7).grid(row=7, column=1)
    entry8 = tk.Entry(window_function, show=None, textvariable=s8).grid(row=8, column=1)
    entry9 = tk.Entry(window_function, show=None, textvariable=s9).grid(row=9, column=1)
    # 生成按钮
    button = tk.Button(window_function, text="添加", command=add_Staff).place(relx=0.3, rely=0.9)
    button2 = tk.Button(window_function, text="返回", command=change_add).place(relx=0.5, rely=0.9)
    # 显示窗口
    window_function.mainloop()

#添加安全问题界面
def Check1_add():
    window_choice.destroy()
    # 构建全集变量,方便上面的函数调用
    global window_function
    global c1, c2, c3, c4
    # 生成窗口
    window_function = tk.Tk()
    # 窗口标题
    window_function.title("商城信息管理系统")
    # 窗口大小
    window_function.geometry('400x700')

    # 生成标签
    tk.Label(window_function, text="添加安全问题检查情况", font=("黑体", 20)).grid(row=0, column=0, pady=10)
    tk.Label(window_function, text="请输入检查日期:").grid(row=1, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入顾客健康码情况:").grid(row=2, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入灭火器情况:").grid(row=3, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入灭火喷洒装置情况:").grid(row=4, column=0, padx=20, pady=20)

    # 定义变量记录输入信息
    c1 = tk.StringVar()
    c2 = tk.StringVar()
    c3 = tk.StringVar()
    c4 = tk.StringVar()

    # 生成输入框
    entry1 = tk.Entry(window_function, show=None, textvariable=c1).grid(row=1, column=1)
    entry2 = tk.Entry(window_function, show=None, textvariable=c2).grid(row=2, column=1)
    entry3 = tk.Entry(window_function, show=None, textvariable=c3).grid(row=3, column=1)
    entry4 = tk.Entry(window_function, show=None, textvariable=c4).grid(row=4, column=1)

    # 生成按钮
    button = tk.Button(window_function, text="添加", command=add_Check1).place(relx=0.3, rely=0.9)

    button2 = tk.Button(window_function, text="返回", command=change_add).place(relx=0.5, rely=0.9)

    # 显示窗口
    window_function.mainloop()
#添加仓库界面
def Ware_add():
    window_choice.destroy()
    # 构建全集变量,方便上面的函数调用
    global window_function
    global w1, w2, w3, w4
    # 生成窗口
    window_function = tk.Tk()
    # 窗口标题
    window_function.title("商城信息管理系统")
    # 窗口大小
    window_function.geometry('400x700')

    # 生成标签
    tk.Label(window_function, text="添加仓库信息", font=("黑体", 20)).grid(row=0, column=1, pady=10)
    tk.Label(window_function, text="请输入仓库编号:").grid(row=1, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入仓库名称:").grid(row=2, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入仓库地址:").grid(row=3, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入仓库管理员编号:").grid(row=4, column=0, padx=20, pady=20)

    # 定义变量记录输入信息
    w1 = tk.StringVar()
    w2 = tk.StringVar()
    w3 = tk.StringVar()
    w4 = tk.StringVar()

    # 生成输入框
    entry1 = tk.Entry(window_function, show=None, textvariable=w1).grid(row=1, column=1)
    entry2 = tk.Entry(window_function, show=None, textvariable=w2).grid(row=2, column=1)
    entry3 = tk.Entry(window_function, show=None, textvariable=w3).grid(row=3, column=1)
    entry4 = tk.Entry(window_function, show=None, textvariable=w4).grid(row=4, column=1)

    # 生成按钮
    button = tk.Button(window_function, text="添加", command=add_Ware).place(relx=0.3, rely=0.9)

    button2 = tk.Button(window_function, text="返回", command=change_add).place(relx=0.5, rely=0.9)

    # 显示窗口
    window_function.mainloop()

#添加供货商界面
def Vendor_add():
    window_choice.destroy()
    # 构建全集变量,方便上面的函数调用
    global window_function
    global v1, v2, v3, v4
    # 生成窗口
    window_function = tk.Tk()
    # 窗口标题
    window_function.title("商城信息管理系统")
    # 窗口大小
    window_function.geometry('400x700')

    # 生成标签
    tk.Label(window_function, text="添加供货商信息", font=("黑体", 20)).grid(row=0, column=1, pady=10)
    tk.Label(window_function, text="请输入供货商编号:").grid(row=1, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入供货商名称:").grid(row=2, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入供货商电话:").grid(row=3, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入供货商地址:").grid(row=4, column=0, padx=20, pady=20)

    # 定义变量记录输入信息
    v1 = tk.StringVar()
    v2 = tk.StringVar()
    v3 = tk.StringVar()
    v4 = tk.StringVar()

    # 生成输入框
    entry1 = tk.Entry(window_function, show=None, textvariable=v1).grid(row=1, column=1)
    entry2 = tk.Entry(window_function, show=None, textvariable=v2).grid(row=2, column=1)
    entry3 = tk.Entry(window_function, show=None, textvariable=v3).grid(row=3, column=1)
    entry4 = tk.Entry(window_function, show=None, textvariable=v4).grid(row=4, column=1)

    # 生成按钮
    button = tk.Button(window_function, text="添加", command=add_Vendor).place(relx=0.3, rely=0.9)

    button2 = tk.Button(window_function, text="返回", command=change_add).place(relx=0.5, rely=0.9)

    # 显示窗口
    window_function.mainloop()

#添加退货信息界面
def Infer_add():
    window_choice.destroy()
    # 构建全集变量,方便上面的函数调用
    global window_function
    global i1, i2, i3, i4,i5
    # 生成窗口
    window_function = tk.Tk()
    # 窗口标题
    window_function.title("商城信息管理系统")
    # 窗口大小
    window_function.geometry('400x700')

    # 生成标签
    tk.Label(window_function, text="添加退货信息", font=("黑体", 20)).grid(row=0, column=1, pady=10)
    tk.Label(window_function, text="请输入交易流水号:").grid(row=1, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入商品编号:").grid(row=2, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入退货数量:").grid(row=3, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入退款金额:").grid(row=4, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入退货日期:").grid(row=5, column=0, padx=20, pady=20)

    # 定义变量记录输入信息
    i1 = tk.StringVar()
    i2 = tk.StringVar()
    i3 = tk.StringVar()
    i4 = tk.StringVar()
    i5 = tk.StringVar()

    # 生成输入框
    entry1 = tk.Entry(window_function, show=None, textvariable=i1).grid(row=1, column=1)
    entry2 = tk.Entry(window_function, show=None, textvariable=i2).grid(row=2, column=1)
    entry3 = tk.Entry(window_function, show=None, textvariable=i3).grid(row=3, column=1)
    entry4 = tk.Entry(window_function, show=None, textvariable=i4).grid(row=4, column=1)
    entry5 = tk.Entry(window_function, show=None, textvariable=i5).grid(row=5, column=1)

    # 生成按钮
    button = tk.Button(window_function, text="添加", command=add_Infer).place(relx=0.3, rely=0.9)

    button2 = tk.Button(window_function, text="返回", command=change_add).place(relx=0.5, rely=0.9)

    # 显示窗口
    window_function.mainloop()

#添加会员表界面
def Member_add():
    window_choice.destroy()
    # 构建全集变量,方便上面的函数调用
    global window_function
    global m1, m2, m3, m4, m5, m6, m7
    # 生成窗口
    window_function = tk.Tk()
    # 窗口标题
    window_function.title("商城信息管理系统")
    # 窗口大小
    window_function.geometry('400x700')

    # 生成标签
    tk.Label(window_function, text="添加新会员", font=("黑体", 20)).grid(row=0, column=1, pady=10)
    tk.Label(window_function, text="请输入会员卡号:").grid(row=1, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入会员姓名:").grid(row=2, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入会员电话:").grid(row=3, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入注册日期:").grid(row=4, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入累计金额:").grid(row=5, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入卡内余额:").grid(row=6, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入会员密码:").grid(row=7, column=0, padx=20, pady=20)

    # 定义变量记录输入信息
    m1 = tk.StringVar()
    m2 = tk.StringVar()
    m3 = tk.StringVar()
    m4 = tk.StringVar()
    m5 = tk.StringVar()
    m6 = tk.StringVar()
    m7 = tk.StringVar()

    # 生成输入框
    entry1 = tk.Entry(window_function, show=None, textvariable=m1).grid(row=1, column=1)
    entry2 = tk.Entry(window_function, show=None, textvariable=m2).grid(row=2, column=1)
    entry3 = tk.Entry(window_function, show=None, textvariable=m3).grid(row=3, column=1)
    entry4 = tk.Entry(window_function, show=None, textvariable=m4).grid(row=4, column=1)
    entry5 = tk.Entry(window_function, show=None, textvariable=m5).grid(row=5, column=1)
    entry6 = tk.Entry(window_function, show=None, textvariable=m6).grid(row=6, column=1)
    entry7 = tk.Entry(window_function, show=None, textvariable=m7).grid(row=7, column=1)

    # 生成按钮
    button = tk.Button(window_function, text="添加", command=add_Member).place(relx=0.3, rely=0.9)

    button2 = tk.Button(window_function, text="返回", command=change_add).place(relx=0.5, rely=0.9)

    # 显示窗口
    window_function.mainloop()

#添加商品交易界面
def Trade_add():
    window_choice.destroy()
    # 构建全集变量,方便上面的函数调用
    global window_function
    global t1, t2, t3, t4, t5, t6, t7
    # 生成窗口
    window_function = tk.Tk()
    # 窗口标题
    window_function.title("商城信息管理系统")
    # 窗口大小
    window_function.geometry('400x700')

    # 生成标签
    tk.Label(window_function, text="添加商品交易信息", font=("黑体", 20)).grid(row=0, column=1, pady=10)
    tk.Label(window_function, text="请输入交易流水号:").grid(row=1, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入交易日期:").grid(row=2, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入员工编号:").grid(row=3, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入商品编号:").grid(row=4, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入交易数量:").grid(row=5, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入交易金额:").grid(row=6, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入会员卡号:").grid(row=7, column=0, padx=20, pady=20)

    # 定义变量记录输入信息
    t1 = tk.StringVar()
    t2 = tk.StringVar()
    t3 = tk.StringVar()
    t4 = tk.StringVar()
    t5 = tk.StringVar()
    t6 = tk.StringVar()
    t7 = tk.StringVar()

    # 生成输入框
    entry1 = tk.Entry(window_function, show=None, textvariable=t1).grid(row=1, column=1)
    entry2 = tk.Entry(window_function, show=None, textvariable=t2).grid(row=2, column=1)
    entry3 = tk.Entry(window_function, show=None, textvariable=t3).grid(row=3, column=1)
    entry4 = tk.Entry(window_function, show=None, textvariable=t4).grid(row=4, column=1)
    entry5 = tk.Entry(window_function, show=None, textvariable=t5).grid(row=5, column=1)
    entry6 = tk.Entry(window_function, show=None, textvariable=t6).grid(row=6, column=1)
    entry7 = tk.Entry(window_function, show=None, textvariable=t7).grid(row=7, column=1)

    # 生成按钮
    button = tk.Button(window_function, text="添加", command=add_Trade).place(relx=0.3, rely=0.9)

    button2 = tk.Button(window_function, text="返回", command=change_add).place(relx=0.5, rely=0.9)

    # 显示窗口
    window_function.mainloop()

#添加入库信息界面
def Entry_add():
    window_choice.destroy()
    # 构建全集变量,方便上面的函数调用
    global window_function
    global e1, e2, e3, e4, e5, e6, e7
    # 生成窗口
    window_function = tk.Tk()
    # 窗口标题
    window_function.title("商城信息管理系统")
    # 窗口大小
    window_function.geometry('400x700')

    # 生成标签
    tk.Label(window_function, text="添加入库信息", font=("黑体", 20)).grid(row=0, column=1, pady=10)
    tk.Label(window_function, text="请输入入库单编号:").grid(row=1, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入商品编号:").grid(row=2, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入入库量:").grid(row=3, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入总金额:").grid(row=4, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入供货商编号:").grid(row=5, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入入库日期:").grid(row=6, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入入库员编号:").grid(row=7, column=0, padx=20, pady=20)

    # 定义变量记录输入信息
    e1 = tk.StringVar()
    e2 = tk.StringVar()
    e3 = tk.StringVar()
    e4 = tk.StringVar()
    e5 = tk.StringVar()
    e6 = tk.StringVar()
    e7 = tk.StringVar()

    # 生成输入框
    entry1 = tk.Entry(window_function, show=None, textvariable=e1).grid(row=1, column=1)
    entry2 = tk.Entry(window_function, show=None, textvariable=e2).grid(row=2, column=1)
    entry3 = tk.Entry(window_function, show=None, textvariable=e3).grid(row=3, column=1)
    entry4 = tk.Entry(window_function, show=None, textvariable=e4).grid(row=4, column=1)
    entry5 = tk.Entry(window_function, show=None, textvariable=e5).grid(row=5, column=1)
    entry6 = tk.Entry(window_function, show=None, textvariable=e6).grid(row=6, column=1)
    entry7 = tk.Entry(window_function, show=None, textvariable=e7).grid(row=7, column=1)

    # 生成按钮
    button = tk.Button(window_function, text="添加", command=add_Entry).place(relx=0.3, rely=0.9)

    button2 = tk.Button(window_function, text="返回", command=change_add).place(relx=0.5, rely=0.9)

    # 显示窗口
    window_function.mainloop()

#添加出库信息界面
def Exits_add():
    window_choice.destroy()
    # 构建全集变量,方便上面的函数调用
    global window_function
    global x1, x2, x3, x4, x5, x6
    # 生成窗口
    window_function = tk.Tk()
    # 窗口标题
    window_function.title("商城信息管理系统")
    # 窗口大小
    window_function.geometry('400x700')

    # 生成标签
    tk.Label(window_function, text="添加出库信息", font=("黑体", 20)).grid(row=0, column=1, pady=10)
    tk.Label(window_function, text="请输入出库单编号:").grid(row=1, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入商品编号:").grid(row=2, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入出库量:").grid(row=3, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入总金额:").grid(row=4, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入出库日期:").grid(row=5, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入出库员编号:").grid(row=6, column=0, padx=20, pady=20)

    # 定义变量记录输入信息
    x1 = tk.StringVar()
    x2 = tk.StringVar()
    x3 = tk.StringVar()
    x4 = tk.StringVar()
    x5 = tk.StringVar()
    x6 = tk.StringVar()

    # 生成输入框
    entry1 = tk.Entry(window_function, show=None, textvariable=x1).grid(row=1, column=1)
    entry2 = tk.Entry(window_function, show=None, textvariable=x2).grid(row=2, column=1)
    entry3 = tk.Entry(window_function, show=None, textvariable=x3).grid(row=3, column=1)
    entry4 = tk.Entry(window_function, show=None, textvariable=x4).grid(row=4, column=1)
    entry5 = tk.Entry(window_function, show=None, textvariable=x5).grid(row=5, column=1)
    entry6 = tk.Entry(window_function, show=None, textvariable=x6).grid(row=6, column=1)

    # 生成按钮
    button = tk.Button(window_function, text="添加", command=add_Exits).place(relx=0.3, rely=0.9)

    button2 = tk.Button(window_function, text="返回", command=change_add).place(relx=0.5, rely=0.9)

    # 显示窗口
    window_function.mainloop()

############################################################################################

#删除商品界面
def Goods_delete():
    window_choice.destroy()
    global window_function
    global g10
    window_function=tk.Tk()
    window_function.title("商城信息管理系统")
    window_function.geometry('500x400')
    tk.Label(window_function, text="删除商品", font=("黑体", 20)).grid(row=0,column=1,pady=20)
    tk.Label(window_function,text="请输入商品编号:").grid(row = 1,column =0,padx=20)
    g10 =tk.StringVar()
    entry1=tk.Entry(window_function,show=None,textvariable=g10).grid(row = 1,column =1,pady=40)
    button = tk.Button(window_function, text="删除", command=delete_Goods,anchor = 's').place(relx=0.2,rely=0.5)
    button2 = tk.Button(window_function, text="返回", command=change_delete).place(relx=0.4,rely=0.5)
    window_function.mainloop()


# 删除员工界面
def Staff_delete():
    window_choice.destroy()
    global window_function
    global s10
    window_function = tk.Tk()
    window_function.title("商城信息管理系统")
    window_function.geometry('500x400')
    tk.Label(window_function, text="删除员工", font=("黑体", 20)).grid(row=0, column=1, pady=20)
    tk.Label(window_function, text="请输入员工编号:").grid(row=1, column=0, padx=20)
    s10 = tk.StringVar()
    entry1 = tk.Entry(window_function, show=None, textvariable=s10).grid(row=1, column=1, pady=40)
    button = tk.Button(window_function, text="删除", command=delete_Staff, anchor='s').place(relx=0.2, rely=0.5)
    button2 = tk.Button(window_function, text="返回", command=change_delete).place(relx=0.4, rely=0.5)
    window_function.mainloop()


# 删除安全问题界面
def Check1_delete():
    window_choice.destroy()
    global window_function
    global c6
    window_function = tk.Tk()
    window_function.title("商城信息管理系统")
    window_function.geometry('500x400')
    tk.Label(window_function, text="删除检查安全记录", font=("黑体", 20)).grid(row=0, column=1, pady=20)
    tk.Label(window_function, text="请输入检查日期:").grid(row=1, column=0, padx=20)
    c6 = tk.StringVar()
    entry1 = tk.Entry(window_function, show=None, textvariable=c6).grid(row=1, column=1, pady=40)
    button = tk.Button(window_function, text="删除", command=delete_Check1, anchor='s').place(relx=0.2, rely=0.5)
    button2 = tk.Button(window_function, text="返回", command=change_delete).place(relx=0.4, rely=0.5)
    window_function.mainloop()

# 删除仓库界面
def Ware_delete():
    window_choice.destroy()
    global window_function
    global w5
    window_function = tk.Tk()
    window_function.title("商城信息管理系统")
    window_function.geometry('500x400')
    tk.Label(window_function, text="删除仓库", font=("黑体", 20)).grid(row=0, column=1, pady=20)
    tk.Label(window_function, text="请输入仓库编号:").grid(row=1, column=0, padx=20)
    w5 = tk.StringVar()
    entry1 = tk.Entry(window_function, show=None, textvariable=w5).grid(row=1, column=1, pady=40)
    button = tk.Button(window_function, text="删除", command=delete_Ware, anchor='s').place(relx=0.2, rely=0.5)
    button2 = tk.Button(window_function, text="返回", command=change_delete).place(relx=0.4, rely=0.5)
    window_function.mainloop()


# 删除供货商界面
def Vendor_delete():
    window_choice.destroy()
    global window_function
    global v5
    window_function = tk.Tk()
    window_function.title("商城信息管理系统")
    window_function.geometry('500x400')
    tk.Label(window_function, text="删除供货商", font=("黑体", 20)).grid(row=0, column=1, pady=20)
    tk.Label(window_function, text="请输入供货商编号:").grid(row=1, column=0, padx=20)
    v5 = tk.StringVar()
    entry1 = tk.Entry(window_function, show=None, textvariable=v5).grid(row=1, column=1, pady=40)
    button = tk.Button(window_function, text="删除", command=delete_Vendor, anchor='s').place(relx=0.2, rely=0.5)
    button2 = tk.Button(window_function, text="返回", command=change_delete).place(relx=0.4, rely=0.5)
    window_function.mainloop()


# 删除退货信息界面
def Infer_delete():
    window_choice.destroy()
    global window_function
    global i6
    window_function = tk.Tk()
    window_function.title("商城信息管理系统")
    window_function.geometry('500x400')
    tk.Label(window_function, text="删除退货信息", font=("黑体", 20)).grid(row=0, column=1, pady=20)
    tk.Label(window_function, text="请输入交易流水号:").grid(row=1, column=0, padx=20)
    i6 = tk.StringVar()
    entry1 = tk.Entry(window_function, show=None, textvariable=i6).grid(row=1, column=1, pady=40)
    button = tk.Button(window_function, text="删除", command=delete_Infer, anchor='s').place(relx=0.2, rely=0.5)
    button2 = tk.Button(window_function, text="返回", command=change_delete).place(relx=0.4, rely=0.5)
    window_function.mainloop()


# 删除会员表界面
def Member_delete():
    window_choice.destroy()
    global window_function
    global m8
    window_function = tk.Tk()
    window_function.title("商城信息管理系统")
    window_function.geometry('500x400')
    tk.Label(window_function, text="删除会员信息", font=("黑体", 20)).grid(row=0, column=1, pady=20)
    tk.Label(window_function, text="请输入会员卡号:").grid(row=1, column=0, padx=20)
    m8 = tk.StringVar()
    entry1 = tk.Entry(window_function, show=None, textvariable=m8).grid(row=1, column=1, pady=40)
    button = tk.Button(window_function, text="删除", command=delete_Member, anchor='s').place(relx=0.2, rely=0.5)
    button2 = tk.Button(window_function, text="返回", command=change_delete).place(relx=0.4, rely=0.5)
    window_function.mainloop()

#删除商品交易记录界面
def Trade_delete():
    window_choice.destroy()
    global window_function
    global t8
    window_function = tk.Tk()
    window_function.title("商城信息管理系统")
    window_function.geometry('500x400')
    tk.Label(window_function, text="删除商品交易记录", font=("黑体", 20)).grid(row=0, column=1, pady=20)
    tk.Label(window_function, text="请输入交易流水号:").grid(row=1, column=0, padx=20)
    t8 = tk.StringVar()
    entry1 = tk.Entry(window_function, show=None, textvariable=t8).grid(row=1, column=1, pady=40)
    button = tk.Button(window_function, text="删除", command=delete_Trade, anchor='s').place(relx=0.2, rely=0.5)
    button2 = tk.Button(window_function, text="返回", command=change_delete).place(relx=0.4, rely=0.5)
    window_function.mainloop()

#删除入库信息界面
def Entry_delete():
    window_choice.destroy()
    global window_function
    global e8
    window_function = tk.Tk()
    window_function.title("商城信息管理系统")
    window_function.geometry('500x400')
    tk.Label(window_function, text="删除入库信息", font=("黑体", 20)).grid(row=0, column=1, pady=20)
    tk.Label(window_function, text="请输入入库单编号:").grid(row=1, column=0, padx=20)
    e8 = tk.StringVar()
    entry1 = tk.Entry(window_function, show=None, textvariable=e8).grid(row=1, column=1, pady=40)
    button = tk.Button(window_function, text="删除", command=delete_Entry, anchor='s').place(relx=0.2, rely=0.5)
    button2 = tk.Button(window_function, text="返回", command=change_delete).place(relx=0.4, rely=0.5)
    window_function.mainloop()

#删除出库信息界面
def Exits_delete():
    window_choice.destroy()
    global window_function
    global x7
    window_function = tk.Tk()
    window_function.title("商城信息管理系统")
    window_function.geometry('500x400')
    tk.Label(window_function, text="删除出库信息", font=("黑体", 20)).grid(row=0, column=1, pady=20)
    tk.Label(window_function, text="请输入出库单编号:").grid(row=1, column=0, padx=20)
    x7 = tk.StringVar()
    entry1 = tk.Entry(window_function, show=None, textvariable=x7).grid(row=1, column=1, pady=40)
    button = tk.Button(window_function, text="删除", command=delete_Exits, anchor='s').place(relx=0.2, rely=0.5)
    button2 = tk.Button(window_function, text="返回", command=change_delete).place(relx=0.4, rely=0.5)
    window_function.mainloop()

#####################################################################################
#更新商品信息界面
def Goods_update():
    window_choice.destroy()
    global window_function
    global g11,g12,g13
    window_function=tk.Tk()
    window_function.title("商城信息管理系统")
    window_function.geometry('500x400')
    tk.Label(window_function, text="更新商品信息", font=("黑体", 20)).grid(row=0,column=1,pady=20)
    tk.Label(window_function,text="请输入商品进价:").grid(row=1,column =0,padx=20,pady=20)
    tk.Label(window_function,text="请输入商品售价:").grid(row=2, column=0, padx=20, pady=20)
    tk.Label(window_function,text="请输入商品编号:").grid(row=3,column =0,padx=20,pady=20)
    g11=tk.StringVar()
    g12=tk.StringVar()
    g13=tk.StringVar()
    entry1=tk.Entry(window_function,show=None,textvariable=g11).grid(row=1,column =1)
    entry2=tk.Entry(window_function,show=None,textvariable=g12).grid(row=2,column =1)
    entry3 = tk.Entry(window_function, show=None, textvariable=g13).grid(row=3, column=1)
    button = tk.Button(window_function, text="更新", command=update_Goods).place(relx=0.3,rely=0.7)
    button2 = tk.Button(window_function, text="返回", command=change_update).place(relx=0.5,rely=0.7)
    window_function.mainloop()

# 更新员工界面
def Staff_update():
    window_choice.destroy()
    global window_function
    global s11, s12, s13
    window_function = tk.Tk()
    window_function.title("商城信息管理系统")
    window_function.geometry('500x400')
    tk.Label(window_function, text="更新员工信息", font=("黑体", 20)).grid(row=0, column=1, pady=20)
    tk.Label(window_function, text="请输入员工电话:").grid(row=1, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入员工工资:").grid(row=2, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入员工编号:").grid(row=3, column=0, padx=20, pady=20)
    s11 = tk.StringVar()
    s12 = tk.StringVar()
    s13 = tk.StringVar()
    entry1 = tk.Entry(window_function, show=None, textvariable=s11).grid(row=1, column=1)
    entry2 = tk.Entry(window_function, show=None, textvariable=s12).grid(row=2, column=1)
    entry3 = tk.Entry(window_function, show=None, textvariable=s13).grid(row=3, column=1)
    button = tk.Button(window_function, text="更新", command=update_Staff).place(relx=0.3, rely=0.7)
    button2 = tk.Button(window_function, text="返回", command=change_update).place(relx=0.5, rely=0.7)
    window_function.mainloop()


# 更新仓库界面
def Ware_update():
    window_choice.destroy()
    global window_function
    global w6,w7,w8
    window_function = tk.Tk()
    window_function.title("商城信息管理系统")
    window_function.geometry('500x400')
    tk.Label(window_function, text="更新仓库信息", font=("黑体", 20)).grid(row=0, column=1, pady=20)
    tk.Label(window_function, text="请输入仓库名称:").grid(row=1, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入仓库管理员编号:").grid(row=2, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入仓库编号:").grid(row=3, column=0, padx=20, pady=20)
    w6 = tk.StringVar()
    w7 = tk.StringVar()
    w8 = tk.StringVar()
    entry1 = tk.Entry(window_function, show=None, textvariable=w6).grid(row=1, column=1)
    entry2 = tk.Entry(window_function, show=None, textvariable=w7).grid(row=2, column=1)
    entry3 = tk.Entry(window_function, show=None, textvariable=w8).grid(row=3, column=1)
    button = tk.Button(window_function, text="更新", command=update_Ware).place(relx=0.3, rely=0.7)
    button2 = tk.Button(window_function, text="返回", command=change_update).place(relx=0.5, rely=0.7)
    window_function.mainloop()


# 更新供货商界面
def Vendor_update():
    window_choice.destroy()
    global window_function
    global v6, v7, v8
    window_function = tk.Tk()
    window_function.title("商城信息管理系统")
    window_function.geometry('500x400')
    tk.Label(window_function, text="更新供货商信息", font=("黑体", 20)).grid(row=0, column=1, pady=20)
    tk.Label(window_function, text="请输入供货商电话:").grid(row=1, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入供货商地址:").grid(row=2, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入供货商编号:").grid(row=3, column=0, padx=20, pady=20)
    v6 = tk.StringVar()
    v7 = tk.StringVar()
    v8 = tk.StringVar()
    entry1 = tk.Entry(window_function, show=None, textvariable=v6).grid(row=1, column=1)
    entry2 = tk.Entry(window_function, show=None, textvariable=v7).grid(row=2, column=1)
    entry3 = tk.Entry(window_function, show=None, textvariable=v8).grid(row=3, column=1)
    button = tk.Button(window_function, text="更新", command=update_Vendor).place(relx=0.3, rely=0.7)
    button2 = tk.Button(window_function, text="返回", command=change_update).place(relx=0.5, rely=0.7)
    window_function.mainloop()


# 更新退货信息界面
def Infer_update():
    window_choice.destroy()
    global window_function
    global i7,i8,i9
    window_function = tk.Tk()
    window_function.title("商城信息管理系统")
    window_function.geometry('500x400')
    tk.Label(window_function, text="更新供货商信息", font=("黑体", 20)).grid(row=0, column=1, pady=20)
    tk.Label(window_function, text="请输入退货数量:").grid(row=1, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入退款金额:").grid(row=2, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入交易流水号编号:").grid(row=3, column=0, padx=20, pady=20)
    i7 = tk.StringVar()
    i8 = tk.StringVar()
    i9 = tk.StringVar()
    entry1 = tk.Entry(window_function, show=None, textvariable=i7).grid(row=1, column=1)
    entry2 = tk.Entry(window_function, show=None, textvariable=i8).grid(row=2, column=1)
    entry3 = tk.Entry(window_function, show=None, textvariable=i9).grid(row=3, column=1)
    button = tk.Button(window_function, text="更新", command=update_Infer).place(relx=0.3, rely=0.7)
    button2 = tk.Button(window_function, text="返回", command=change_update).place(relx=0.5, rely=0.7)
    window_function.mainloop()


# 更新会员表界面
def Member_update():
    window_choice.destroy()
    global window_function
    global m9,m10,m11
    window_function = tk.Tk()
    window_function.title("商城信息管理系统")
    window_function.geometry('500x400')
    tk.Label(window_function, text="更新供货商信息", font=("黑体", 20)).grid(row=0, column=1, pady=20)
    tk.Label(window_function, text="请输入会员电话:").grid(row=1, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入会员密码:").grid(row=2, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入会员卡号编号:").grid(row=3, column=0, padx=20, pady=20)
    m9 = tk.StringVar()
    m10 = tk.StringVar()
    m11 = tk.StringVar()
    entry1 = tk.Entry(window_function, show=None, textvariable=m9).grid(row=1, column=1)
    entry2 = tk.Entry(window_function, show=None, textvariable=m10).grid(row=2, column=1)
    entry3 = tk.Entry(window_function, show=None, textvariable=m11).grid(row=3, column=1)
    button = tk.Button(window_function, text="更新", command=update_Member).place(relx=0.3, rely=0.7)
    button2 = tk.Button(window_function, text="返回", command=change_update).place(relx=0.5, rely=0.7)
    window_function.mainloop()

#更新商品交易记录界面
def Trade_update():
    window_choice.destroy()
    global window_function
    global t9,t10,t11
    window_function = tk.Tk()
    window_function.title("商城信息管理系统")
    window_function.geometry('500x400')
    tk.Label(window_function, text="更新商品交易信息", font=("黑体", 20)).grid(row=0, column=1, pady=20)
    tk.Label(window_function, text="请输入交易金额:").grid(row=1, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入交易数量:").grid(row=2, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入交易流水号:").grid(row=3, column=0, padx=20, pady=20)
    t9 = tk.StringVar()
    t10 = tk.StringVar()
    t11 = tk.StringVar()
    entry1 = tk.Entry(window_function, show=None, textvariable=t9).grid(row=1, column=1)
    entry2 = tk.Entry(window_function, show=None, textvariable=t10).grid(row=2, column=1)
    entry3 = tk.Entry(window_function, show=None, textvariable=t11).grid(row=3, column=1)
    button = tk.Button(window_function, text="更新", command=update_Trade).place(relx=0.3, rely=0.7)
    button2 = tk.Button(window_function, text="返回", command=change_update).place(relx=0.5, rely=0.7)
    window_function.mainloop()

#更新入库信息界面
def Entry_update():
    window_choice.destroy()
    global window_function
    global e9,e10,e11
    window_function = tk.Tk()
    window_function.title("商城信息管理系统")
    window_function.geometry('500x400')
    tk.Label(window_function, text="更新供货商信息", font=("黑体", 20)).grid(row=0, column=1, pady=20)
    tk.Label(window_function, text="请输入总金额:").grid(row=1, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入入库量:").grid(row=2, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入入库单编号:").grid(row=3, column=0, padx=20, pady=20)
    e9 = tk.StringVar()
    e10 = tk.StringVar()
    e11= tk.StringVar()
    entry1 = tk.Entry(window_function, show=None, textvariable=e9).grid(row=1, column=1)
    entry2 = tk.Entry(window_function, show=None, textvariable=e10).grid(row=2, column=1)
    entry3 = tk.Entry(window_function, show=None, textvariable=e11).grid(row=3, column=1)
    button = tk.Button(window_function, text="更新", command=update_Entry).place(relx=0.3, rely=0.7)
    button2 = tk.Button(window_function, text="返回", command=change_update).place(relx=0.5, rely=0.7)
    window_function.mainloop()

#更新出库信息界面
def Exits_update():
    window_choice.destroy()
    global window_function
    global x8,x9,x10
    window_function = tk.Tk()
    window_function.title("商城信息管理系统")
    window_function.geometry('500x400')
    tk.Label(window_function, text="更新供货商信息", font=("黑体", 20)).grid(row=0, column=1, pady=20)
    tk.Label(window_function, text="请输入总金额:").grid(row=1, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入出库量:").grid(row=2, column=0, padx=20, pady=20)
    tk.Label(window_function, text="请输入出库单编号:").grid(row=3, column=0, padx=20, pady=20)
    x8 = tk.StringVar()
    x9 = tk.StringVar()
    x10 = tk.StringVar()
    entry1 = tk.Entry(window_function, show=None, textvariable=x8).grid(row=1, column=1)
    entry2 = tk.Entry(window_function, show=None, textvariable=x9).grid(row=2, column=1)
    entry3 = tk.Entry(window_function, show=None, textvariable=x10).grid(row=3, column=1)
    button = tk.Button(window_function, text="更新", command=update_Exits).place(relx=0.3, rely=0.7)
    button2 = tk.Button(window_function, text="返回", command=change_update).place(relx=0.5, rely=0.7)
    window_function.mainloop()

#############################################################################################################################

#条件查找商品界面
def Goods_select():
    window_choice.destroy()
    global window_function
    global g14
    window_function=tk.Tk()
    window_function.title("商城信息管理系统")
    window_function.geometry('500x400')
    tk.Label(window_function, text="查找商品信息", font=("黑体", 20)).grid(row=0,column=1,pady=20)
    tk.Label(window_function,text="请输入商品编号:").grid(row = 1,column =0,padx=20)
    g14 =tk.StringVar()
    entry1=tk.Entry(window_function,show=None,textvariable=g14).grid(row = 1,column =1,pady=40)
    button = tk.Button(window_function, text="查找", command=select_Goods).place(relx=0.3,rely=0.5)
    button2 = tk.Button(window_function, text="返回", command=change_select).place(relx=0.5,rely=0.5)
    window_function.mainloop()

# 查找员工界面
def Staff_select():
    window_choice.destroy()
    global window_function
    global s14
    window_function = tk.Tk()
    window_function.title("商城信息管理系统")
    window_function.geometry('500x400')
    tk.Label(window_function, text="查找员工信息", font=("黑体", 20)).grid(row=0, column=1, pady=20)
    tk.Label(window_function, text="请输入员工编号:").grid(row=1, column=0, padx=20)
    s14 = tk.StringVar()
    entry1 = tk.Entry(window_function, show=None, textvariable=s14).grid(row=1, column=1, pady=40)
    button = tk.Button(window_function, text="查找", command=select_Staff).place(relx=0.3, rely=0.5)
    button2 = tk.Button(window_function, text="返回", command=change_select).place(relx=0.5, rely=0.5)
    window_function.mainloop()


# 查找安全问题界面
def Check1_select():
    window_choice.destroy()
    global window_function
    global c7
    window_function = tk.Tk()
    window_function.title("商城信息管理系统")
    window_function.geometry('500x400')
    tk.Label(window_function, text="查找安全检查信息", font=("黑体", 20)).grid(row=0, column=1, pady=20)
    tk.Label(window_function, text="请输入检查日期:").grid(row=1, column=0, padx=20)
    c7 = tk.StringVar()
    entry1 = tk.Entry(window_function, show=None, textvariable=c7).grid(row=1, column=1, pady=40)
    button = tk.Button(window_function, text="查找", command=select_Check1).place(relx=0.3, rely=0.5)
    button2 = tk.Button(window_function, text="返回", command=change_select).place(relx=0.5, rely=0.5)
    window_function.mainloop()

# 查找仓库界面
def Ware_select():
    window_choice.destroy()
    global window_function
    global w9
    window_function = tk.Tk()
    window_function.title("商城信息管理系统")
    window_function.geometry('500x400')
    tk.Label(window_function, text="查找仓库信息", font=("黑体", 20)).grid(row=0, column=1, pady=20)
    tk.Label(window_function, text="请输入仓库编号:").grid(row=1, column=0, padx=20)
    w9 = tk.StringVar()
    entry1 = tk.Entry(window_function, show=None, textvariable=w9).grid(row=1, column=1, pady=40)
    button = tk.Button(window_function, text="查找", command=select_Ware).place(relx=0.3, rely=0.5)
    button2 = tk.Button(window_function, text="返回", command=change_select).place(relx=0.5, rely=0.5)
    window_function.mainloop()


# 查找供货商界面
def Vendor_select():
    window_choice.destroy()
    global window_function
    global v9
    window_function = tk.Tk()
    window_function.title("商城信息管理系统")
    window_function.geometry('500x400')
    tk.Label(window_function, text="查找供货商信息", font=("黑体", 20)).grid(row=0, column=1, pady=20)
    tk.Label(window_function, text="请输入供货商编号:").grid(row=1, column=0, padx=20)
    v9 = tk.StringVar()
    entry1 = tk.Entry(window_function, show=None, textvariable=v9).grid(row=1, column=1, pady=40)
    button = tk.Button(window_function, text="查找", command=select_Vendor).place(relx=0.3, rely=0.5)
    button2 = tk.Button(window_function, text="返回", command=change_select).place(relx=0.5, rely=0.5)
    window_function.mainloop()


# 查找退货信息界面
def Infer_select():
    window_choice.destroy()
    global window_function
    global i10
    window_function = tk.Tk()
    window_function.title("商城信息管理系统")
    window_function.geometry('500x400')
    tk.Label(window_function, text="查找退货信息", font=("黑体", 20)).grid(row=0, column=1, pady=20)
    tk.Label(window_function, text="请输入交易流水号:").grid(row=1, column=0, padx=20)
    i10 = tk.StringVar()
    entry1 = tk.Entry(window_function, show=None, textvariable=i10).grid(row=1, column=1, pady=40)
    button = tk.Button(window_function, text="查找", command=select_Infer).place(relx=0.3, rely=0.5)
    button2 = tk.Button(window_function, text="返回", command=change_select).place(relx=0.5, rely=0.5)
    window_function.mainloop()


# 查找会员表界面
def Member_select():
    window_choice.destroy()
    global window_function
    global m12
    window_function = tk.Tk()
    window_function.title("商城信息管理系统")
    window_function.geometry('500x400')
    tk.Label(window_function, text="查找会员信息", font=("黑体", 20)).grid(row=0, column=1, pady=20)
    tk.Label(window_function, text="请输入会员卡号:").grid(row=1, column=0, padx=20)
    m12 = tk.StringVar()
    entry1 = tk.Entry(window_function, show=None, textvariable=m12).grid(row=1, column=1, pady=40)
    button = tk.Button(window_function, text="查找", command=select_Member).place(relx=0.3, rely=0.5)
    button2 = tk.Button(window_function, text="返回", command=change_select).place(relx=0.5, rely=0.5)
    window_function.mainloop()

#查找商品交易记录界面
def Trade_select():
    window_choice.destroy()
    global window_function
    global t12
    window_function = tk.Tk()
    window_function.title("商城信息管理系统")
    window_function.geometry('500x400')
    tk.Label(window_function, text="查找商品交易信息", font=("黑体", 20)).grid(row=0, column=1, pady=20)
    tk.Label(window_function, text="请输入交易流水号:").grid(row=1, column=0, padx=20)
    t12 = tk.StringVar()
    entry1 = tk.Entry(window_function, show=None, textvariable=t12).grid(row=1, column=1, pady=40)
    button = tk.Button(window_function, text="查找", command=select_Trade).place(relx=0.3, rely=0.5)
    button2 = tk.Button(window_function, text="返回", command=change_select).place(relx=0.5, rely=0.5)
    window_function.mainloop()

#查找入库信息界面
def Entry_select():
    window_choice.destroy()
    global window_function
    global e12
    window_function = tk.Tk()
    window_function.title("商城信息管理系统")
    window_function.geometry('500x400')
    tk.Label(window_function, text="查找入库信息", font=("黑体", 20)).grid(row=0, column=1, pady=20)
    tk.Label(window_function, text="请输入入库单编号:").grid(row=1, column=0, padx=20)
    e12 = tk.StringVar()
    entry1 = tk.Entry(window_function, show=None, textvariable=e12).grid(row=1, column=1, pady=40)
    button = tk.Button(window_function, text="查找", command=select_Entry).place(relx=0.3, rely=0.5)
    button2 = tk.Button(window_function, text="返回", command=change_select).place(relx=0.5, rely=0.5)
    window_function.mainloop()

#查找出库信息界面
def Exits_select():
    window_choice.destroy()
    global window_function
    global x11
    window_function = tk.Tk()
    window_function.title("商城信息管理系统")
    window_function.geometry('500x400')
    tk.Label(window_function, text="查找出库信息", font=("黑体", 20)).grid(row=0, column=1, pady=20)
    tk.Label(window_function, text="请输入出库单编号:").grid(row=1, column=0, padx=20)
    x11 = tk.StringVar()
    entry1 = tk.Entry(window_function, show=None, textvariable=x11).grid(row=1, column=1, pady=40)
    button = tk.Button(window_function, text="查找", command=select_Exits).place(relx=0.3, rely=0.5)
    button2 = tk.Button(window_function, text="返回", command=change_select).place(relx=0.5, rely=0.5)
    window_function.mainloop()




########################################################################################################
#增删改查之后进去每个都可以对员工信息 商品信息 安全信息 仓库信息 供货信息 退货信息 会员信息等等进行操作
def all_add():
    #window.destroy()
    global window_choice
    window_choice = tk.Tk()
    window_choice.title("商城信息管理系统")
    window_choice.geometry('400x900')
    # 生成画布,销毁后生成新的画布实现跳转
    page = tk.Frame(window_choice)
    page.pack()

    tk.Label(window_choice, text="欢迎使用商城信息管理系统", font=("黑体", 20)).pack(pady=10)
    button1 = tk.Button(window_choice, text="添加员工信息", command=Staff_add).pack(pady=10)
    button2 = tk.Button(window_choice, text="添加商品信息", command=Goods_add).pack(pady=10)
    button3 = tk.Button(window_choice, text="添加安全信息", command=Check1_add).pack(pady=10)
    button4 = tk.Button(window_choice, text="添加仓库信息", command=Ware_add).pack(pady=10)
    button5 = tk.Button(window_choice, text="添加供货商信息", command=Vendor_add).pack(pady=10)
    button6 = tk.Button(window_choice, text="添加退货信息", command=Infer_add).pack(pady=10)
    button7 = tk.Button(window_choice, text="添加会员信息", command=Member_add).pack(pady=10)
    button8 = tk.Button(window_choice, text="添加交易信息", command=Trade_add).pack(pady=10)
    button9 = tk.Button(window_choice, text="添加入库信息", command=Entry_add).pack(pady=10)
    button10 = tk.Button(window_choice, text="添加出库信息", command=Exits_add).pack(pady=10)
    button11 = tk.Button(window_choice, text="返回", command=change_main).place(relx=0.5, rely=0.8)
    window_choice.mainloop()

def all_delete():
    #window.destroy()
    global window_choice
    window_choice = tk.Tk()
    window_choice.title("商城信息管理系统")
    window_choice.geometry('400x900')
    # 生成画布,销毁后生成新的画布实现跳转
    page = tk.Frame(window_choice)
    page.pack()

    tk.Label(window_choice, text="欢迎使用商城信息管理系统", font=("黑体", 20)).pack(pady=10)
    button1 = tk.Button(window_choice, text="删除员工信息", command=Staff_delete).pack(pady=10)
    button2 = tk.Button(window_choice, text="删除商品信息", command=Goods_delete).pack(pady=10)
    button3 = tk.Button(window_choice, text="删除安全信息", command=Check1_delete).pack(pady=10)
    button4 = tk.Button(window_choice, text="删除仓库信息", command=Ware_delete).pack(pady=10)
    button5 = tk.Button(window_choice, text="删除供货商信息", command=Vendor_delete).pack(pady=10)
    button6 = tk.Button(window_choice, text="删除退货信息", command=Infer_delete).pack(pady=10)
    button7 = tk.Button(window_choice, text="删除会员信息", command=Member_delete).pack(pady=10)
    button8 = tk.Button(window_choice, text="删除交易信息", command=Trade_delete).pack(pady=10)
    button9 = tk.Button(window_choice, text="删除入库信息", command=Entry_delete).pack(pady=10)
    button10 = tk.Button(window_choice, text="删除出库信息", command=Exits_delete).pack(pady=10)
    button11 = tk.Button(window_choice, text="返回", command=change_main).place(relx=0.5, rely=0.8)
    window_choice.mainloop()
def all_update():
    #window.destroy()
    global window_choice
    window_choice = tk.Tk()
    window_choice.title("商城信息管理系统")
    window_choice.geometry('400x900')
    # 生成画布,销毁后生成新的画布实现跳转
    page = tk.Frame(window_choice)
    page.pack()

    tk.Label(window_choice, text="欢迎使用商城信息管理系统", font=("黑体", 20)).pack(pady=10)
    button1 = tk.Button(window_choice, text="更新员工信息", command=Staff_update).pack(pady=10)
    button2 = tk.Button(window_choice, text="更新商品信息", command=Goods_update).pack(pady=10)
    button3 = tk.Button(window_choice, text="更新仓库信息", command=Ware_update).pack(pady=10)
    button4 = tk.Button(window_choice, text="更新供货商信息", command=Vendor_update).pack(pady=10)
    button5 = tk.Button(window_choice, text="更新退货信息", command=Infer_update).pack(pady=10)
    button6 = tk.Button(window_choice, text="更新会员信息", command=Member_update).pack(pady=10)
    button7 = tk.Button(window_choice, text="更新交易信息", command=Trade_update).pack(pady=10)
    button8 = tk.Button(window_choice, text="更新入库信息", command=Entry_update).pack(pady=10)
    button9 = tk.Button(window_choice, text="更新出库信息", command=Exits_update).pack(pady=10)
    button10 = tk.Button(window_choice, text="返回", command=change_main).place(relx=0.5, rely=0.8)
    window_choice.mainloop()
def all_select():
    #window.destroy()
    global window_choice
    window_choice = tk.Tk()
    window_choice.title("商城信息管理系统")
    window_choice.geometry('400x900')
    # 生成画布,销毁后生成新的画布实现跳转
    page = tk.Frame(window_choice)
    page.pack()

    tk.Label(window_choice, text="欢迎使用商城信息管理系统", font=("黑体", 20)).pack(pady=10)
    button1 = tk.Button(window_choice, text="查询员工信息", command=Staff_select).pack(pady=10)
    button2 = tk.Button(window_choice, text="查询商品信息", command=Goods_select).pack(pady=10)
    button3 = tk.Button(window_choice, text="查询安全信息", command=Check1_select).pack(pady=10)
    button4 = tk.Button(window_choice, text="查询仓库信息", command=Ware_select).pack(pady=10)
    button5 = tk.Button(window_choice, text="查询供货商信息", command=Vendor_select).pack(pady=10)
    button6 = tk.Button(window_choice, text="查询退货信息", command=Infer_select).pack(pady=10)
    button7 = tk.Button(window_choice, text="查询会员信息", command=Member_select).pack(pady=10)
    button8 = tk.Button(window_choice, text="查询交易信息", command=Trade_select).pack(pady=10)
    button9 = tk.Button(window_choice, text="查询入库信息", command=Entry_select).pack(pady=10)
    button10 = tk.Button(window_choice, text="查询出库信息", command=Exits_select).pack(pady=10)
    button11 = tk.Button(window_choice, text="返回", command=change_main).place(relx=0.5, rely=0.8)
    window_choice.mainloop()

####################################################################################################

#添加商品界面跳转
def change_add():
    window_function.destroy()
    all_add()
def change1_add():
    window.destroy()
    all_add()
#删除商品界面跳转
def change_delete():
    window_function.destroy()
    all_delete()
def change1_delete():
    window.destroy()
    all_delete()
#更新商品界面跳转
def change_update():
    window_function.destroy()
    all_update()
def change1_update():
    window.destroy()
    all_update()
#条件查询商品界面跳转
def change_select():
    window_function.destroy()
    all_select()
def change1_select():
    window.destroy()
    all_select()
#主界面跳转
def change_main():
    window_choice.destroy()
    mainpage()
def change_login():
    login1.destroy()
    mainpage()

###################################################################################################

#主界面
def mainpage():
    global window
    window = tk.Tk()
    window.title("商城信息管理系统")
    # window.geometry('500x400')
    #生成画布,销毁后生成新的画布实现跳转
    #page = tk.Frame(window)
    #page.pack()


    tk.Label(window, text="欢迎使用商城信息管理系统", font=("黑体", 20)).pack(pady=10)
    button1 = tk.Button(window, text="添加信息", command=change1_add).pack(pady=10)
    button2 = tk.Button(window, text="删除信息", command=change1_delete).pack(pady=10)
    button3 = tk.Button(window, text="修改信息", command=change1_update).pack(pady=10)
    button4 = tk.Button(window, text="信息查询", command=change1_select).pack(pady=10)
#信息查询 员工信息 商品信息 安全信息 仓库信息 供货信息 退货信息 会员信息
    # 插入图片背景
    image = Image.open("BACK.jpg").resize((400, 400))
    pyt = ImageTk.PhotoImage(image)
    canvas_window = tkinter.Canvas(window, width=500, height=400)
    canvas_window.create_image(250, 200, image=pyt)
    canvas_window.pack()

    window.mainloop()
####################################################################################
#登录界面
def login():
    global login1,username,password
    login1=tk.Tk()
    login1.title("登录界面")
    login1.geometry('300x200')
    tk.Label(login1, text="请输入账号:").grid(row=1, column=0, padx=20, pady=20)
    tk.Label(login1, text="请输入密码:").grid(row=2, column=0, padx=20, pady=20)

    # 定义变量记录输入信息
    username = tk.StringVar()
    password = tk.StringVar()
    # 生成输入框
    entry1 = tk.Entry(login1, show=None, textvariable=username).grid(row=1, column=1)
    entry2 = tk.Entry(login1, show='*', textvariable=password).grid(row=2, column=1)

    # 生成按钮

    button = tk.Button(login1, text="login", command=login_l).place(relx=0.3, rely=0.8)
   # else:
      #  tkinter.messagebox.showinfo(title='提示', message='账号或密码错误')
    login1.mainloop()

def login_l():
    name=username.get()
    pwd=password.get()
    if name=='mysql' and pwd =='123456':
        change_login()
    else:
        tkinter.messagebox.showinfo(title='提示', message='账号或密码错误')
#调用登录界面
if __name__ == '__main__':
    login()

 

PS:想要源代码以及源文件的私信我,给出你的邮箱地址,最近比较忙,如果没有发你再提醒我一下

 

 

 

 

 

 

 

到了这里,关于基于python+mysql超市信息管理系统(附完整源代码)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • 基于swing的超市管理系统java仓库库存进销存jsp源代码mysql

    本项目为前几天收费帮学妹做的一个项目,Java EE JSP项目,在工作环境中基本使用不到,但是很多学校把这个当作编程入门的项目来做,故分享出本项目供初学者参考。 基于swing的超市管理系统 系统有3权限:管理员、收银员、普通会员 分为前台和后台,有管理员、收银员和

    2024年02月12日
    浏览(31)
  • 【Python毕业设计】基于Python+Flask+MySQL的学生信息管理系统(附完整源码)

    1、项目说明 基于python+Flask+mysql的学生信息管理系统项目实战 项目需要安装pycharm专业版,mysql数据库以及项目所需的所有模块 创建数据库名称db_online_notes,然后执行sql文件生成数据表和数据 项目需要安装 flask,pymysql以及其他的一些模块 安装命令如下: pip install -i https://pypi

    2023年04月18日
    浏览(30)
  • 基于Django高校学校校园网站信息管理系统设计与实现(Pycharm+Python+Mysql)

     博主介绍 :黄菊华老师《Vue.js入门与商城开发实战》《微信小程序商城开发》图书作者,CSDN博客专家,在线教育专家,CSDN钻石讲师;专注大学生毕业设计教育和辅导。 所有项目都配有从入门到精通的基础知识视频课程,学习后应对毕业设计答辩。 项目配有对应开发文档、

    2024年04月10日
    浏览(56)
  • 基于python超市仓库管理系统的设计与实现-计算机毕业设计源码96723

    摘要 随着信息技术的快速发展,计算机应用已经进入成千上万的家庭。随着超市商品数量的增加,超市仓库管理系统也存在许多问题。商品数据的处理量正在迅速增加,原来的手工管理模式不适合这种形式。使用计算机可以完成数据收集、处理和分析,减少人力和物力的浪费

    2024年02月04日
    浏览(42)
  • (赠源码)Python+Django+MYSQL超市管理系统的设计与实现26073-计算机毕业设计

    摘要 随着小超市规模的发展不断扩大,商品数量急剧增加,有关商品的各种信息量也成倍增长。超市时时刻刻都需要对商品各种信息进行统计分析。而大型的超市管理系统功能过于强大而造成操作繁琐降低了小超市的工作效率。 超市管理系统是市场上最流行的超市上常用的

    2024年02月04日
    浏览(40)
  • 超市商品信息管理系统设计与实现(论文+源码)

    本篇 论文源码私我 以上内容只是精简版 还有很多原创类型论文 本次主要先介绍研究背景、研究目标及相应价值的基础上,分析了国内外电子商务及相应超市管理系统的研究现状。随着计算机技术和网络技术的发展,顾客购买方式也从商店购买发展到超市管理系统。由于学生

    2024年02月16日
    浏览(37)
  • [MySQL]超市购物管理系统

    目录 数据库结构 一.逻辑结构设计 1.会员信息表hyxxb 2.货品名称表hpmcb 3.供应商信息表gysxxb 4.收银记录表 5.收银明细表symxb 6.货品库存表 7.扎帐记录表 8.汉字拼音表  二.索引 1.汉字拼音表索引  三.视图 1.货品库存数量视图 2.收银明细视图 四.创建函数  五.创建触发器  六.创建

    2024年02月08日
    浏览(32)
  • 超市管理系统(java+Mysql)

    目 录 摘 要 I Abstract II 1 正文 1 1.1研究背景分析 1 1.2 超市管理系统的概述 2 1.3所需软、硬件技术准备 2 1.4可行性分析 3 1.4.1 技术可行性 3 1.4.2 经济可行性 3 1.4.3 社会可行性 3 2 需求分析 4 2.1 需求分析的任务及主要内容 4 2.2.1 具体业务的需求 4 2.2 层次图 4 2.3数据流图 5 3 概要设

    2024年02月05日
    浏览(40)
  • Java+Swing+Mysql实现超市管理系统

    操作系统:Win10 开发工具 :IDEA2018 JDK版本:jdk1.8 数据库:Mysql8.0 Java+Swing+Mysql 1. 系统登录登出 管理员可以登录、退出系统 2. 商品信息管理 管理员可以对商品信息进行查询、添加、修改、删除等操作。 3. 出库信息管理 管理员可以对出库信息进行查询、添加、修改、删除等操

    2024年03月18日
    浏览(29)
  • JSP+Servlet+MySql超市管理系统项目源码

    软件名称:超市管理系统(servlet+jsp) 使用对象:学习或了解过 java 基础课程,开始接触 javaWeb 的学生和软件爱好者 源码链接:超市管理系统: 超市管理系统 Sql文件https://pan.baidu.com/s/1BtMM8erQ9E25fQ1j4eHltQ?pwd=8nmj 该超市管理系统,设置了登录权限验证,所有用户除了访问首页浏览商品

    2024年02月09日
    浏览(37)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包