├── .gitignore ├── .vs └── wms │ └── FileContentIndex │ └── 69ad634f-321d-4ae5-a824-e2898dd002d3.vsidx ├── LICENSE ├── README.md ├── database └── datasource │ ├── customer.csv │ ├── depart.csv │ ├── document.csv │ ├── document_info.csv │ ├── duty.csv │ ├── duty_info.csv │ ├── employee.csv │ ├── in.csv │ ├── login.csv │ ├── order.csv │ ├── out.csv │ ├── product.csv │ └── supplier.csv ├── wms.Controls ├── Assets │ ├── Fonts │ │ └── iconfont.ttf │ └── Images │ │ └── date.png ├── Converter │ └── BooleanInvertConverter.cs ├── FloatButton.xaml ├── FloatButton.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Styles.xaml ├── ucDateTimePicker.xaml ├── ucDateTimePicker.xaml.cs └── wms.Controls.csproj ├── wms.sln ├── wms ├── App.config ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── Fonts │ │ └── iconfont.ttf │ ├── Images │ │ └── verificationCode.png │ └── Styles │ │ └── DefaultStyle.xaml ├── Common │ ├── CommandBase.cs │ ├── GlobalValues.cs │ ├── MD5Provider.cs │ ├── NotifyBase.cs │ ├── PasswordHelper.cs │ └── ValidCode.cs ├── Converter │ └── BoolToIntConverter.cs ├── DataAccess │ ├── DataEntity │ │ └── UserEntity.cs │ └── ServerDataAccess.cs ├── Model │ ├── CustomerModel.cs │ ├── DepartModel.cs │ ├── DocumentModel.cs │ ├── EmployeeModel.cs │ ├── InModel.cs │ ├── LoginModel.cs │ ├── OrderModel.cs │ ├── OutModel.cs │ ├── ProductModel.cs │ ├── SalesHistoryModel.cs │ ├── SalesModel.cs │ └── SupplierModel.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── View │ ├── CustomerView.xaml │ ├── CustomerView.xaml.cs │ ├── DepartView.xaml │ ├── DepartView.xaml.cs │ ├── EmployeeView.xaml │ ├── EmployeeView.xaml.cs │ ├── InView.xaml │ ├── InView.xaml.cs │ ├── LoginView.xaml │ ├── LoginView.xaml.cs │ ├── MainView.xaml │ ├── MainView.xaml.cs │ ├── OrderView.xaml │ ├── OrderView.xaml.cs │ ├── OutView.xaml │ ├── OutView.xaml.cs │ ├── ProductView.xaml │ ├── ProductView.xaml.cs │ ├── SalesHistoryView.xaml │ ├── SalesHistoryView.xaml.cs │ ├── SalesView.xaml │ ├── SalesView.xaml.cs │ ├── SupplierView.xaml │ └── SupplierView.xaml.cs ├── ViewModel │ ├── CustomerViewModel.cs │ ├── DepartViewModel.cs │ ├── EmployeeViewModel.cs │ ├── InViewModel.cs │ ├── LoginViewModel.cs │ ├── MainViewModel.cs │ ├── OrderViewModel.cs │ ├── OutViewModel.cs │ ├── ProductViewModel.cs │ ├── SalesHistoryViewModel.cs │ ├── SalesViewModel.cs │ └── SupplierViewModel.cs ├── packages.config ├── wms.csproj ├── wms.ico └── wms_1o2gtxri_wpftmp.csproj └── 仓库管理系统客户端设计.pdf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/.gitignore -------------------------------------------------------------------------------- /.vs/wms/FileContentIndex/69ad634f-321d-4ae5-a824-e2898dd002d3.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/.vs/wms/FileContentIndex/69ad634f-321d-4ae5-a824-e2898dd002d3.vsidx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/README.md -------------------------------------------------------------------------------- /database/datasource/customer.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/database/datasource/customer.csv -------------------------------------------------------------------------------- /database/datasource/depart.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/database/datasource/depart.csv -------------------------------------------------------------------------------- /database/datasource/document.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/database/datasource/document.csv -------------------------------------------------------------------------------- /database/datasource/document_info.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/database/datasource/document_info.csv -------------------------------------------------------------------------------- /database/datasource/duty.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/database/datasource/duty.csv -------------------------------------------------------------------------------- /database/datasource/duty_info.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/database/datasource/duty_info.csv -------------------------------------------------------------------------------- /database/datasource/employee.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/database/datasource/employee.csv -------------------------------------------------------------------------------- /database/datasource/in.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/database/datasource/in.csv -------------------------------------------------------------------------------- /database/datasource/login.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/database/datasource/login.csv -------------------------------------------------------------------------------- /database/datasource/order.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/database/datasource/order.csv -------------------------------------------------------------------------------- /database/datasource/out.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/database/datasource/out.csv -------------------------------------------------------------------------------- /database/datasource/product.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/database/datasource/product.csv -------------------------------------------------------------------------------- /database/datasource/supplier.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/database/datasource/supplier.csv -------------------------------------------------------------------------------- /wms.Controls/Assets/Fonts/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms.Controls/Assets/Fonts/iconfont.ttf -------------------------------------------------------------------------------- /wms.Controls/Assets/Images/date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms.Controls/Assets/Images/date.png -------------------------------------------------------------------------------- /wms.Controls/Converter/BooleanInvertConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms.Controls/Converter/BooleanInvertConverter.cs -------------------------------------------------------------------------------- /wms.Controls/FloatButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms.Controls/FloatButton.xaml -------------------------------------------------------------------------------- /wms.Controls/FloatButton.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms.Controls/FloatButton.xaml.cs -------------------------------------------------------------------------------- /wms.Controls/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms.Controls/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /wms.Controls/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms.Controls/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /wms.Controls/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms.Controls/Properties/Resources.resx -------------------------------------------------------------------------------- /wms.Controls/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms.Controls/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /wms.Controls/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms.Controls/Properties/Settings.settings -------------------------------------------------------------------------------- /wms.Controls/Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms.Controls/Styles.xaml -------------------------------------------------------------------------------- /wms.Controls/ucDateTimePicker.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms.Controls/ucDateTimePicker.xaml -------------------------------------------------------------------------------- /wms.Controls/ucDateTimePicker.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms.Controls/ucDateTimePicker.xaml.cs -------------------------------------------------------------------------------- /wms.Controls/wms.Controls.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms.Controls/wms.Controls.csproj -------------------------------------------------------------------------------- /wms.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms.sln -------------------------------------------------------------------------------- /wms/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/App.config -------------------------------------------------------------------------------- /wms/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/App.xaml -------------------------------------------------------------------------------- /wms/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/App.xaml.cs -------------------------------------------------------------------------------- /wms/Assets/Fonts/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/Assets/Fonts/iconfont.ttf -------------------------------------------------------------------------------- /wms/Assets/Images/verificationCode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/Assets/Images/verificationCode.png -------------------------------------------------------------------------------- /wms/Assets/Styles/DefaultStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/Assets/Styles/DefaultStyle.xaml -------------------------------------------------------------------------------- /wms/Common/CommandBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/Common/CommandBase.cs -------------------------------------------------------------------------------- /wms/Common/GlobalValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/Common/GlobalValues.cs -------------------------------------------------------------------------------- /wms/Common/MD5Provider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/Common/MD5Provider.cs -------------------------------------------------------------------------------- /wms/Common/NotifyBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/Common/NotifyBase.cs -------------------------------------------------------------------------------- /wms/Common/PasswordHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/Common/PasswordHelper.cs -------------------------------------------------------------------------------- /wms/Common/ValidCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/Common/ValidCode.cs -------------------------------------------------------------------------------- /wms/Converter/BoolToIntConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/Converter/BoolToIntConverter.cs -------------------------------------------------------------------------------- /wms/DataAccess/DataEntity/UserEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/DataAccess/DataEntity/UserEntity.cs -------------------------------------------------------------------------------- /wms/DataAccess/ServerDataAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/DataAccess/ServerDataAccess.cs -------------------------------------------------------------------------------- /wms/Model/CustomerModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/Model/CustomerModel.cs -------------------------------------------------------------------------------- /wms/Model/DepartModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/Model/DepartModel.cs -------------------------------------------------------------------------------- /wms/Model/DocumentModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/Model/DocumentModel.cs -------------------------------------------------------------------------------- /wms/Model/EmployeeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/Model/EmployeeModel.cs -------------------------------------------------------------------------------- /wms/Model/InModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/Model/InModel.cs -------------------------------------------------------------------------------- /wms/Model/LoginModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/Model/LoginModel.cs -------------------------------------------------------------------------------- /wms/Model/OrderModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/Model/OrderModel.cs -------------------------------------------------------------------------------- /wms/Model/OutModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/Model/OutModel.cs -------------------------------------------------------------------------------- /wms/Model/ProductModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/Model/ProductModel.cs -------------------------------------------------------------------------------- /wms/Model/SalesHistoryModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/Model/SalesHistoryModel.cs -------------------------------------------------------------------------------- /wms/Model/SalesModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/Model/SalesModel.cs -------------------------------------------------------------------------------- /wms/Model/SupplierModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/Model/SupplierModel.cs -------------------------------------------------------------------------------- /wms/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /wms/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /wms/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/Properties/Resources.resx -------------------------------------------------------------------------------- /wms/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /wms/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/Properties/Settings.settings -------------------------------------------------------------------------------- /wms/View/CustomerView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/View/CustomerView.xaml -------------------------------------------------------------------------------- /wms/View/CustomerView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/View/CustomerView.xaml.cs -------------------------------------------------------------------------------- /wms/View/DepartView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/View/DepartView.xaml -------------------------------------------------------------------------------- /wms/View/DepartView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/View/DepartView.xaml.cs -------------------------------------------------------------------------------- /wms/View/EmployeeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/View/EmployeeView.xaml -------------------------------------------------------------------------------- /wms/View/EmployeeView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/View/EmployeeView.xaml.cs -------------------------------------------------------------------------------- /wms/View/InView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/View/InView.xaml -------------------------------------------------------------------------------- /wms/View/InView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/View/InView.xaml.cs -------------------------------------------------------------------------------- /wms/View/LoginView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/View/LoginView.xaml -------------------------------------------------------------------------------- /wms/View/LoginView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/View/LoginView.xaml.cs -------------------------------------------------------------------------------- /wms/View/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/View/MainView.xaml -------------------------------------------------------------------------------- /wms/View/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/View/MainView.xaml.cs -------------------------------------------------------------------------------- /wms/View/OrderView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/View/OrderView.xaml -------------------------------------------------------------------------------- /wms/View/OrderView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/View/OrderView.xaml.cs -------------------------------------------------------------------------------- /wms/View/OutView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/View/OutView.xaml -------------------------------------------------------------------------------- /wms/View/OutView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/View/OutView.xaml.cs -------------------------------------------------------------------------------- /wms/View/ProductView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/View/ProductView.xaml -------------------------------------------------------------------------------- /wms/View/ProductView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/View/ProductView.xaml.cs -------------------------------------------------------------------------------- /wms/View/SalesHistoryView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/View/SalesHistoryView.xaml -------------------------------------------------------------------------------- /wms/View/SalesHistoryView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/View/SalesHistoryView.xaml.cs -------------------------------------------------------------------------------- /wms/View/SalesView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/View/SalesView.xaml -------------------------------------------------------------------------------- /wms/View/SalesView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/View/SalesView.xaml.cs -------------------------------------------------------------------------------- /wms/View/SupplierView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/View/SupplierView.xaml -------------------------------------------------------------------------------- /wms/View/SupplierView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/View/SupplierView.xaml.cs -------------------------------------------------------------------------------- /wms/ViewModel/CustomerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/ViewModel/CustomerViewModel.cs -------------------------------------------------------------------------------- /wms/ViewModel/DepartViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/ViewModel/DepartViewModel.cs -------------------------------------------------------------------------------- /wms/ViewModel/EmployeeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/ViewModel/EmployeeViewModel.cs -------------------------------------------------------------------------------- /wms/ViewModel/InViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/ViewModel/InViewModel.cs -------------------------------------------------------------------------------- /wms/ViewModel/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/ViewModel/LoginViewModel.cs -------------------------------------------------------------------------------- /wms/ViewModel/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/ViewModel/MainViewModel.cs -------------------------------------------------------------------------------- /wms/ViewModel/OrderViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/ViewModel/OrderViewModel.cs -------------------------------------------------------------------------------- /wms/ViewModel/OutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/ViewModel/OutViewModel.cs -------------------------------------------------------------------------------- /wms/ViewModel/ProductViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/ViewModel/ProductViewModel.cs -------------------------------------------------------------------------------- /wms/ViewModel/SalesHistoryViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/ViewModel/SalesHistoryViewModel.cs -------------------------------------------------------------------------------- /wms/ViewModel/SalesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/ViewModel/SalesViewModel.cs -------------------------------------------------------------------------------- /wms/ViewModel/SupplierViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/ViewModel/SupplierViewModel.cs -------------------------------------------------------------------------------- /wms/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/packages.config -------------------------------------------------------------------------------- /wms/wms.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/wms.csproj -------------------------------------------------------------------------------- /wms/wms.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/wms.ico -------------------------------------------------------------------------------- /wms/wms_1o2gtxri_wpftmp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/wms/wms_1o2gtxri_wpftmp.csproj -------------------------------------------------------------------------------- /仓库管理系统客户端设计.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newborne/wms/HEAD/仓库管理系统客户端设计.pdf --------------------------------------------------------------------------------