找传奇、传世资源到传世资源站!

java 仓库管理系统源码(含sql server数据库)

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

Java,sql编写的仓库管理系统,附加数据库后 ,登录账号:wyt 密码:001

系统介绍

三只松鼠超市管理系统是一款辅助超市管理员管理超市的实用性项目,根据超市的日常管理需要,超市管理系统应包括基本档案管理、采购订货管理、仓库入库管理、仓库出库管理、人员管理、部门管理6大功能。其中基本档案管理又分为供货商管理、销售商管理、货品档案管理、仓库管理,为管理员提供日常基本信息的功能,采购订货管理模块,用来对日常的采购订货信息进行管理,仓库入库管理,管理各种商品入库的信息,仓库出库管理,管理商品出库记录,人员管理,实现对员工的管理,部门管理实现对超市的各个独立部门进行管理。

操作流程

1)进入主窗体可通过主窗体中的功能导航菜单进入“基本档案”管理子模块,在基本档案管理模块中又包含“供货商管理”、“销售商管理”、“货品档案管理”、“仓库管理”功能。 2)当用户单击主窗体中功能导航菜单中的“采购订货”按钮,可进入采购订货子模块。 3)主窗体的功能导航菜单中还包含有“仓库入库”、“仓库出库”、“人员管理”、“部门管理”内容。 4)每一个模块都实现了其添加、删除、修改功能。便于进行管理。
from clipboard
from clipboard
from clipboard
from clipboard
from clipboard
from clipboard
from clipboard
from clipboard
from clipboard
from clipboard
from clipboard
from clipboard
from clipboard
from clipboard
from clipboard
from clipboard
from clipboardfrom clipboard    package com.szss.main;import java.awt.EventQueue;import java.awt.Image;import java.awt.Point;import javax.swing.JFrame;import javax.swing.JPanel;import javax.swing.border.EmptyBorder;import com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel;import com.szss.bean.User;import com.szss.dao.UserDao;import com.szss.mainFrame.RemoveButtomFrame;import com.szss.util.Session;import javax.swing.ImageIcon;import javax.swing.JLabel;import javax.swing.JOptionPane;import javax.swing.JTextField;import javax.swing.JPasswordField;import javax.swing.JButton;import javax.swing.SwingUtilities;import javax.swing.UIManager;import java.awt.event.ActionListener;import java.awt.event.ActionEvent;import java.awt.event.MouseAdapter;import java.awt.event.MouseMotionAdapter;import java.io.Serializable;import java.net.URL;public class Enter extends JFrame {private BackgroundPanel contentPane;private JTextField userNameTextField;private JPasswordField passwordField;private Point spoint;/** * Launch the application. */public static void main(String[] args) {EventQueue.invokeLater(new Runnable() {public void run() {try {UIManager.setLookAndFeel(new NimbusLookAndFeel());SwingUtilities.invokeLater(new Runnable() {public void run() {Enter mostly = new Enter();mostly.setVisible(true);}});} catch (Exception e) {e.printStackTrace();}}});}/** * Create the frame. */public Enter() {setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);setResizable(false);setLocationRelativeTo(null);// 窗体居中setTitle("登录窗体");setBounds(100, 100, 559, 285);contentPane = getLoginPanel();contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));setContentPane(contentPane);contentPane.setLayout(null);}/** * 初始化登录面板 * * @return */private BackgroundPanel getLoginPanel() {if (contentPane == null) {contentPane = new BackgroundPanel();// 创建登录面板对象contentPane.setOpaque(false);// 面板透明contentPane.setImage(getToolkit().getImage( getClass().getResource("login.png")));// 设置面板背景图片contentPane.setLayout(null);JLabel userNameLabel = new JLabel("用户名:");userNameLabel.setBounds(40, 116, 54, 15);contentPane.add(userNameLabel);userNameTextField = new JTextField();userNameTextField.setBounds(92, 113, 139, 25);contentPane.add(userNameTextField);userNameTextField.setColumns(10);JLabel passWordLabel = new JLabel("密 码:");passWordLabel.setBounds(40, 158, 54, 15);contentPane.add(passWordLabel);passwordField = new JPasswordField();passwordField.setBounds(92, 155, 139, 25);contentPane.add(passwordField);JButton enterButton = new JButton("");URL url = getClass().getResource("enter.png");ImageIcon imageIcon = new ImageIcon(url);enterButton.setBounds(0, 40,imageIcon.getIconWidth(), imageIcon.getIconHeight());enterButton.setIcon(imageIcon);enterButton.setContentAreaFilled(false);// 取消填充区域enterButton.setBorder(null);// 取消边框enterButton.addActionListener(new ActionListener() {//按钮的单击事件public void actionPerformed(ActionEvent e) {UserDao userDao = new UserDao();//创建保存有操作数据库类对象User user = userDao.getUser(userNameTextField.getText(),passwordField.getText());//以用户添加的用户名与密码为参数调用查询用户方法if(user.getId()>0){//判断用户编号是否大于0Session.setUser(user);//设置Session对象的User属性值RemoveButtomFrame frame = new RemoveButtomFrame();//创建主窗体对象frame.setVisible(true);//显示主窗体 Enter.this.dispose();//销毁登录窗体}else{//如果用户输入的用户名与密码错误JOptionPane.showMessageDialog(getContentPane(), "用户名或密码错误");//给出提示信息userNameTextField.setText("");//用户名文本框设置为空passwordField.setText("");//密码文本框设置为空}}});enterButton.setBounds(253, 116, 93, 64);contentPane.add(enterButton);URL urlclose = getClass().getResource("close.png");ImageIcon imageIconclose = new ImageIcon(urlclose);// 添加鼠标事件监听器contentPane.addMouseListener(new TitleMouseAdapter());// 添加鼠标动作监听器}return contentPane;}private final class TitleMouseAdapter extends MouseAdapter implementsSerializable {public void mousePressed(java.awt.event.MouseEvent e) {spoint = e.getPoint();}}}

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复