在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → 库存管理系统源码20140113

库存管理系统源码20140113

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:15.94M
  • 下载次数:28
  • 浏览次数:187
  • 发布时间:2020-09-02
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
库存管理系统源码 本系统包括以下几大模块: l 用户管理:包括用户的新增、删除、修改密码。以及用户的权限管理(普通用户与管理员用户) l 货物管理:包括货物基本档案设置、采购申请、审批、采购、采购信息查询 l 出入库管理:对货物进行入库与出库、出入库查询、出入库年统计 l 数据处理:包括数据的备份、还原、导出(可选)、导入(可选)、(打印)功能 l 盘点管理(可选):对仓库内的货物进行盘点 l 借货还货【库存调拨】(可选):在不同仓库之间进行货物的调拨
【实例截图】
【核心代码】
NXStoreSys_6842afe6-9aac-4dba-a452-560cbe9a5b5f
└── NXStoreSys_6842afe6-9aac-4dba-a452-560cbe9a5b5f
├── 01.代码
│   ├── Common
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── Common.dll
│   │   │   └── Common.pdb
│   │   ├── Common.csproj
│   │   ├── Common.csproj.user
│   │   ├── Dbconnect.cs
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── Common.csproj.FileListAbsolute.txt
│   │   │   ├── Common.dll
│   │   │   ├── Common.pdb
│   │   │   └── DesignTimeResolveAssemblyReferencesInput.cache
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   └── SQLHelper.cs
│   ├── InventorySystem
│   │   ├── app.config
│   │   ├── BasicData
│   │   │   ├── F_Provider.cs
│   │   │   ├── F_Provider.Designer.cs
│   │   │   ├── F_Provider.resx
│   │   │   ├── F_Staff.cs
│   │   │   ├── F_Staff.Designer.cs
│   │   │   └── F_Staff.resx
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── Common.dll
│   │   │   │   ├── Common.pdb
│   │   │   │   ├── Interop.Excel.dll
│   │   │   │   ├── InventorySystem.exe
│   │   │   │   ├── InventorySystem.exe.config
│   │   │   │   ├── InventorySystem.pdb
│   │   │   │   ├── InventorySystem.vshost.exe
│   │   │   │   ├── InventorySystem.vshost.exe.config
│   │   │   │   ├── InventorySystem.vshost.exe.manifest
│   │   │   │   ├── IrisSkin2.dll
│   │   │   │   ├── office.dll
│   │   │   │   ├── PieChart.dll
│   │   │   │   ├── user.xml
│   │   │   │   └── user.xsd
│   │   │   ├── Ico
│   │   │   │   ├── 07.ico
│   │   │   │   ├── 162.ico
│   │   │   │   ├── 170.ico
│   │   │   │   ├── 171.ico
│   │   │   │   ├── 172.ico
│   │   │   │   ├── 203.ico
│   │   │   │   ├── 23.ico
│   │   │   │   ├── 36.ico
│   │   │   │   ├── 3.ico
│   │   │   │   ├── 42.ico
│   │   │   │   ├── 44.ico
│   │   │   │   ├── 45.ico
│   │   │   │   ├── 87.ico
│   │   │   │   ├── add.ico
│   │   │   │   ├── backup.ico
│   │   │   │   ├── cancle.ico
│   │   │   │   ├── check.ico
│   │   │   │   ├── Close.ico
│   │   │   │   ├── delete.ico
│   │   │   │   ├── detailed.ico
│   │   │   │   ├── edit.ico
│   │   │   │   ├── exit.ico
│   │   │   │   ├── find.ico
│   │   │   │   ├── help.bmp
│   │   │   │   ├── help.ico
│   │   │   │   ├── h.ico
│   │   │   │   ├── home.ico
│   │   │   │   ├── internet.bmp
│   │   │   │   ├── internet.ico
│   │   │   │   ├── main.ico
│   │   │   │   ├── print.ico
│   │   │   │   ├── question.ico
│   │   │   │   ├── save.ico
│   │   │   │   ├── search.ico
│   │   │   │   ├── s.ico
│   │   │   │   └── z.ico
│   │   │   ├── Images
│   │   │   │   ├── 20091207-154539-pic1.jpg
│   │   │   │   ├── 2.jpg
│   │   │   │   ├── 3937419_091731974779_2.jpg
│   │   │   │   ├── close.bmp
│   │   │   │   ├── close.jpg
│   │   │   │   ├── folder-add256.png
│   │   │   │   ├── images.jpg
│   │   │   │   ├── ok.jpg
│   │   │   │   ├── save_12.jpg
│   │   │   │   └── save_12.png
│   │   │   └── skins
│   │   │   ├── OneBlue.ssk
│   │   │   ├── Vista2_color1.ssk
│   │   │   └── XPBlue.ssk
│   │   ├── BuyStock
│   │   │   ├── Audite_log.cs
│   │   │   ├── Audite_log.Designer.cs
│   │   │   ├── Audite_log.resx
│   │   │   ├── F_ApplyProcure.cs
│   │   │   ├── F_ApplyProcure.Designer.cs
│   │   │   ├── F_ApplyProcure.resx
│   │   │   ├── F_ApproveProcure.cs
│   │   │   ├── F_ApproveProcure.Designer.cs
│   │   │   ├── F_ApproveProcure.resx
│   │   │   ├── F_ProcureStock.cs
│   │   │   ├── F_ProcureStock.Designer.cs
│   │   │   └── F_ProcureStock.resx
│   │   ├── EnterStock
│   │   │   ├── F_DeliveryStorage.cs
│   │   │   ├── F_DeliveryStorage.Designer.cs
│   │   │   ├── F_DeliveryStorage.resx
│   │   │   ├── F_PutInStorage.cs
│   │   │   ├── F_PutInStorage.Designer.cs
│   │   │   └── F_PutInStorage.resx
│   │   ├── F_Main.cs
│   │   ├── F_Main.Designer.cs
│   │   ├── F_Main.resx
│   │   ├── goods.Designer.cs
│   │   ├── goods.xsc
│   │   ├── goods.xsd
│   │   ├── goods.xss
│   │   ├── InventorySystem.csproj
│   │   ├── InventorySystem.csproj.user
│   │   ├── obj
│   │   │   └── x86
│   │   │   └── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferences.cache
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── GenerateResource.read.1.tlog
│   │   │   ├── GenerateResource.write.1.tlog
│   │   │   ├── InventorySystem.BasicData.F_Provider.resources
│   │   │   ├── InventorySystem.BasicData.F_Staff.resources
│   │   │   ├── InventorySystem.BuyStock.Audite_log.resources
│   │   │   ├── InventorySystem.BuyStock.F_ApplyProcure.resources
│   │   │   ├── InventorySystem.BuyStock.F_ApproveProcure.resources
│   │   │   ├── InventorySystem.BuyStock.F_ProcureStock.resources
│   │   │   ├── InventorySystem.csproj.FileListAbsolute.txt
│   │   │   ├── InventorySystem.csproj.GenerateResource.Cache
│   │   │   ├── InventorySystem.csprojResolveAssemblyReference.cache
│   │   │   ├── InventorySystem.EnterStock.F_DeliveryStorage.resources
│   │   │   ├── InventorySystem.EnterStock.F_PutInStorage.resources
│   │   │   ├── InventorySystem.exe
│   │   │   ├── InventorySystem.F_Main.resources
│   │   │   ├── InventorySystem.pdb
│   │   │   ├── InventorySystem.Properties.Resources.resources
│   │   │   ├── InventorySystem.ReferStock.F_GoodsInformation.resources
│   │   │   ├── InventorySystem.ReferStock.F_ProcureInformation.resources
│   │   │   ├── InventorySystem.ReferStock.F_Stockinandout.resources
│   │   │   ├── InventorySystem.ReferStock.F_StockInformation.resources
│   │   │   ├── InventorySystem.ReferStock.F_StockPrint.resources
│   │   │   ├── InventorySystem.Selectbox.F_SelectGood.resources
│   │   │   ├── InventorySystem.Selectbox.F_SelectLog.resources
│   │   │   ├── InventorySystem.Selectbox.F_SelectMessage.resources
│   │   │   ├── InventorySystem.Selectbox.F_SelectPro.resources
│   │   │   ├── InventorySystem.Selectbox.F_SelectSupplier.resources
│   │   │   ├── InventorySystem.Selectbox.F_SelectUnitsBox.resources
│   │   │   ├── InventorySystem.Selectbox.F_SelectWarehouse.resources
│   │   │   ├── InventorySystem.Stock.F_StockManager.resources
│   │   │   ├── InventorySystem.UserLogin.resources
│   │   │   ├── RdlCompile.cache
│   │   │   ├── RdlCompile.compiled
│   │   │   ├── ResolveAssemblyReference.cache
│   │   │   └── TempPE
│   │   │   ├── DataSet1.Designer.cs.dll
│   │   │   ├── goods.Designer.cs.dll
│   │   │   ├── Properties.Resources.Designer.cs.dll
│   │   │   ├── ReferStock.DataSet1.Designer.cs.dll
│   │   │   ├── ReferStock.goods.Designer.cs.dll
│   │   │   ├── RepertoryDataSet.Designer.cs.dll
│   │   │   └── Requistion.Designer.cs.dll
│   │   ├── PieChartHelper.cs
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── ReferStock
│   │   │   ├── F_GoodsInformation.cs
│   │   │   ├── F_GoodsInformation.Designer.cs
│   │   │   ├── F_GoodsInformation.resx
│   │   │   ├── F_ProcureInformation.cs
│   │   │   ├── F_ProcureInformation.Designer.cs
│   │   │   ├── F_ProcureInformation.resx
│   │   │   ├── F_Stockinandout.cs
│   │   │   ├── F_Stockinandout.Designer.cs
│   │   │   ├── F_Stockinandout.resx
│   │   │   ├── F_StockInformation.cs
│   │   │   ├── F_StockInformation.Designer.cs
│   │   │   ├── F_StockInformation.resx
│   │   │   ├── F_StockPrint.cs
│   │   │   ├── F_StockPrint.Designer.cs
│   │   │   ├── F_StockPrint.resx
│   │   │   └── GoodReport.rdlc
│   │   ├── Requistion.Designer.cs
│   │   ├── RequistionReport.rdlc
│   │   ├── Requistion.xsc
│   │   ├── Requistion.xsd
│   │   ├── Requistion.xss
│   │   ├── Resources
│   │   │   ├── 07.ico
│   │   │   ├── 162.ico
│   │   │   ├── 170.ico
│   │   │   ├── 171.ico
│   │   │   ├── 172.ico
│   │   │   ├── 203.ico
│   │   │   ├── 23.ico
│   │   │   ├── 36.ico
│   │   │   ├── 3.ico
│   │   │   ├── 42.ico
│   │   │   ├── 44.ico
│   │   │   ├── 45.ico
│   │   │   ├── 87.ico
│   │   │   ├── add.ico
│   │   │   ├── backup.ico
│   │   │   ├── cancle.ico
│   │   │   ├── check.ico
│   │   │   ├── Close.ico
│   │   │   ├── delete.ico
│   │   │   ├── detailed.ico
│   │   │   ├── edit.ico
│   │   │   ├── exit.ico
│   │   │   ├── find.ico
│   │   │   ├── help.bmp
│   │   │   ├── help.ico
│   │   │   ├── h.ico
│   │   │   ├── home.ico
│   │   │   ├── internet.bmp
│   │   │   ├── internet.ico
│   │   │   ├── main.ico
│   │   │   ├── print.ico
│   │   │   ├── question.ico
│   │   │   ├── save.ico
│   │   │   ├── search.ico
│   │   │   ├── s.ico
│   │   │   └── z.ico
│   │   ├── Selectbox
│   │   │   ├── F_SelectGood.cs
│   │   │   ├── F_SelectGood.Designer.cs
│   │   │   ├── F_SelectGood.resx
│   │   │   ├── F_SelectLog.cs
│   │   │   ├── F_SelectLog.Designer.cs
│   │   │   ├── F_SelectLog.resx
│   │   │   ├── F_SelectMessage.cs
│   │   │   ├── F_SelectMessage.Designer.cs
│   │   │   ├── F_SelectMessage.resx
│   │   │   ├── F_SelectPro.cs
│   │   │   ├── F_SelectPro.Designer.cs
│   │   │   ├── F_SelectPro.resx
│   │   │   ├── F_SelectSupplier.cs
│   │   │   ├── F_SelectSupplier.Designer.cs
│   │   │   ├── F_SelectSupplier.resx
│   │   │   ├── F_SelectUnitsBox.cs
│   │   │   ├── F_SelectUnitsBox.Designer.cs
│   │   │   ├── F_SelectUnitsBox.resx
│   │   │   ├── F_SelectWarehouse.cs
│   │   │   ├── F_SelectWarehouse.Designer.cs
│   │   │   └── F_SelectWarehouse.resx
│   │   ├── Stock
│   │   │   ├── F_StockManager.cs
│   │   │   ├── F_StockManager.Designer.cs
│   │   │   └── F_StockManager.resx
│   │   ├── UserLogin.cs
│   │   ├── UserLogin.Designer.cs
│   │   └── UserLogin.resx
│   ├── InventorySystem.sln
│   └── InventorySystem.suo
├── 02.数据库
│   ├── CREATE.sql
│   ├── Repertory_Log.LDF
│   ├── Repertory.MDF
│   ├── sql2.sql
│   └── 最新数据库.xls
├── 03.基本资料
│   ├── ~$项目-库存管理项目.doc
│   ├── 实训总结2.ppt
│   └── 实训项目-库存管理项目.doc
├── 04.其它
│   └── msiexec.exe
└── 06.安装
└── Storage
├── Debug
│   ├── setup.exe
│   └── Storage.msi
└── Storage.vdproj

32 directories, 256 files

标签:

实例下载地址

库存管理系统源码20140113

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警