ec3be9ca446f187622b0485c1b7bf1d2.png

我们致力于探索、分享和推荐最新的实用技术栈、开源项目、框架和实用工具。每天都有新鲜的开源资讯等待你的发现!

项目介绍

ModernWMS是一个.NET开源的简易完整的仓库管理系统,目前该系统支持跨平台,一处编码多处使用!

仓库管理系统

仓库管理系统(Warehouse Management System,WMS)是一种专门设计用来优化和管理仓库运作的软件系统。它通常涵盖了从货物入库到出库整个过程的管理,以及仓库内的库存跟踪、订单处理、货物分配和管理、工作人员任务分配等功能。

Windows下载源码编译部署

下载源码

cd C:\
wget -Uri https://gitee.com/modernwms/ModernWMS/repository/archive/master.zip  -OutFile master.zip
Expand-Archive -Path C:\master.zip -DestinationPath C:\

安装.NET SDK 和 NodeJS

wget -Uri https://download.visualstudio.microsoft.com/download/pr/35660869-0942-4c5d-8692-6e0d4040137a/4921a36b578d8358dac4c27598519832/dotnet-sdk-7.0.101-win-x64.exe  -OutFile dotnet-sdk-7.0.101-win-x64.exe
.\dotnet-sdk-7.0.101-win-x64.exe /install /quiet /norestart
wget -Uri https://nodejs.org/dist/v16.13.1/node-v16.13.1-x64.msi  -OutFile node-v16.13.1-x64.msi
msiexec /i .\node-v16.13.1-x64.msi /passive /norestart
npm install -g yarn

编译前端和后端

md C:\ModernWMS\frontend\
md C:\ModernWMS\backend\
cd C:\ModernWMS-master\backend
dotnet publish 
copy-item -path "C:\ModernWMS-master\backend\ModernWMS\bin\Debug\net7.0\publish\*" -destination "C:\ModernWMS\backend\" -recurse
copy-Item "C:\ModernWMS-master\backend\ModernWMS\wms.db" -Destination "C:\ModernWMS\backend\"
cd C:\ModernWMS-master\frontend  
yarn
yarn build 
copy-item -path "C:\ModernWMS-master\frontend\dist\*" -destination "C:\ModernWMS\frontend\" -recurse

安装nginx并启动

cd C:\
wget -Uri http://nginx.org/download/nginx-1.16.1.zip -OutFile nginx-1.16.1.zip
Expand-Archive -Path C:\nginx-1.16.1.zip -DestinationPath C:\
copy-item -path "C:\ModernWMS\frontend\*" -destination "C:\nginx-1.16.1\html\" -recurse
cd C:\nginx-1.16.1\
start nginx.exe
cd C:\ModernWMS\backend\
dotnet ModernWMS.dll --urls http://0.0.0.0:20011

预览项目运行效果

打开浏览器,进入:http://部署电脑的IP地址  

初始账号: admin 密码: 1

项目运行截图

28e6c3cac820d956659a48aa979ea1f3.pnge9734276ec53fac57208de7f8afb0ede.png3aa9d01ed1450cc5e5f7acab8d70ec6c.png21191d35fe45ebb8cb5327755c86ab15.png881c2e1d8eee0bb71b5ba65e6559eed5.png9d4e0bcd2d288ed0b99fa3db29ed985b.pnge39e2cb25c448bb64a18ab53e6066bc7.pngaa517faa33bd06d1b0c3a857806ecdd3.pngd6d3e6d21cd12b541359e4884b734bab.png9c3cdb074692db7f96ea0fca072bba3f.png

开源地址

https://gitee.com/modernwms/ModernWMS

ceb3593397b5df55850ef48d7e51fea7.gif

Logo

DAMO开发者矩阵,由阿里巴巴达摩院和中国互联网协会联合发起,致力于探讨最前沿的技术趋势与应用成果,搭建高质量的交流与分享平台,推动技术创新与产业应用链接,围绕“人工智能与新型计算”构建开放共享的开发者生态。

更多推荐