├── .gitignore ├── Db ├── TygaSoftAspnetDb.mdf ├── TygaSoftAspnetDb_log.LDF ├── WmsDb.mdf ├── WmsDb.sql └── WmsDb_log.ldf ├── License.md ├── Readme.md ├── docs ├── Win10.md └── readme.md ├── images ├── SqlServer001.png ├── SqlServer002.png ├── SqlServer003.png ├── iis001.png ├── iis002.png ├── iis003.png ├── iis004.png ├── iis005.png ├── wms001.png ├── wms002.png ├── wms003.png ├── wms004.png ├── wms005.png ├── wms006.png ├── wms007.png └── wms008.png └── src ├── Mobiles ├── .bowerrc └── Ionic │ ├── Wms.jsproj │ ├── bower.json │ ├── build.json │ ├── config.xml │ ├── gulpfile.js │ ├── ionic.project │ ├── package.json │ ├── plugins │ ├── android.json │ ├── cordova-plugin-console │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── RELEASENOTES.md │ │ ├── doc │ │ │ ├── de │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── es │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── fr │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── it │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ja │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ko │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── pl │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ru │ │ │ │ └── index.md │ │ │ └── zh │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ ├── package.json │ │ ├── plugin.xml │ │ ├── src │ │ │ ├── ios │ │ │ │ ├── CDVLogger.h │ │ │ │ └── CDVLogger.m │ │ │ ├── ubuntu │ │ │ │ ├── console.cpp │ │ │ │ └── console.h │ │ │ └── wp │ │ │ │ └── DebugConsole.cs │ │ ├── tests │ │ │ ├── plugin.xml │ │ │ └── tests.js │ │ └── www │ │ │ ├── console-via-logger.js │ │ │ └── logger.js │ ├── cordova-plugin-device │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── RELEASENOTES.md │ │ ├── doc │ │ │ ├── de │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── es │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── fr │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── it │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ja │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ko │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── pl │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ru │ │ │ │ └── index.md │ │ │ └── zh │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ ├── package.json │ │ ├── plugin.xml │ │ ├── src │ │ │ ├── android │ │ │ │ └── Device.java │ │ │ ├── blackberry10 │ │ │ │ └── index.js │ │ │ ├── browser │ │ │ │ └── DeviceProxy.js │ │ │ ├── firefoxos │ │ │ │ └── DeviceProxy.js │ │ │ ├── ios │ │ │ │ ├── CDVDevice.h │ │ │ │ └── CDVDevice.m │ │ │ ├── osx │ │ │ │ ├── CDVDevice.h │ │ │ │ └── CDVDevice.m │ │ │ ├── tizen │ │ │ │ └── DeviceProxy.js │ │ │ ├── ubuntu │ │ │ │ ├── device.cpp │ │ │ │ ├── device.h │ │ │ │ └── device.js │ │ │ ├── windows │ │ │ │ └── DeviceProxy.js │ │ │ └── wp │ │ │ │ └── Device.cs │ │ ├── tests │ │ │ ├── plugin.xml │ │ │ └── tests.js │ │ └── www │ │ │ └── device.js │ ├── cordova-plugin-network-information │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── RELEASENOTES.md │ │ ├── doc │ │ │ ├── de │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── es │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── fr │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── it │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ja │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ko │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── pl │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ru │ │ │ │ └── index.md │ │ │ └── zh │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ ├── package.json │ │ ├── plugin.xml │ │ ├── src │ │ │ ├── android │ │ │ │ └── NetworkManager.java │ │ │ ├── blackberry10 │ │ │ │ └── index.js │ │ │ ├── browser │ │ │ │ └── network.js │ │ │ ├── firefoxos │ │ │ │ └── NetworkProxy.js │ │ │ ├── ios │ │ │ │ ├── CDVConnection.h │ │ │ │ ├── CDVConnection.m │ │ │ │ ├── CDVReachability.h │ │ │ │ └── CDVReachability.m │ │ │ ├── tizen │ │ │ │ └── NetworkProxy.js │ │ │ ├── ubuntu │ │ │ │ ├── network_information.cpp │ │ │ │ └── network_information.h │ │ │ ├── windows │ │ │ │ └── NetworkInfoProxy.js │ │ │ └── wp │ │ │ │ └── NetworkStatus.cs │ │ ├── tests │ │ │ ├── plugin.xml │ │ │ └── tests.js │ │ └── www │ │ │ ├── Connection.js │ │ │ └── network.js │ ├── cordova-plugin-splashscreen │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── RELEASENOTES.md │ │ ├── doc │ │ │ ├── de │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── es │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── fr │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── it │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ja │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ko │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── pl │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ru │ │ │ │ └── index.md │ │ │ └── zh │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ ├── package.json │ │ ├── plugin.xml │ │ ├── src │ │ │ ├── android │ │ │ │ └── SplashScreen.java │ │ │ ├── blackberry10 │ │ │ │ └── index.js │ │ │ ├── browser │ │ │ │ └── SplashScreenProxy.js │ │ │ ├── ios │ │ │ │ ├── CDVSplashScreen.h │ │ │ │ ├── CDVSplashScreen.m │ │ │ │ ├── CDVViewController+SplashScreen.h │ │ │ │ └── CDVViewController+SplashScreen.m │ │ │ ├── tizen │ │ │ │ └── SplashScreenProxy.js │ │ │ ├── ubuntu │ │ │ │ ├── splashscreen.cpp │ │ │ │ └── splashscreen.h │ │ │ └── wp │ │ │ │ ├── ResolutionHelper.cs │ │ │ │ └── SplashScreen.cs │ │ ├── tests │ │ │ ├── ios │ │ │ │ ├── CDVSplashScreenTest.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ ├── CDVSplashScreenTest.xccheckout │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ └── CordovaLib.xcscheme │ │ │ │ ├── CDVSplashScreenTest │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── CDVSplashScreenLibTests │ │ │ │ │ │ ├── ImageNameTest.m │ │ │ │ │ │ ├── ImageNameTestDelegates.h │ │ │ │ │ │ ├── ImageNameTestDelegates.m │ │ │ │ │ │ └── Info.plist │ │ │ │ │ └── CDVSplashScreenTest.xcodeproj │ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ │ ├── project.xcworkspace │ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ │ └── CDVSplashScreenTest.xccheckout │ │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ ├── CDVSplashScreenLib.xcscheme │ │ │ │ │ │ └── CDVSplashScreenLibTests.xcscheme │ │ │ │ ├── README.md │ │ │ │ ├── doc │ │ │ │ │ ├── de │ │ │ │ │ │ └── README.md │ │ │ │ │ ├── es │ │ │ │ │ │ └── README.md │ │ │ │ │ ├── fr │ │ │ │ │ │ └── README.md │ │ │ │ │ ├── it │ │ │ │ │ │ └── README.md │ │ │ │ │ ├── ja │ │ │ │ │ │ └── README.md │ │ │ │ │ ├── ko │ │ │ │ │ │ └── README.md │ │ │ │ │ ├── pl │ │ │ │ │ │ └── README.md │ │ │ │ │ └── zh │ │ │ │ │ │ └── README.md │ │ │ │ └── package.json │ │ │ ├── plugin.xml │ │ │ └── tests.js │ │ └── www │ │ │ ├── splashscreen.js │ │ │ └── windows │ │ │ └── SplashScreenProxy.js │ ├── cordova-plugin-statusbar │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── RELEASENOTES.md │ │ ├── doc │ │ │ ├── de │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── es │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── fr │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── it │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ja │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ko │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── pl │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ru │ │ │ │ └── index.md │ │ │ └── zh │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ ├── package.json │ │ ├── plugin.xml │ │ ├── src │ │ │ ├── android │ │ │ │ └── StatusBar.java │ │ │ ├── browser │ │ │ │ └── statusbar.js │ │ │ ├── ios │ │ │ │ ├── CDVStatusBar.h │ │ │ │ └── CDVStatusBar.m │ │ │ ├── windows │ │ │ │ └── StatusBarProxy.js │ │ │ └── wp │ │ │ │ └── StatusBar.cs │ │ ├── tests │ │ │ ├── plugin.xml │ │ │ └── tests.js │ │ └── www │ │ │ └── statusbar.js │ ├── cordova-plugin-whitelist │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── RELEASENOTES.md │ │ ├── doc │ │ │ ├── de │ │ │ │ └── README.md │ │ │ ├── es │ │ │ │ └── README.md │ │ │ ├── fr │ │ │ │ └── README.md │ │ │ ├── it │ │ │ │ └── README.md │ │ │ ├── ja │ │ │ │ └── README.md │ │ │ ├── ko │ │ │ │ └── README.md │ │ │ ├── pl │ │ │ │ └── README.md │ │ │ └── zh │ │ │ │ └── README.md │ │ ├── package.json │ │ ├── plugin.xml │ │ └── src │ │ │ └── android │ │ │ └── WhitelistPlugin.java │ ├── cordova-plugin-x-toast │ │ ├── LICENSE │ │ ├── README.md │ │ ├── issue_template.md │ │ ├── package.json │ │ ├── plugin.xml │ │ ├── screenshots │ │ │ ├── screenshot-android-toast.png │ │ │ ├── screenshot-ios-toast.png │ │ │ ├── screenshot-wp8.jpg │ │ │ ├── styling-green.png │ │ │ └── styling-red.png │ │ ├── src │ │ │ ├── android │ │ │ │ └── nl │ │ │ │ │ └── xservices │ │ │ │ │ └── plugins │ │ │ │ │ └── Toast.java │ │ │ ├── blackberry10 │ │ │ │ ├── index.js │ │ │ │ └── native │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── public │ │ │ │ │ ├── json │ │ │ │ │ │ ├── autolink.h │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── features.h │ │ │ │ │ │ ├── forwards.h │ │ │ │ │ │ ├── json.h │ │ │ │ │ │ ├── reader.h │ │ │ │ │ │ ├── value.h │ │ │ │ │ │ └── writer.h │ │ │ │ │ ├── json_batchallocator.h │ │ │ │ │ ├── json_internalarray.inl │ │ │ │ │ ├── json_internalmap.inl │ │ │ │ │ ├── json_reader.cpp │ │ │ │ │ ├── json_value.cpp │ │ │ │ │ ├── json_valueiterator.inl │ │ │ │ │ ├── json_writer.cpp │ │ │ │ │ ├── plugin.cpp │ │ │ │ │ ├── plugin.h │ │ │ │ │ ├── tokenizer.cpp │ │ │ │ │ └── tokenizer.h │ │ │ │ │ └── src │ │ │ │ │ ├── Logger.cpp │ │ │ │ │ ├── Logger.hpp │ │ │ │ │ ├── toast_js.cpp │ │ │ │ │ ├── toast_js.hpp │ │ │ │ │ ├── toast_ndk.cpp │ │ │ │ │ └── toast_ndk.hpp │ │ │ ├── ios │ │ │ │ ├── Toast+UIView.h │ │ │ │ ├── Toast+UIView.m │ │ │ │ ├── Toast.h │ │ │ │ └── Toast.m │ │ │ └── wp8 │ │ │ │ └── Toast.cs │ │ ├── test │ │ │ └── tests.js │ │ └── www │ │ │ └── Toast.js │ ├── fetch.json │ ├── ionic-plugin-keyboard │ │ ├── LICENSE │ │ ├── README.md │ │ ├── package.json │ │ ├── plugin.xml │ │ ├── src │ │ │ ├── android │ │ │ │ └── IonicKeyboard.java │ │ │ ├── blackberry10 │ │ │ │ ├── index.js │ │ │ │ └── native │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── public │ │ │ │ │ ├── json │ │ │ │ │ │ ├── autolink.h │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── features.h │ │ │ │ │ │ ├── forwards.h │ │ │ │ │ │ ├── json.h │ │ │ │ │ │ ├── reader.h │ │ │ │ │ │ ├── value.h │ │ │ │ │ │ └── writer.h │ │ │ │ │ ├── json_batchallocator.h │ │ │ │ │ ├── json_internalarray.inl │ │ │ │ │ ├── json_internalmap.inl │ │ │ │ │ ├── json_reader.cpp │ │ │ │ │ ├── json_value.cpp │ │ │ │ │ ├── json_valueiterator.inl │ │ │ │ │ ├── json_writer.cpp │ │ │ │ │ ├── plugin.cpp │ │ │ │ │ ├── plugin.h │ │ │ │ │ ├── tokenizer.cpp │ │ │ │ │ └── tokenizer.h │ │ │ │ │ └── src │ │ │ │ │ ├── Logger.cpp │ │ │ │ │ ├── Logger.hpp │ │ │ │ │ ├── keyboard_js.cpp │ │ │ │ │ ├── keyboard_js.hpp │ │ │ │ │ ├── keyboard_ndk.cpp │ │ │ │ │ └── keyboard_ndk.hpp │ │ │ ├── ios │ │ │ │ ├── IonicKeyboard.h │ │ │ │ ├── IonicKeyboard.m │ │ │ │ ├── UIWebViewExtension.h │ │ │ │ └── UIWebViewExtension.m │ │ │ └── windows │ │ │ │ └── KeyboardProxy.js │ │ └── www │ │ │ ├── android │ │ │ └── keyboard.js │ │ │ └── ios │ │ │ └── keyboard.js │ └── tygasoft-plugin-rfidscan │ │ ├── plugin.xml │ │ ├── src │ │ └── android │ │ │ ├── RfidScan.java │ │ │ ├── UfhData.java │ │ │ ├── UhfLib.java │ │ │ └── Util.java │ │ └── www │ │ └── RfidScan.js │ ├── resources │ ├── icon.png │ └── splash.png │ ├── scss │ └── ionic.app.scss │ ├── taco.json │ └── www │ ├── css │ └── style.css │ ├── img │ └── icons │ │ ├── home-jh.png │ │ ├── home-kccx.png │ │ ├── home-pd.png │ │ ├── home-rfid.png │ │ └── home-sj.png │ ├── index.html │ ├── js │ ├── Queue.js │ ├── app.js │ ├── controllers.js │ ├── ngPlugins │ │ └── ionicDatepicker │ │ │ └── ionic-datepicker.bundle.min.js │ ├── ngTygaSoft │ │ ├── module.js │ │ └── services │ │ │ ├── Common.js │ │ │ ├── DbHelper.js │ │ │ ├── Found.js │ │ │ ├── Home.js │ │ │ ├── LocalStorage.js │ │ │ ├── Login.js │ │ │ ├── MC.js │ │ │ ├── Menu.js │ │ │ ├── OrderPicked.js │ │ │ ├── Pandian.js │ │ │ ├── RemoteData.js │ │ │ ├── Rfid.js │ │ │ ├── ShelfMission.js │ │ │ ├── StockLocationProduct.js │ │ │ ├── StockProduct.js │ │ │ ├── Sys.js │ │ │ ├── SysSet.js │ │ │ └── module.js │ ├── platformOverrides.js │ └── string.js │ ├── lib │ ├── angular-animate │ │ ├── .bower.json │ │ ├── README.md │ │ ├── angular-animate.js │ │ ├── angular-animate.min.js │ │ ├── angular-animate.min.js.map │ │ ├── bower.json │ │ ├── index.js │ │ └── package.json │ ├── angular-sanitize │ │ ├── .bower.json │ │ ├── README.md │ │ ├── angular-sanitize.js │ │ ├── angular-sanitize.min.js │ │ ├── angular-sanitize.min.js.map │ │ ├── bower.json │ │ ├── index.js │ │ └── package.json │ ├── angular-ui-router │ │ ├── .bower.json │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── api │ │ │ └── angular-ui-router.d.ts │ │ ├── bower.json │ │ └── src │ │ │ ├── common.js │ │ │ ├── resolve.js │ │ │ ├── state.js │ │ │ ├── stateDirectives.js │ │ │ ├── stateFilters.js │ │ │ ├── templateFactory.js │ │ │ ├── urlMatcherFactory.js │ │ │ ├── urlRouter.js │ │ │ ├── view.js │ │ │ ├── viewDirective.js │ │ │ └── viewScroll.js │ ├── angular │ │ ├── .bower.json │ │ ├── README.md │ │ ├── angular-csp.css │ │ ├── angular.js │ │ ├── angular.min.js │ │ ├── angular.min.js.gzip │ │ ├── angular.min.js.map │ │ ├── bower.json │ │ ├── index.js │ │ └── package.json │ ├── ionic │ │ ├── .bower.json │ │ ├── README.md │ │ ├── bower.json │ │ ├── css │ │ │ └── ionic.min.css │ │ ├── fonts │ │ │ ├── ionicons.eot │ │ │ ├── ionicons.svg │ │ │ ├── ionicons.ttf │ │ │ └── ionicons.woff │ │ └── js │ │ │ ├── angular-sanitize.min.js.map │ │ │ └── ionic.bundle.min.js │ └── ngCordova │ │ └── ng-cordova.min.js │ └── templates │ ├── AddShelfMission.html │ ├── AppPackage.html │ ├── Download │ └── wms-release-v142.apk │ ├── OrderPickProduct.html │ ├── OrderPicked.html │ ├── Pandian.html │ ├── PandianProduct.html │ ├── Rfid.html │ ├── ShelfMission.html │ ├── ShelfMissionProduct.html │ ├── StockLocationProduct.html │ ├── StockProduct.html │ ├── Sys │ ├── AddImportData.html │ └── ListImportData.html │ ├── SysSet.html │ ├── tab-Found.html │ ├── tab-Home.html │ ├── tab-Sys.html │ └── tabs.html └── TygaSoft ├── BLL ├── Applications.cs ├── AutoCode │ ├── BarcodeTemplate.cs │ ├── Category.cs │ ├── Company.cs │ ├── Customer.cs │ ├── FeaturePicture.cs │ ├── FeatureUser.cs │ ├── InfoneCustomer.cs │ ├── InfoneDeviceBorrowRecord.cs │ ├── InfoneDeviceRepairRecord.cs │ ├── InfoneProjectReportPrepare.cs │ ├── LogisticsDistribution.cs │ ├── MesCategory.cs │ ├── MesOrder.cs │ ├── MesProduct.cs │ ├── OrderMap.cs │ ├── OrderPickProduct.cs │ ├── OrderPicked.cs │ ├── OrderRandom.cs │ ├── OrderReceipt.cs │ ├── OrderReceiptAttr.cs │ ├── OrderReceiptProduct.cs │ ├── OrderReceiptProductAttr.cs │ ├── OrderReceiptProductQuality.cs │ ├── OrderReceiptRecord.cs │ ├── OrderSend.cs │ ├── OrderSendProduct.cs │ ├── Package.cs │ ├── Pandian.cs │ ├── PandianProduct.cs │ ├── Product.cs │ ├── RFID.cs │ ├── ShelfMission.cs │ ├── ShelfMissionProduct.cs │ ├── SiteMenus.cs │ ├── SiteMenusAccess.cs │ ├── SiteMulti.cs │ ├── SitePicture.cs │ ├── StockLocation.cs │ ├── StockLocationCtr.cs │ ├── StockLocationProduct.cs │ ├── StockProduct.cs │ ├── StockWarning.cs │ ├── Supplier.cs │ ├── Vehicle.cs │ └── Zone.cs ├── BLL.csproj ├── BarcodeScanAsyn.cs ├── BarcodeTemplate.cs ├── Category.cs ├── Company.cs ├── Customer.cs ├── DoTask.cs ├── FeatureUser.cs ├── HwCost.cs ├── InfoneCustomer.cs ├── InfoneDeviceBorrowRecord.cs ├── InfoneDeviceRepairRecord.cs ├── InfoneProjectReportPrepare.cs ├── LogisticsDistribution.cs ├── MesCategory.cs ├── MesOrder.cs ├── MesProduct.cs ├── OrderPickProduct.cs ├── OrderPicked.cs ├── OrderRandom.cs ├── OrderReceipt.cs ├── OrderReceiptProduct.cs ├── OrderReceiptRecord.cs ├── OrderSend.cs ├── OrderSendProduct.cs ├── Package.cs ├── Pandian.cs ├── PandianProduct.cs ├── Product.cs ├── Properties │ └── AssemblyInfo.cs ├── RFID.cs ├── RandomCode.cs ├── Role.cs ├── RunQueueAsyn.cs ├── ScanQueueAsyn.cs ├── ShelfMission.cs ├── ShelfMissionProduct.cs ├── SiteMenus.cs ├── SiteMulti.cs ├── SitePicture.cs ├── SiteRoles.cs ├── StockLocation.cs ├── StockLocationProduct.cs ├── StockProduct.cs ├── StockWarning.cs ├── Vehicle.cs └── Zone.cs ├── CacheDependencyFactory ├── CacheDependencyFactory.csproj ├── DependencyAccess.cs ├── DependencyFacade.cs └── Properties │ └── AssemblyInfo.cs ├── CustomProvider ├── CustomProfileCommon.cs ├── CustomProvider.csproj ├── CustomSiteMapProvider.cs ├── EnumMembershipCreateStatus.cs ├── MenusDataProxy.cs └── Properties │ └── AssemblyInfo.cs ├── DALFactory ├── DALFactory.csproj ├── DataAccess.cs └── Properties │ └── AssemblyInfo.cs ├── DBUtility ├── DBUtility.csproj ├── Properties │ └── AssemblyInfo.cs └── SqlHelper.cs ├── ICacheDependency ├── ICacheDependency.csproj ├── IMsSqlCacheDependency.cs └── Properties │ └── AssemblyInfo.cs ├── IDAL ├── AutoCode │ ├── IBarcodeTemplate.cs │ ├── ICategory.cs │ ├── ICompany.cs │ ├── ICustomer.cs │ ├── IFeaturePicture.cs │ ├── IFeatureUser.cs │ ├── IInfoneCustomer.cs │ ├── IInfoneDeviceBorrowRecord.cs │ ├── IInfoneDeviceRepairRecord.cs │ ├── IInfoneProjectReportPrepare.cs │ ├── ILogisticsDistribution.cs │ ├── IMesCategory.cs │ ├── IMesOrder.cs │ ├── IMesProduct.cs │ ├── IOrderMap.cs │ ├── IOrderPickProduct.cs │ ├── IOrderPicked.cs │ ├── IOrderRandom.cs │ ├── IOrderReceipt.cs │ ├── IOrderReceiptAttr.cs │ ├── IOrderReceiptProduct.cs │ ├── IOrderReceiptProductAttr.cs │ ├── IOrderReceiptProductQuality.cs │ ├── IOrderReceiptRecord.cs │ ├── IOrderSend.cs │ ├── IOrderSendProduct.cs │ ├── IPackage.cs │ ├── IPandian.cs │ ├── IPandianProduct.cs │ ├── IProduct.cs │ ├── IRFID.cs │ ├── IShelfMission.cs │ ├── IShelfMissionProduct.cs │ ├── ISiteMenus.cs │ ├── ISiteMenusAccess.cs │ ├── ISiteMulti.cs │ ├── ISitePicture.cs │ ├── IStockLocation.cs │ ├── IStockLocationCtr.cs │ ├── IStockLocationProduct.cs │ ├── IStockProduct.cs │ ├── IStockWarning.cs │ ├── ISupplier.cs │ ├── IVehicle.cs │ └── IZone.cs ├── IApplications.cs ├── IBarcodeTemplate.cs ├── ICategory.cs ├── ICompany.cs ├── ICustomer.cs ├── IDAL.csproj ├── IFeatureUser.cs ├── IInfoneCustomer.cs ├── IInfoneDeviceBorrowRecord.cs ├── IInfoneDeviceRepairRecord.cs ├── IInfoneProjectReportPrepare.cs ├── ILogisticsDistribution.cs ├── IMesCategory.cs ├── IMesOrder.cs ├── IMesProduct.cs ├── IOrderPickProduct.cs ├── IOrderPicked.cs ├── IOrderRandom.cs ├── IOrderReceipt.cs ├── IOrderReceiptProduct.cs ├── IOrderReceiptRecord.cs ├── IOrderSend.cs ├── IOrderSendProduct.cs ├── IPackage.cs ├── IPandian.cs ├── IPandianProduct.cs ├── IProduct.cs ├── IRFID.cs ├── IRole.cs ├── IShelfMission.cs ├── IShelfMissionProduct.cs ├── ISiteMenus.cs ├── ISiteMulti.cs ├── ISitePicture.cs ├── ISiteRoles.cs ├── IStockLocation.cs ├── IStockLocationProduct.cs ├── IStockProduct.cs ├── IStockWarning.cs ├── IVehicle.cs ├── IZone.cs └── Properties │ └── AssemblyInfo.cs ├── IMessaging ├── IBarcodeType.cs ├── IMessaging.csproj ├── IRunQueue.cs ├── IScanQueue.cs └── Properties │ └── AssemblyInfo.cs ├── Libraries ├── DocumentFormat.OpenXml.dll ├── Intelligencia.UrlRewriter.dll ├── Intelligencia.UrlRewriter.xml ├── Newtonsoft.Json.dll ├── Select.Html.dep ├── log4net.dll └── log4net.xml ├── MessagingFactory ├── MessagingFactory.csproj ├── Properties │ └── AssemblyInfo.cs └── QueueAccess.cs ├── Model ├── AutoCode │ ├── BarcodeTemplateInfo.cs │ ├── CategoryInfo.cs │ ├── CompanyInfo.cs │ ├── CustomerInfo.cs │ ├── FeaturePictureInfo.cs │ ├── FeatureUserInfo.cs │ ├── InfoneCustomerInfo.cs │ ├── InfoneDeviceBorrowRecordInfo.cs │ ├── InfoneDeviceRepairRecordInfo.cs │ ├── InfoneProjectReportPrepareInfo.cs │ ├── LogisticsDistributionInfo.cs │ ├── MesCategoryInfo.cs │ ├── MesOrderInfo.cs │ ├── MesProductInfo.cs │ ├── OrderMapInfo.cs │ ├── OrderPickProductInfo.cs │ ├── OrderPickedInfo.cs │ ├── OrderRandomInfo.cs │ ├── OrderReceiptAttrInfo.cs │ ├── OrderReceiptInfo.cs │ ├── OrderReceiptProductAttrInfo.cs │ ├── OrderReceiptProductInfo.cs │ ├── OrderReceiptProductQualityInfo.cs │ ├── OrderReceiptRecordInfo.cs │ ├── OrderSendInfo.cs │ ├── OrderSendProductInfo.cs │ ├── PackageInfo.cs │ ├── PandianInfo.cs │ ├── PandianProductInfo.cs │ ├── ProductInfo.cs │ ├── RFIDInfo.cs │ ├── ShelfMissionInfo.cs │ ├── ShelfMissionProductInfo.cs │ ├── SiteMenusAccessInfo.cs │ ├── SiteMenusInfo.cs │ ├── SiteMultiInfo.cs │ ├── SitePictureInfo.cs │ ├── SiteRolesInfo.cs │ ├── StockLocationCtrInfo.cs │ ├── StockLocationInfo.cs │ ├── StockLocationProductInfo.cs │ ├── StockProductInfo.cs │ ├── StockWarningInfo.cs │ ├── SupplierInfo.cs │ ├── VehicleInfo.cs │ └── ZoneInfo.cs ├── BarcodeInfo.cs ├── BarcodeTemplateFmInfo.cs ├── BarcodeTypeInfo.cs ├── ComboboxInfo.cs ├── CombogridInfo.cs ├── CompanyInfo.cs ├── CostInfo.cs ├── CustomerInfo.cs ├── FeatureUserInfo.cs ├── ImportProductInfo.cs ├── InfoneCustomerInfo.cs ├── InfoneDeviceBorrowRecordInfo.cs ├── InfoneDeviceRepairRecordInfo.cs ├── InfoneProjectReportPrepareInfo.cs ├── KeyValueInfo.cs ├── LoginInfo.cs ├── LogisticsDistributionInfo.cs ├── MinStockLocationInfo.cs ├── Model.csproj ├── OrderPickProductInfo.cs ├── OrderPickedInfo.cs ├── OrderReceiptInfo.cs ├── OrderReceiptProductInfo.cs ├── OrderReceiptRecordInfo.cs ├── OrderSelectProductInfo.cs ├── OrderSendInfo.cs ├── OrderSendProductInfo.cs ├── PackageInfo.cs ├── PandianInfo.cs ├── PandianProductInfo.cs ├── PdaShelfMissionProductInfo.cs ├── PdaStockLocationProductInfo.cs ├── PdfInfo.cs ├── PrintOrderInfo.cs ├── ProductStockLocationAttrInfo.cs ├── Properties │ └── AssemblyInfo.cs ├── RFIDInfo.cs ├── ResResultInfo.cs ├── RoleInfo.cs ├── RunQueueInfo.cs ├── ShelfMissionInfo.cs ├── ShelfMissionProductInfo.cs ├── ShelfMissionProductQueueInfo.cs ├── SiteMenusAccessItemInfo.cs ├── SiteMenusInfo.cs ├── SiteMultiInfo.cs ├── StockLocationInfo.cs ├── StockLocationProductAttrInfo.cs ├── StockLocationProductInfo.cs ├── StockProductInfo.cs ├── StockWarningInfo.cs ├── UserInfo.cs ├── UserProfileInfo.cs ├── UserRoleInfo.cs └── VehicleInfo.cs ├── MsmqMessaging ├── BarcodeType.cs ├── MsmqMessaging.csproj ├── Properties │ └── AssemblyInfo.cs ├── RunQueue.cs ├── ScanQueue.cs └── TygaSoftQueue.cs ├── SecurityWeb ├── Properties │ └── AssemblyInfo.cs ├── SecurityWeb.csproj ├── Services │ ├── AuthenticationService.svc │ ├── ProfileService.svc │ └── RoleService.svc ├── Web.Debug.config ├── Web.Release.config └── Web.config ├── SqlServerDAL ├── Applications.cs ├── AutoCode │ ├── BarcodeTemplate.cs │ ├── Category.cs │ ├── Company.cs │ ├── Customer.cs │ ├── FeaturePicture.cs │ ├── FeatureUser.cs │ ├── InfoneCustomer.cs │ ├── InfoneDeviceBorrowRecord.cs │ ├── InfoneDeviceRepairRecord.cs │ ├── InfoneProjectReportPrepare.cs │ ├── LogisticsDistribution.cs │ ├── MesCategory.cs │ ├── MesOrder.cs │ ├── MesProduct.cs │ ├── OrderMap.cs │ ├── OrderPickProduct.cs │ ├── OrderPicked.cs │ ├── OrderRandom.cs │ ├── OrderReceipt.cs │ ├── OrderReceiptAttr.cs │ ├── OrderReceiptProduct.cs │ ├── OrderReceiptProductAttr.cs │ ├── OrderReceiptProductQuality.cs │ ├── OrderReceiptRecord.cs │ ├── OrderSend.cs │ ├── OrderSendProduct.cs │ ├── Package.cs │ ├── Pandian.cs │ ├── PandianProduct.cs │ ├── Product.cs │ ├── RFID.cs │ ├── ShelfMission.cs │ ├── ShelfMissionProduct.cs │ ├── SiteMenus.cs │ ├── SiteMenusAccess.cs │ ├── SiteMulti.cs │ ├── SitePicture.cs │ ├── StockLocation.cs │ ├── StockLocationCtr.cs │ ├── StockLocationProduct.cs │ ├── StockProduct.cs │ ├── StockWarning.cs │ ├── Supplier.cs │ ├── Vehicle.cs │ └── Zone.cs ├── BarcodeTemplate.cs ├── Category.cs ├── Company.cs ├── Customer.cs ├── FeatureUser.cs ├── InfoneCustomer.cs ├── InfoneDeviceBorrowRecord.cs ├── InfoneDeviceRepairRecord.cs ├── InfoneProjectReportPrepare.cs ├── LogisticsDistribution.cs ├── MesCategory.cs ├── MesOrder.cs ├── MesProduct.cs ├── OrderPickProduct.cs ├── OrderPicked.cs ├── OrderRandom.cs ├── OrderReceipt.cs ├── OrderReceiptProduct.cs ├── OrderReceiptRecord.cs ├── OrderSend.cs ├── OrderSendProduct.cs ├── Package.cs ├── Pandian.cs ├── PandianProduct.cs ├── Product.cs ├── Properties │ └── AssemblyInfo.cs ├── RFID.cs ├── Role.cs ├── ShelfMission.cs ├── ShelfMissionProduct.cs ├── SiteMenus.cs ├── SiteMenusAccess.cs ├── SiteMulti.cs ├── SitePicture.cs ├── SiteRoles.cs ├── SqlServerDAL.csproj ├── StockLocation.cs ├── StockLocationProduct.cs ├── StockProduct.cs ├── StockWarning.cs ├── Vehicle.cs └── Zone.cs ├── SysException ├── CustomException.cs ├── Properties │ └── AssemblyInfo.cs └── SysException.csproj ├── SysHelper ├── AESEncrypt.cs ├── Common.cs ├── ConfigHelper.cs ├── EnumData.cs ├── EnumHelper.cs ├── HttpHelper.cs ├── MC.cs ├── MapHelper.cs ├── Properties │ └── AssemblyInfo.cs └── SysHelper.csproj ├── TableCacheDependency ├── Menus.cs ├── MsSqlCacheDependency.cs ├── Properties │ └── AssemblyInfo.cs └── TableCacheDependency.csproj ├── TaskProcessor ├── BarcodeScan.cs ├── BaseTask.cs ├── ITask.cs ├── Properties │ └── AssemblyInfo.cs ├── RunQueue.cs ├── ScanQueue.cs ├── StockWarningTimer.cs ├── TaskProcessor.csproj └── TimedExecution.cs ├── TaskWS ├── App.config ├── Log4net.config ├── ProjectInstaller.cs ├── Properties │ └── AssemblyInfo.cs ├── Service.cs └── TaskWS.csproj ├── TygaSoft-2010.sln ├── TygaSoft.sln ├── WcfCA ├── App.config ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── WcfCA.csproj ├── WcfModel ├── BarcodeScanQueueModel.cs ├── BarcodeTemplateFmModel.cs ├── BestStockLocationModel.cs ├── CategoryModel.cs ├── CustomerModel.cs ├── DeviceRepairRecordFmModel.cs ├── DeviceRepairRecordModel.cs ├── DlgCustomerModel.cs ├── DlgPackageModel.cs ├── DlgProductModel.cs ├── DlgStockLocationModel.cs ├── DlgZoneModel.cs ├── InfoneCustomerFmModel.cs ├── InfoneProjectReportPrepareFmModel.cs ├── ListModel.cs ├── MenuAuthModel.cs ├── MenusModel.cs ├── MenusPermissionModel.cs ├── Mes │ └── MesOrderModel.cs ├── OrderPrevReceiptModel.cs ├── OrderPrevReceiptProductFmModel.cs ├── OrderPrintModel.cs ├── OrderReceiptFmModel.cs ├── OrderReceiptModel.cs ├── OrderReceiptProductFmModel.cs ├── OrderReceiptProductModel.cs ├── OrderSelectProductModel.cs ├── PackageModel.cs ├── PandianFmModel.cs ├── PandianProductFmModel.cs ├── Pda │ ├── PdaLogisticsDistributionModel.cs │ ├── PdaOrderPickProductModel.cs │ ├── PdaOrderReceiptRecordModel.cs │ ├── PdaOrderSendModel.cs │ ├── PdaShelfMissionFmModel.cs │ ├── PdaShelfMissionModel.cs │ ├── PdaShelfMissionProductFmModel.cs │ ├── PdaShelfMissionProductModel.cs │ ├── PdaSkuModel.cs │ └── RFIDModel.cs ├── ProductFmModel.cs ├── ProductModel.cs ├── Properties │ └── AssemblyInfo.cs ├── ResResultModel.cs ├── RoleMenuFmModel.cs ├── RoleModel.cs ├── Send │ ├── OrderSendFmModel.cs │ ├── OrderSendModel.cs │ ├── OrderSendProductFmModel.cs │ └── OrderSendProductModel.cs ├── ShelfMissionFmModel.cs ├── ShelfMissionModel.cs ├── ShelfMissionProductFmModel.cs ├── ShelfMissionProductModel.cs ├── StockLocationFmModel.cs ├── StockLocationModel.cs ├── StockLocationProductModel.cs ├── StockProductModel.cs ├── StockWarningFmModel.cs ├── StockWarningModel.cs ├── SupplierModel.cs ├── Take │ └── OrderPickedProductModel.cs ├── ToPdfModel.cs ├── UpdateOrderPrevReceiptProductFmModel.cs ├── UpdateOrderReceiptProductFmModel.cs ├── UserModel.cs ├── VehicleFmModel.cs ├── WcfModel.csproj ├── Wechat │ └── StockProductNoticeModel.cs └── ZoneModel.cs ├── WcfService ├── IPda.cs ├── ISecurity.cs ├── IWms.cs ├── PdaService.cs ├── Properties │ └── AssemblyInfo.cs ├── ResResult.cs ├── SecurityService.cs ├── WcfService.csproj └── WmsService.cs ├── WcfWS ├── App.config ├── ProjectInstaller.Designer.cs ├── ProjectInstaller.cs ├── ProjectInstaller.resx ├── Properties │ └── AssemblyInfo.cs ├── Service.cs └── WcfWS.csproj ├── Web ├── Admin │ ├── Base │ │ ├── AddCategory.aspx │ │ ├── AddCategory.aspx.cs │ │ ├── AddCategory.aspx.designer.cs │ │ ├── AddCustomer.aspx │ │ ├── AddCustomer.aspx.cs │ │ ├── AddCustomer.aspx.designer.cs │ │ ├── AddPackage.aspx │ │ ├── AddPackage.aspx.cs │ │ ├── AddPackage.aspx.designer.cs │ │ ├── AddProduct.aspx │ │ ├── AddProduct.aspx.cs │ │ ├── AddProduct.aspx.designer.cs │ │ ├── AddStockLocation.aspx │ │ ├── AddStockLocation.aspx.cs │ │ ├── AddStockLocation.aspx.designer.cs │ │ ├── AddStockWarning.aspx │ │ ├── AddStockWarning.aspx.cs │ │ ├── AddStockWarning.aspx.designer.cs │ │ ├── AddSupplier.aspx │ │ ├── AddSupplier.aspx.cs │ │ ├── AddSupplier.aspx.designer.cs │ │ ├── AddVehicle.aspx │ │ ├── AddVehicle.aspx.cs │ │ ├── AddVehicle.aspx.designer.cs │ │ ├── AddZone.aspx │ │ ├── AddZone.aspx.cs │ │ ├── AddZone.aspx.designer.cs │ │ ├── DlgCustomer.aspx │ │ ├── DlgCustomer.aspx.cs │ │ ├── DlgCustomer.aspx.designer.cs │ │ ├── ListCategory.aspx │ │ ├── ListCategory.aspx.cs │ │ ├── ListCategory.aspx.designer.cs │ │ ├── ListPackage.aspx │ │ ├── ListPackage.aspx.cs │ │ ├── ListPackage.aspx.designer.cs │ │ ├── ListStockWarning.aspx │ │ ├── ListStockWarning.aspx.cs │ │ ├── ListStockWarning.aspx.designer.cs │ │ ├── ListVehicle.aspx │ │ ├── ListVehicle.aspx.cs │ │ ├── ListVehicle.aspx.designer.cs │ │ ├── TabPackage.aspx │ │ ├── TabPackage.aspx.cs │ │ └── TabPackage.aspx.designer.cs │ ├── Cost │ │ ├── ListCost.aspx │ │ ├── ListCost.aspx.cs │ │ └── ListCost.aspx.designer.cs │ ├── Device │ │ ├── ListDeviceMap.aspx │ │ ├── ListDeviceMap.aspx.cs │ │ └── ListDeviceMap.aspx.designer.cs │ ├── InStore │ │ ├── AddOrderReceiptProduct.aspx │ │ ├── AddOrderReceiptProduct.aspx.cs │ │ ├── AddOrderReceiptProduct.aspx.designer.cs │ │ ├── AddShelfMission.aspx │ │ ├── AddShelfMission.aspx.cs │ │ ├── AddShelfMission.aspx.designer.cs │ │ ├── EditOrderReceiptProduct.aspx │ │ ├── EditOrderReceiptProduct.aspx.cs │ │ ├── EditOrderReceiptProduct.aspx.designer.cs │ │ ├── EditShelfMissionProduct.aspx │ │ ├── EditShelfMissionProduct.aspx.cs │ │ ├── EditShelfMissionProduct.aspx.designer.cs │ │ ├── ListOrderReceipt.aspx │ │ ├── ListOrderReceipt.aspx.cs │ │ ├── ListOrderReceipt.aspx.designer.cs │ │ ├── ListOrderReceiptProduct.aspx │ │ ├── ListOrderReceiptProduct.aspx.cs │ │ ├── ListOrderReceiptProduct.aspx.designer.cs │ │ ├── ListShelfMission.aspx │ │ ├── ListShelfMission.aspx.cs │ │ └── ListShelfMission.aspx.designer.cs │ ├── OutStore │ │ ├── AddOrderSend.aspx │ │ ├── AddOrderSend.aspx.cs │ │ ├── AddOrderSend.aspx.designer.cs │ │ ├── EditOrderPickProduct.aspx │ │ ├── EditOrderPickProduct.aspx.cs │ │ ├── EditOrderPickProduct.aspx.designer.cs │ │ ├── EditOrderSendProduct.aspx │ │ ├── EditOrderSendProduct.aspx.cs │ │ ├── EditOrderSendProduct.aspx.designer.cs │ │ ├── ListOrderPickProduct.aspx │ │ ├── ListOrderPickProduct.aspx.cs │ │ ├── ListOrderPickProduct.aspx.designer.cs │ │ ├── ListOrderPicked.aspx │ │ ├── ListOrderPicked.aspx.cs │ │ ├── ListOrderPicked.aspx.designer.cs │ │ ├── ListOrderSend.aspx │ │ ├── ListOrderSend.aspx.cs │ │ └── ListOrderSend.aspx.designer.cs │ ├── Pandian │ │ ├── EditPandianProduct.aspx │ │ ├── EditPandianProduct.aspx.cs │ │ ├── EditPandianProduct.aspx.designer.cs │ │ ├── ListPandian.aspx │ │ ├── ListPandian.aspx.cs │ │ └── ListPandian.aspx.designer.cs │ ├── Print │ │ ├── BarcodeCtr.aspx │ │ ├── BarcodeCtr.aspx.cs │ │ ├── BarcodeCtr.aspx.designer.cs │ │ ├── InStockDemandOrder.aspx │ │ ├── InStockDemandOrder.aspx.cs │ │ └── InStockDemandOrder.aspx.designer.cs │ ├── Store │ │ ├── ListStockProduct.aspx │ │ ├── ListStockProduct.aspx.cs │ │ └── ListStockProduct.aspx.designer.cs │ └── Web.config ├── App_Data │ └── UrlRewriter.xml ├── Default.aspx ├── Default.aspx.cs ├── Default.aspx.designer.cs ├── Files │ ├── Download │ │ └── wms2saas-release-v001.apk │ ├── Template │ │ └── 维修设备记录导入模板.xlsx │ └── Zxing │ │ └── Barcode │ │ └── 123456789.jpg ├── Global.asax ├── Global.asax.cs ├── Handlers │ ├── HandlerContent.ashx │ ├── HandlerContent.ashx.cs │ ├── HandlerFile.ashx │ ├── HandlerFile.ashx.cs │ ├── HandlerMap.ashx │ ├── HandlerMap.ashx.cs │ ├── HandlerUpload.ashx │ ├── HandlerUpload.ashx.cs │ ├── HandlerUsers.ashx │ ├── HandlerUsers.ashx.cs │ ├── ValidateCode.ashx │ ├── ValidateCode.ashx.cs │ └── Web.config ├── Images │ ├── asset_1.png │ ├── asset_2.png │ ├── img_map.png │ ├── loginl.jpg │ ├── nopic.gif │ └── pda.png ├── Log4net.config ├── Login.aspx ├── Login.aspx.cs ├── Login.aspx.designer.cs ├── Manages │ ├── AddCompany.aspx │ ├── AddCompany.aspx.cs │ ├── AddCompany.aspx.designer.cs │ ├── Base │ │ ├── ListCustomer.aspx │ │ ├── ListCustomer.aspx.cs │ │ ├── ListCustomer.aspx.designer.cs │ │ ├── ListStockLocation.aspx │ │ ├── ListStockLocation.aspx.cs │ │ ├── ListStockLocation.aspx.designer.cs │ │ ├── ListSupplier.aspx │ │ ├── ListSupplier.aspx.cs │ │ ├── ListSupplier.aspx.designer.cs │ │ ├── ListZone.aspx │ │ ├── ListZone.aspx.cs │ │ └── ListZone.aspx.designer.cs │ ├── Default.aspx │ ├── Default.aspx.cs │ ├── Default.aspx.designer.cs │ ├── DlgBarcodeTemplate.aspx │ ├── DlgBarcodeTemplate.aspx.cs │ ├── DlgBarcodeTemplate.aspx.designer.cs │ ├── DlgPictureSelect.aspx │ ├── DlgPictureSelect.aspx.cs │ ├── DlgPictureSelect.aspx.designer.cs │ ├── DlgPictureUpload.aspx │ ├── DlgPictureUpload.aspx.cs │ ├── DlgPictureUpload.aspx.designer.cs │ ├── DlgProduct.aspx │ ├── DlgProduct.aspx.cs │ ├── DlgProduct.aspx.designer.cs │ ├── DlgStockLocationProduct.aspx │ ├── DlgStockLocationProduct.aspx.cs │ ├── DlgStockLocationProduct.aspx.designer.cs │ ├── DlgUpload.aspx │ ├── DlgUpload.aspx.cs │ ├── DlgUpload.aspx.designer.cs │ ├── EditLogisticsDistributionProduct.aspx │ ├── EditLogisticsDistributionProduct.aspx.cs │ ├── EditLogisticsDistributionProduct.aspx.designer.cs │ ├── Gzxy │ │ ├── AddCustomer.aspx │ │ ├── AddCustomer.aspx.cs │ │ ├── AddCustomer.aspx.designer.cs │ │ ├── AddDeviceBorrowRecord.aspx │ │ ├── AddDeviceBorrowRecord.aspx.cs │ │ ├── AddDeviceBorrowRecord.aspx.designer.cs │ │ ├── AddDeviceRepairRecord.aspx │ │ ├── AddDeviceRepairRecord.aspx.cs │ │ ├── AddDeviceRepairRecord.aspx.designer.cs │ │ ├── AddProjectReportPrepare.aspx │ │ ├── AddProjectReportPrepare.aspx.cs │ │ ├── AddProjectReportPrepare.aspx.designer.cs │ │ ├── EditProjectReportPrepare.aspx │ │ ├── EditProjectReportPrepare.aspx.cs │ │ ├── EditProjectReportPrepare.aspx.designer.cs │ │ ├── ListDeviceBorrowRecord.aspx │ │ ├── ListDeviceBorrowRecord.aspx.cs │ │ ├── ListDeviceBorrowRecord.aspx.designer.cs │ │ ├── ListDeviceRepairRecord.aspx │ │ ├── ListDeviceRepairRecord.aspx.cs │ │ ├── ListDeviceRepairRecord.aspx.designer.cs │ │ ├── ViewDeviceBorrowRecord.aspx │ │ ├── ViewDeviceBorrowRecord.aspx.cs │ │ └── ViewDeviceBorrowRecord.aspx.designer.cs │ ├── JsPictureSelect.txt │ ├── JsPictureUpload.txt │ ├── JsUpload.txt │ ├── ListCompany.aspx │ ├── ListCompany.aspx.cs │ ├── ListCompany.aspx.designer.cs │ ├── ListLogisticsDistribution.aspx │ ├── ListLogisticsDistribution.aspx.cs │ ├── ListLogisticsDistribution.aspx.designer.cs │ ├── ListRFID.aspx │ ├── ListRFID.aspx.cs │ ├── ListRFID.aspx.designer.cs │ ├── Maps │ │ ├── MapLogisticsDistribution.aspx │ │ ├── MapLogisticsDistribution.aspx.cs │ │ └── MapLogisticsDistribution.aspx.designer.cs │ ├── Members │ │ ├── AddRole.aspx │ │ ├── AddRole.aspx.cs │ │ ├── AddRole.aspx.designer.cs │ │ ├── AddRoleUser.aspx │ │ ├── AddRoleUser.aspx.cs │ │ ├── AddRoleUser.aspx.designer.cs │ │ ├── AddUser.aspx │ │ ├── AddUser.aspx.cs │ │ ├── AddUser.aspx.designer.cs │ │ ├── AddUserProfile.aspx │ │ ├── AddUserProfile.aspx.cs │ │ ├── AddUserProfile.aspx.designer.cs │ │ ├── AddUserRole.aspx │ │ ├── AddUserRole.aspx.cs │ │ ├── AddUserRole.aspx.designer.cs │ │ ├── ListRoles.aspx │ │ ├── ListRoles.aspx.cs │ │ ├── ListRoles.aspx.designer.cs │ │ ├── ListUsers.aspx │ │ ├── ListUsers.aspx.cs │ │ ├── ListUsers.aspx.designer.cs │ │ ├── UpdatePsw.aspx │ │ ├── UpdatePsw.aspx.cs │ │ └── UpdatePsw.aspx.designer.cs │ ├── Mes │ │ ├── ListMesCategory.aspx │ │ ├── ListMesCategory.aspx.cs │ │ ├── ListMesCategory.aspx.designer.cs │ │ ├── ListMesOrder.aspx │ │ ├── ListMesOrder.aspx.cs │ │ └── ListMesOrder.aspx.designer.cs │ ├── Print.aspx │ ├── Print.aspx.cs │ ├── Print.aspx.designer.cs │ ├── PrintBarcodeTemplate.aspx │ ├── PrintBarcodeTemplate.aspx.cs │ ├── PrintBarcodeTemplate.aspx.designer.cs │ ├── PrintProjectPrepare.aspx │ ├── PrintProjectPrepare.aspx.cs │ ├── PrintProjectPrepare.aspx.designer.cs │ ├── Sys │ │ ├── AddMenus.aspx │ │ ├── AddMenus.aspx.cs │ │ ├── AddMenus.aspx.designer.cs │ │ ├── AddRegion.aspx │ │ ├── AddRegion.aspx.cs │ │ ├── AddRegion.aspx.designer.cs │ │ ├── AddSiteMulti.aspx │ │ ├── AddSiteMulti.aspx.cs │ │ ├── AddSiteMulti.aspx.designer.cs │ │ ├── DlgUsers.aspx │ │ ├── DlgUsers.aspx.cs │ │ ├── DlgUsers.aspx.designer.cs │ │ ├── ListMenus.aspx │ │ ├── ListMenus.aspx.cs │ │ ├── ListMenus.aspx.designer.cs │ │ ├── ListRegion.aspx │ │ ├── ListRegion.aspx.cs │ │ ├── ListRegion.aspx.designer.cs │ │ ├── ListRoleMenu.aspx │ │ ├── ListRoleMenu.aspx.cs │ │ ├── ListRoleMenu.aspx.designer.cs │ │ ├── ListSiteMulti.aspx │ │ ├── ListSiteMulti.aspx.cs │ │ └── ListSiteMulti.aspx.designer.cs │ ├── UserCenter.aspx │ ├── UserCenter.aspx.cs │ ├── UserCenter.aspx.designer.cs │ └── Web.config ├── Masters │ ├── Blank.Master │ ├── Blank.Master.cs │ ├── Blank.Master.designer.cs │ ├── Manages.Master │ ├── Manages.Master.cs │ ├── Manages.Master.designer.cs │ ├── Shares.Master │ ├── Shares.Master.cs │ └── Shares.Master.designer.cs ├── MyTest │ ├── BarcodeCtr.aspx │ ├── BarcodeCtr.aspx.cs │ ├── BarcodeCtr.aspx.designer.cs │ ├── MyBarcodeCtr.aspx │ ├── MyBarcodeCtr.aspx.cs │ ├── MyBarcodeCtr.aspx.designer.cs │ ├── MyTest.aspx │ ├── MyTest.aspx.cs │ ├── MyTest.aspx.designer.cs │ ├── PrintTest.aspx │ ├── PrintTest.aspx.cs │ ├── PrintTest.aspx.designer.cs │ ├── WebForm1.aspx │ ├── WebForm1.aspx.cs │ └── WebForm1.aspx.designer.cs ├── Properties │ └── AssemblyInfo.cs ├── Scripts │ ├── Admin │ │ ├── Base │ │ │ ├── AddCustomer.js │ │ │ ├── AddPackage.js │ │ │ ├── AddProduct.js │ │ │ ├── AddStockLocation.js │ │ │ ├── AddStockWarning.js │ │ │ ├── AddSupplier.js │ │ │ ├── AddZone.js │ │ │ ├── DlgPackage.js │ │ │ ├── DlgProduct.js │ │ │ ├── ListCategory.js │ │ │ ├── ListPackage.js │ │ │ ├── ListProduct.js │ │ │ ├── ListStockWarning.js │ │ │ └── tabPackage.js │ │ ├── Cost │ │ │ └── ListCost.js │ │ ├── Default.js │ │ ├── InStore │ │ │ ├── AddOrderReceiptProduct.js │ │ │ ├── AddOrderReceiptRecord.js │ │ │ ├── AddShelfMission.js │ │ │ ├── DlgOrderProduct.js │ │ │ ├── ListOrderReceipt.js │ │ │ ├── ListOrderReceiptProduct.js │ │ │ ├── ListShelfMission.js │ │ │ ├── ListShelfMissionProduct.js │ │ │ └── ListTakeOrder.js │ │ ├── Members │ │ │ └── ListUser.js │ │ ├── Print │ │ │ └── InStockDemandOrder.js │ │ ├── Store │ │ │ └── ListStockProduct.js │ │ └── Sys │ │ │ ├── ListMenus.js │ │ │ └── ListRegion.js │ ├── Common.js │ ├── DlgFiles.js │ ├── DlgUpload.js │ ├── JeasyuiExtend.js │ ├── JeasyuiHelper.js │ ├── Login.js │ ├── Manages │ │ ├── AddCompany.js │ │ ├── AddLogisticsDistribution.js │ │ ├── AddOrderPicked.js │ │ ├── AddOrderReceipt.js │ │ ├── AddOrderSend.js │ │ ├── AddPandian.js │ │ ├── AddVehicle.js │ │ ├── BarcodeCtr.js │ │ ├── Base │ │ │ ├── ListCustomer.js │ │ │ ├── ListStockLocation.js │ │ │ ├── ListSupplier.js │ │ │ └── ListZone.js │ │ ├── Default.js │ │ ├── DlgBarcodeTemplate.js │ │ ├── DlgCompany.js │ │ ├── DlgCustomer.js │ │ ├── DlgOrder.js │ │ ├── DlgProduct.js │ │ ├── DlgStockLocation.js │ │ ├── DlgStockLocationProduct.js │ │ ├── DlgUsers.js │ │ ├── DlgVehicle.js │ │ ├── DlgZone.js │ │ ├── Gzxy │ │ │ ├── AddCustomer.js │ │ │ ├── AddDeviceRepairRecord.js │ │ │ ├── AddProjectReportPrepare.js │ │ │ ├── DeviceBorrowRecord.js │ │ │ ├── DlgCustomer.js │ │ │ ├── ListCustomer.js │ │ │ ├── ListDeviceRepairRecord.js │ │ │ └── ListProjectReportPrepare.js │ │ ├── ListCompany.js │ │ ├── ListLogisticsDistribution.js │ │ ├── ListOrderPickProduct.js │ │ ├── ListOrderPicked.js │ │ ├── ListOrderReceiptProduct.js │ │ ├── ListOrderSend.js │ │ ├── ListOrderSendProduct.js │ │ ├── ListPandian.js │ │ ├── ListPandianProduct.js │ │ ├── ListRFID.js │ │ ├── ListVehicle.js │ │ ├── Maps │ │ │ └── MapLogisticsDistribution.js │ │ ├── Members │ │ │ └── ListUser.js │ │ ├── Mes │ │ │ ├── EditMesCategory.js │ │ │ └── ListMesOrder.js │ │ ├── Notice │ │ │ └── Wechat.js │ │ ├── Print.js │ │ ├── PrintBarcodeTemplate.js │ │ ├── PrintProjectPrepare.js │ │ ├── Sys │ │ │ ├── ListMenus.js │ │ │ ├── ListRoleMenu.js │ │ │ └── SiteMulti.js │ │ ├── SysApp.js │ │ └── UCMenu.js │ ├── Menus.js │ ├── Plugins │ │ ├── HighCharts │ │ │ ├── highcharts-3d.js │ │ │ └── highcharts.js │ │ ├── Jeasyui15 │ │ │ ├── changelog.txt │ │ │ ├── easyloader.js │ │ │ ├── jquery.easyui.min.js │ │ │ ├── jquery.easyui.mobile.js │ │ │ ├── jquery.min.js │ │ │ ├── license_freeware.txt │ │ │ ├── locale │ │ │ │ ├── easyui-lang-en.js │ │ │ │ ├── easyui-lang-zh_CN.js │ │ │ │ └── easyui-lang-zh_TW.js │ │ │ ├── plugins │ │ │ │ ├── jquery.accordion.js │ │ │ │ ├── jquery.calendar.js │ │ │ │ ├── jquery.combo.js │ │ │ │ ├── jquery.combobox.js │ │ │ │ ├── jquery.combogrid.js │ │ │ │ ├── jquery.combotree.js │ │ │ │ ├── jquery.combotreegrid.js │ │ │ │ ├── jquery.datagrid.js │ │ │ │ ├── jquery.datalist.js │ │ │ │ ├── jquery.datebox.js │ │ │ │ ├── jquery.datetimebox.js │ │ │ │ ├── jquery.datetimespinner.js │ │ │ │ ├── jquery.dialog.js │ │ │ │ ├── jquery.draggable.js │ │ │ │ ├── jquery.droppable.js │ │ │ │ ├── jquery.filebox.js │ │ │ │ ├── jquery.form.js │ │ │ │ ├── jquery.layout.js │ │ │ │ ├── jquery.linkbutton.js │ │ │ │ ├── jquery.menu.js │ │ │ │ ├── jquery.menubutton.js │ │ │ │ ├── jquery.messager.js │ │ │ │ ├── jquery.mobile.js │ │ │ │ ├── jquery.numberbox.js │ │ │ │ ├── jquery.numberspinner.js │ │ │ │ ├── jquery.pagination.js │ │ │ │ ├── jquery.panel.js │ │ │ │ ├── jquery.parser.js │ │ │ │ ├── jquery.passwordbox.js │ │ │ │ ├── jquery.progressbar.js │ │ │ │ ├── jquery.propertygrid.js │ │ │ │ ├── jquery.resizable.js │ │ │ │ ├── jquery.searchbox.js │ │ │ │ ├── jquery.slider.js │ │ │ │ ├── jquery.spinner.js │ │ │ │ ├── jquery.splitbutton.js │ │ │ │ ├── jquery.switchbutton.js │ │ │ │ ├── jquery.tabs.js │ │ │ │ ├── jquery.textbox.js │ │ │ │ ├── jquery.timespinner.js │ │ │ │ ├── jquery.tooltip.js │ │ │ │ ├── jquery.tree.js │ │ │ │ ├── jquery.treegrid.js │ │ │ │ ├── jquery.validatebox.js │ │ │ │ └── jquery.window.js │ │ │ ├── readme.txt │ │ │ ├── src │ │ │ │ ├── easyloader.js │ │ │ │ ├── jquery.accordion.js │ │ │ │ ├── jquery.calendar.js │ │ │ │ ├── jquery.combobox.js │ │ │ │ ├── jquery.datebox.js │ │ │ │ ├── jquery.draggable.js │ │ │ │ ├── jquery.droppable.js │ │ │ │ ├── jquery.form.js │ │ │ │ ├── jquery.linkbutton.js │ │ │ │ ├── jquery.menu.js │ │ │ │ ├── jquery.parser.js │ │ │ │ ├── jquery.progressbar.js │ │ │ │ ├── jquery.propertygrid.js │ │ │ │ ├── jquery.resizable.js │ │ │ │ ├── jquery.slider.js │ │ │ │ ├── jquery.tabs.js │ │ │ │ └── jquery.window.js │ │ │ └── themes │ │ │ │ ├── black │ │ │ │ ├── accordion.css │ │ │ │ ├── calendar.css │ │ │ │ ├── combo.css │ │ │ │ ├── combobox.css │ │ │ │ ├── datagrid.css │ │ │ │ ├── datalist.css │ │ │ │ ├── datebox.css │ │ │ │ ├── dialog.css │ │ │ │ ├── easyui.css │ │ │ │ ├── filebox.css │ │ │ │ ├── images │ │ │ │ │ ├── accordion_arrows.png │ │ │ │ │ ├── blank.gif │ │ │ │ │ ├── calendar_arrows.png │ │ │ │ │ ├── combo_arrow.png │ │ │ │ │ ├── datagrid_icons.png │ │ │ │ │ ├── datebox_arrow.png │ │ │ │ │ ├── layout_arrows.png │ │ │ │ │ ├── linkbutton_bg.png │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── menu_arrows.png │ │ │ │ │ ├── messager_icons.png │ │ │ │ │ ├── pagination_icons.png │ │ │ │ │ ├── panel_tools.png │ │ │ │ │ ├── passwordbox_close.png │ │ │ │ │ ├── passwordbox_open.png │ │ │ │ │ ├── searchbox_button.png │ │ │ │ │ ├── slider_handle.png │ │ │ │ │ ├── spinner_arrows.png │ │ │ │ │ ├── tabs_icons.png │ │ │ │ │ ├── tree_icons.png │ │ │ │ │ └── validatebox_warning.png │ │ │ │ ├── layout.css │ │ │ │ ├── linkbutton.css │ │ │ │ ├── menu.css │ │ │ │ ├── menubutton.css │ │ │ │ ├── messager.css │ │ │ │ ├── numberbox.css │ │ │ │ ├── pagination.css │ │ │ │ ├── panel.css │ │ │ │ ├── passwordbox.css │ │ │ │ ├── progressbar.css │ │ │ │ ├── propertygrid.css │ │ │ │ ├── searchbox.css │ │ │ │ ├── slider.css │ │ │ │ ├── spinner.css │ │ │ │ ├── splitbutton.css │ │ │ │ ├── switchbutton.css │ │ │ │ ├── tabs.css │ │ │ │ ├── textbox.css │ │ │ │ ├── tooltip.css │ │ │ │ ├── tree.css │ │ │ │ ├── validatebox.css │ │ │ │ └── window.css │ │ │ │ ├── bootstrap │ │ │ │ ├── accordion.css │ │ │ │ ├── calendar.css │ │ │ │ ├── combo.css │ │ │ │ ├── combobox.css │ │ │ │ ├── datagrid.css │ │ │ │ ├── datalist.css │ │ │ │ ├── datebox.css │ │ │ │ ├── dialog.css │ │ │ │ ├── easyui.css │ │ │ │ ├── filebox.css │ │ │ │ ├── images │ │ │ │ │ ├── accordion_arrows.png │ │ │ │ │ ├── blank.gif │ │ │ │ │ ├── calendar_arrows.png │ │ │ │ │ ├── combo_arrow.png │ │ │ │ │ ├── datagrid_icons.png │ │ │ │ │ ├── datebox_arrow.png │ │ │ │ │ ├── layout_arrows.png │ │ │ │ │ ├── linkbutton_bg.png │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── menu_arrows.png │ │ │ │ │ ├── messager_icons.png │ │ │ │ │ ├── pagination_icons.png │ │ │ │ │ ├── panel_tools.png │ │ │ │ │ ├── passwordbox_close.png │ │ │ │ │ ├── passwordbox_open.png │ │ │ │ │ ├── searchbox_button.png │ │ │ │ │ ├── slider_handle.png │ │ │ │ │ ├── spinner_arrows.png │ │ │ │ │ ├── tabs_icons.png │ │ │ │ │ ├── tree_icons.png │ │ │ │ │ └── validatebox_warning.png │ │ │ │ ├── layout.css │ │ │ │ ├── linkbutton.css │ │ │ │ ├── menu.css │ │ │ │ ├── menubutton.css │ │ │ │ ├── messager.css │ │ │ │ ├── numberbox.css │ │ │ │ ├── pagination.css │ │ │ │ ├── panel.css │ │ │ │ ├── passwordbox.css │ │ │ │ ├── progressbar.css │ │ │ │ ├── propertygrid.css │ │ │ │ ├── searchbox.css │ │ │ │ ├── slider.css │ │ │ │ ├── spinner.css │ │ │ │ ├── splitbutton.css │ │ │ │ ├── switchbutton.css │ │ │ │ ├── tabs.css │ │ │ │ ├── textbox.css │ │ │ │ ├── tooltip.css │ │ │ │ ├── tree.css │ │ │ │ ├── validatebox.css │ │ │ │ └── window.css │ │ │ │ ├── color.css │ │ │ │ ├── default │ │ │ │ ├── accordion.css │ │ │ │ ├── calendar.css │ │ │ │ ├── combo.css │ │ │ │ ├── combobox.css │ │ │ │ ├── datagrid.css │ │ │ │ ├── datalist.css │ │ │ │ ├── datebox.css │ │ │ │ ├── dialog.css │ │ │ │ ├── easyui.css │ │ │ │ ├── filebox.css │ │ │ │ ├── images │ │ │ │ │ ├── accordion_arrows.png │ │ │ │ │ ├── blank.gif │ │ │ │ │ ├── calendar_arrows.png │ │ │ │ │ ├── combo_arrow.png │ │ │ │ │ ├── datagrid_icons.png │ │ │ │ │ ├── datebox_arrow.png │ │ │ │ │ ├── layout_arrows.png │ │ │ │ │ ├── linkbutton_bg.png │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── menu_arrows.png │ │ │ │ │ ├── messager_icons.png │ │ │ │ │ ├── pagination_icons.png │ │ │ │ │ ├── panel_tools.png │ │ │ │ │ ├── passwordbox_close.png │ │ │ │ │ ├── passwordbox_open.png │ │ │ │ │ ├── searchbox_button.png │ │ │ │ │ ├── slider_handle.png │ │ │ │ │ ├── spinner_arrows.png │ │ │ │ │ ├── tabs_icons.png │ │ │ │ │ ├── tree_icons.png │ │ │ │ │ └── validatebox_warning.png │ │ │ │ ├── layout.css │ │ │ │ ├── linkbutton.css │ │ │ │ ├── menu.css │ │ │ │ ├── menubutton.css │ │ │ │ ├── messager.css │ │ │ │ ├── numberbox.css │ │ │ │ ├── pagination.css │ │ │ │ ├── panel.css │ │ │ │ ├── passwordbox.css │ │ │ │ ├── progressbar.css │ │ │ │ ├── propertygrid.css │ │ │ │ ├── searchbox.css │ │ │ │ ├── slider.css │ │ │ │ ├── spinner.css │ │ │ │ ├── splitbutton.css │ │ │ │ ├── switchbutton.css │ │ │ │ ├── tabs.css │ │ │ │ ├── textbox.css │ │ │ │ ├── tooltip.css │ │ │ │ ├── tree.css │ │ │ │ ├── validatebox.css │ │ │ │ └── window.css │ │ │ │ ├── gray │ │ │ │ ├── accordion.css │ │ │ │ ├── calendar.css │ │ │ │ ├── combo.css │ │ │ │ ├── combobox.css │ │ │ │ ├── datagrid.css │ │ │ │ ├── datalist.css │ │ │ │ ├── datebox.css │ │ │ │ ├── dialog.css │ │ │ │ ├── easyui.css │ │ │ │ ├── filebox.css │ │ │ │ ├── images │ │ │ │ │ ├── accordion_arrows.png │ │ │ │ │ ├── blank.gif │ │ │ │ │ ├── calendar_arrows.png │ │ │ │ │ ├── combo_arrow.png │ │ │ │ │ ├── datagrid_icons.png │ │ │ │ │ ├── datebox_arrow.png │ │ │ │ │ ├── layout_arrows.png │ │ │ │ │ ├── linkbutton_bg.png │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── menu_arrows.png │ │ │ │ │ ├── messager_icons.png │ │ │ │ │ ├── pagination_icons.png │ │ │ │ │ ├── panel_tools.png │ │ │ │ │ ├── passwordbox_close.png │ │ │ │ │ ├── passwordbox_open.png │ │ │ │ │ ├── searchbox_button.png │ │ │ │ │ ├── slider_handle.png │ │ │ │ │ ├── spinner_arrows.png │ │ │ │ │ ├── tabs_icons.png │ │ │ │ │ ├── tree_icons.png │ │ │ │ │ └── validatebox_warning.png │ │ │ │ ├── layout.css │ │ │ │ ├── linkbutton.css │ │ │ │ ├── menu.css │ │ │ │ ├── menubutton.css │ │ │ │ ├── messager.css │ │ │ │ ├── numberbox.css │ │ │ │ ├── pagination.css │ │ │ │ ├── panel.css │ │ │ │ ├── passwordbox.css │ │ │ │ ├── progressbar.css │ │ │ │ ├── propertygrid.css │ │ │ │ ├── searchbox.css │ │ │ │ ├── slider.css │ │ │ │ ├── spinner.css │ │ │ │ ├── splitbutton.css │ │ │ │ ├── switchbutton.css │ │ │ │ ├── tabs.css │ │ │ │ ├── textbox.css │ │ │ │ ├── tooltip.css │ │ │ │ ├── tree.css │ │ │ │ ├── validatebox.css │ │ │ │ └── window.css │ │ │ │ ├── icon.css │ │ │ │ ├── icons │ │ │ │ ├── back.png │ │ │ │ ├── blank.gif │ │ │ │ ├── cancel.png │ │ │ │ ├── clear.png │ │ │ │ ├── cut.png │ │ │ │ ├── edit_add.png │ │ │ │ ├── edit_remove.png │ │ │ │ ├── filesave.png │ │ │ │ ├── filter.png │ │ │ │ ├── help.png │ │ │ │ ├── large_chart.png │ │ │ │ ├── large_clipart.png │ │ │ │ ├── large_picture.png │ │ │ │ ├── large_shapes.png │ │ │ │ ├── large_smartart.png │ │ │ │ ├── lock.png │ │ │ │ ├── man.png │ │ │ │ ├── mini_add.png │ │ │ │ ├── mini_edit.png │ │ │ │ ├── mini_refresh.png │ │ │ │ ├── more.png │ │ │ │ ├── no.png │ │ │ │ ├── ok.png │ │ │ │ ├── pencil.png │ │ │ │ ├── print.png │ │ │ │ ├── redo.png │ │ │ │ ├── reload.png │ │ │ │ ├── search.png │ │ │ │ ├── sum.png │ │ │ │ ├── tip.png │ │ │ │ └── undo.png │ │ │ │ ├── material │ │ │ │ ├── accordion.css │ │ │ │ ├── calendar.css │ │ │ │ ├── combo.css │ │ │ │ ├── combobox.css │ │ │ │ ├── datagrid.css │ │ │ │ ├── datalist.css │ │ │ │ ├── datebox.css │ │ │ │ ├── dialog.css │ │ │ │ ├── easyui.css │ │ │ │ ├── filebox.css │ │ │ │ ├── images │ │ │ │ │ ├── accordion_arrows.png │ │ │ │ │ ├── blank.gif │ │ │ │ │ ├── calendar_arrows.png │ │ │ │ │ ├── combo_arrow.png │ │ │ │ │ ├── datagrid_icons.png │ │ │ │ │ ├── datebox_arrow.png │ │ │ │ │ ├── layout_arrows.png │ │ │ │ │ ├── linkbutton_bg.png │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── menu_arrows.png │ │ │ │ │ ├── messager_icons.png │ │ │ │ │ ├── pagination_icons.png │ │ │ │ │ ├── panel_tools.png │ │ │ │ │ ├── passwordbox_close.png │ │ │ │ │ ├── passwordbox_open.png │ │ │ │ │ ├── searchbox_button.png │ │ │ │ │ ├── slider_handle.png │ │ │ │ │ ├── spinner_arrows.png │ │ │ │ │ ├── tabs_icons.png │ │ │ │ │ ├── tree_icons.png │ │ │ │ │ └── validatebox_warning.png │ │ │ │ ├── layout.css │ │ │ │ ├── linkbutton.css │ │ │ │ ├── menu.css │ │ │ │ ├── menubutton.css │ │ │ │ ├── messager.css │ │ │ │ ├── numberbox.css │ │ │ │ ├── pagination.css │ │ │ │ ├── panel.css │ │ │ │ ├── passwordbox.css │ │ │ │ ├── progressbar.css │ │ │ │ ├── propertygrid.css │ │ │ │ ├── searchbox.css │ │ │ │ ├── slider.css │ │ │ │ ├── spinner.css │ │ │ │ ├── splitbutton.css │ │ │ │ ├── switchbutton.css │ │ │ │ ├── tabs.css │ │ │ │ ├── textbox.css │ │ │ │ ├── tooltip.css │ │ │ │ ├── tree.css │ │ │ │ ├── validatebox.css │ │ │ │ └── window.css │ │ │ │ ├── metro │ │ │ │ ├── accordion.css │ │ │ │ ├── calendar.css │ │ │ │ ├── combo.css │ │ │ │ ├── combobox.css │ │ │ │ ├── datagrid.css │ │ │ │ ├── datalist.css │ │ │ │ ├── datebox.css │ │ │ │ ├── dialog.css │ │ │ │ ├── easyui.css │ │ │ │ ├── filebox.css │ │ │ │ ├── images │ │ │ │ │ ├── accordion_arrows.png │ │ │ │ │ ├── blank.gif │ │ │ │ │ ├── calendar_arrows.png │ │ │ │ │ ├── combo_arrow.png │ │ │ │ │ ├── datagrid_icons.png │ │ │ │ │ ├── datebox_arrow.png │ │ │ │ │ ├── layout_arrows.png │ │ │ │ │ ├── linkbutton_bg.png │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── menu_arrows.png │ │ │ │ │ ├── messager_icons.png │ │ │ │ │ ├── pagination_icons.png │ │ │ │ │ ├── panel_tools.png │ │ │ │ │ ├── passwordbox_close.png │ │ │ │ │ ├── passwordbox_open.png │ │ │ │ │ ├── searchbox_button.png │ │ │ │ │ ├── slider_handle.png │ │ │ │ │ ├── spinner_arrows.png │ │ │ │ │ ├── tabs_icons.png │ │ │ │ │ ├── tree_icons.png │ │ │ │ │ └── validatebox_warning.png │ │ │ │ ├── layout.css │ │ │ │ ├── linkbutton.css │ │ │ │ ├── menu.css │ │ │ │ ├── menubutton.css │ │ │ │ ├── messager.css │ │ │ │ ├── numberbox.css │ │ │ │ ├── pagination.css │ │ │ │ ├── panel.css │ │ │ │ ├── passwordbox.css │ │ │ │ ├── progressbar.css │ │ │ │ ├── propertygrid.css │ │ │ │ ├── searchbox.css │ │ │ │ ├── slider.css │ │ │ │ ├── spinner.css │ │ │ │ ├── splitbutton.css │ │ │ │ ├── switchbutton.css │ │ │ │ ├── tabs.css │ │ │ │ ├── textbox.css │ │ │ │ ├── tooltip.css │ │ │ │ ├── tree.css │ │ │ │ ├── validatebox.css │ │ │ │ └── window.css │ │ │ │ └── mobile.css │ │ ├── Jquery │ │ │ └── jquery-1.10.2.min.js │ │ ├── datagrid-cellediting.js │ │ └── jquery.PrintArea.js │ ├── Shares │ │ └── Default.js │ └── String.js ├── Services │ ├── PdaService.svc │ ├── SecurityService.svc │ ├── Web.config │ └── WmsService.svc ├── Shares │ ├── Default.aspx │ ├── Default.aspx.cs │ ├── Default.aspx.designer.cs │ ├── Site.Master │ ├── Site.Master.cs │ ├── Site.Master.designer.cs │ └── Versions │ │ ├── AppVersion.aspx │ │ ├── AppVersion.aspx.cs │ │ └── AppVersion.aspx.designer.cs ├── Styles │ ├── Admin.css │ ├── Images │ │ ├── atob.jpg │ │ ├── bg_lightgreen.png │ │ ├── icon.png │ │ └── loading.gif │ ├── Login.css │ ├── Main.css │ ├── Print.css │ ├── Users.css │ └── ui-v1.0.1.css ├── Templates │ └── Admin │ │ ├── DlgCustomer.html │ │ ├── DlgPackage.html │ │ ├── DlgProduct.html │ │ └── DlgZone.html ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── Web.csproj ├── Web.sitemap ├── WebUserControls │ ├── AdminLeft.ascx │ ├── AdminLeft.ascx.cs │ ├── AdminLeft.ascx.designer.cs │ ├── Customer │ │ ├── UCCustomerMenu.ascx │ │ ├── UCCustomerMenu.ascx.cs │ │ └── UCCustomerMenu.ascx.designer.cs │ ├── UCAddOrderReceipt.ascx │ ├── UCAddOrderReceipt.ascx.cs │ ├── UCAddOrderReceipt.ascx.designer.cs │ ├── UCAddPreOrderReceipt.ascx │ ├── UCAddPreOrderReceipt.ascx.cs │ ├── UCAddPreOrderReceipt.ascx.designer.cs │ ├── UCMenu.ascx │ ├── UCMenu.ascx.cs │ ├── UCMenu.ascx.designer.cs │ ├── UserLeft.ascx │ ├── UserLeft.ascx.cs │ ├── UserLeft.ascx.designer.cs │ ├── UserMenu.ascx │ ├── UserMenu.ascx.cs │ └── UserMenu.ascx.designer.cs ├── favicon.ico └── packages.config └── WebHelper ├── Auth.cs ├── AuthenticationServiceProxy.cs ├── BarcodeHelper.cs ├── BindControl.cs ├── ConfigHelper.cs ├── FilesHelper.cs ├── HttpClientHelper.cs ├── ImagesHelper.cs ├── MessageBox.cs ├── OpenXmlHelper.cs ├── PrintOrder.cs ├── ProfileServiceProxy.cs ├── Properties └── AssemblyInfo.cs ├── ResResult.cs ├── RoleServiceProxy.cs ├── SitemapHelper.cs ├── TempFolder.cs ├── UploadFilesHelper.cs ├── WebCommon.cs ├── WebHelper.csproj └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/.gitignore -------------------------------------------------------------------------------- /Db/TygaSoftAspnetDb.mdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/Db/TygaSoftAspnetDb.mdf -------------------------------------------------------------------------------- /Db/TygaSoftAspnetDb_log.LDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/Db/TygaSoftAspnetDb_log.LDF -------------------------------------------------------------------------------- /Db/WmsDb.mdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/Db/WmsDb.mdf -------------------------------------------------------------------------------- /Db/WmsDb.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/Db/WmsDb.sql -------------------------------------------------------------------------------- /Db/WmsDb_log.ldf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/Db/WmsDb_log.ldf -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/License.md -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/Readme.md -------------------------------------------------------------------------------- /docs/Win10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/docs/Win10.md -------------------------------------------------------------------------------- /docs/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/SqlServer001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/images/SqlServer001.png -------------------------------------------------------------------------------- /images/SqlServer002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/images/SqlServer002.png -------------------------------------------------------------------------------- /images/SqlServer003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/images/SqlServer003.png -------------------------------------------------------------------------------- /images/iis001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/images/iis001.png -------------------------------------------------------------------------------- /images/iis002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/images/iis002.png -------------------------------------------------------------------------------- /images/iis003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/images/iis003.png -------------------------------------------------------------------------------- /images/iis004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/images/iis004.png -------------------------------------------------------------------------------- /images/iis005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/images/iis005.png -------------------------------------------------------------------------------- /images/wms001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/images/wms001.png -------------------------------------------------------------------------------- /images/wms002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/images/wms002.png -------------------------------------------------------------------------------- /images/wms003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/images/wms003.png -------------------------------------------------------------------------------- /images/wms004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/images/wms004.png -------------------------------------------------------------------------------- /images/wms005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/images/wms005.png -------------------------------------------------------------------------------- /images/wms006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/images/wms006.png -------------------------------------------------------------------------------- /images/wms007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/images/wms007.png -------------------------------------------------------------------------------- /images/wms008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/images/wms008.png -------------------------------------------------------------------------------- /src/Mobiles/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "www/lib" 3 | } 4 | -------------------------------------------------------------------------------- /src/Mobiles/Ionic/Wms.jsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/Wms.jsproj -------------------------------------------------------------------------------- /src/Mobiles/Ionic/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/bower.json -------------------------------------------------------------------------------- /src/Mobiles/Ionic/build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/build.json -------------------------------------------------------------------------------- /src/Mobiles/Ionic/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/config.xml -------------------------------------------------------------------------------- /src/Mobiles/Ionic/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/gulpfile.js -------------------------------------------------------------------------------- /src/Mobiles/Ionic/ionic.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/ionic.project -------------------------------------------------------------------------------- /src/Mobiles/Ionic/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/package.json -------------------------------------------------------------------------------- /src/Mobiles/Ionic/plugins/android.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/plugins/android.json -------------------------------------------------------------------------------- /src/Mobiles/Ionic/plugins/cordova-plugin-splashscreen/tests/ios/CDVSplashScreenTest/.npmignore: -------------------------------------------------------------------------------- 1 | build -------------------------------------------------------------------------------- /src/Mobiles/Ionic/plugins/fetch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/plugins/fetch.json -------------------------------------------------------------------------------- /src/Mobiles/Ionic/resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/resources/icon.png -------------------------------------------------------------------------------- /src/Mobiles/Ionic/resources/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/resources/splash.png -------------------------------------------------------------------------------- /src/Mobiles/Ionic/scss/ionic.app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/scss/ionic.app.scss -------------------------------------------------------------------------------- /src/Mobiles/Ionic/taco.json: -------------------------------------------------------------------------------- 1 | { 2 | "cordova-cli": "6.0.0" 3 | } -------------------------------------------------------------------------------- /src/Mobiles/Ionic/www/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/www/css/style.css -------------------------------------------------------------------------------- /src/Mobiles/Ionic/www/img/icons/home-jh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/www/img/icons/home-jh.png -------------------------------------------------------------------------------- /src/Mobiles/Ionic/www/img/icons/home-kccx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/www/img/icons/home-kccx.png -------------------------------------------------------------------------------- /src/Mobiles/Ionic/www/img/icons/home-pd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/www/img/icons/home-pd.png -------------------------------------------------------------------------------- /src/Mobiles/Ionic/www/img/icons/home-rfid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/www/img/icons/home-rfid.png -------------------------------------------------------------------------------- /src/Mobiles/Ionic/www/img/icons/home-sj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/www/img/icons/home-sj.png -------------------------------------------------------------------------------- /src/Mobiles/Ionic/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/www/index.html -------------------------------------------------------------------------------- /src/Mobiles/Ionic/www/js/Queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/www/js/Queue.js -------------------------------------------------------------------------------- /src/Mobiles/Ionic/www/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/www/js/app.js -------------------------------------------------------------------------------- /src/Mobiles/Ionic/www/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/www/js/controllers.js -------------------------------------------------------------------------------- /src/Mobiles/Ionic/www/js/ngTygaSoft/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/www/js/ngTygaSoft/module.js -------------------------------------------------------------------------------- /src/Mobiles/Ionic/www/js/ngTygaSoft/services/MC.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/www/js/ngTygaSoft/services/MC.js -------------------------------------------------------------------------------- /src/Mobiles/Ionic/www/js/ngTygaSoft/services/Sys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/www/js/ngTygaSoft/services/Sys.js -------------------------------------------------------------------------------- /src/Mobiles/Ionic/www/js/platformOverrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/www/js/platformOverrides.js -------------------------------------------------------------------------------- /src/Mobiles/Ionic/www/js/string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/www/js/string.js -------------------------------------------------------------------------------- /src/Mobiles/Ionic/www/lib/angular-animate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/www/lib/angular-animate/README.md -------------------------------------------------------------------------------- /src/Mobiles/Ionic/www/lib/angular-animate/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/www/lib/angular-animate/index.js -------------------------------------------------------------------------------- /src/Mobiles/Ionic/www/lib/angular-sanitize/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/www/lib/angular-sanitize/index.js -------------------------------------------------------------------------------- /src/Mobiles/Ionic/www/lib/angular-ui-router/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/www/lib/angular-ui-router/LICENSE -------------------------------------------------------------------------------- /src/Mobiles/Ionic/www/lib/angular/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/www/lib/angular/.bower.json -------------------------------------------------------------------------------- /src/Mobiles/Ionic/www/lib/angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/www/lib/angular/README.md -------------------------------------------------------------------------------- /src/Mobiles/Ionic/www/lib/angular/angular-csp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/www/lib/angular/angular-csp.css -------------------------------------------------------------------------------- /src/Mobiles/Ionic/www/lib/angular/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/www/lib/angular/angular.js -------------------------------------------------------------------------------- /src/Mobiles/Ionic/www/lib/angular/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/www/lib/angular/angular.min.js -------------------------------------------------------------------------------- /src/Mobiles/Ionic/www/lib/angular/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/www/lib/angular/bower.json -------------------------------------------------------------------------------- /src/Mobiles/Ionic/www/lib/angular/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/www/lib/angular/index.js -------------------------------------------------------------------------------- /src/Mobiles/Ionic/www/lib/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/www/lib/angular/package.json -------------------------------------------------------------------------------- /src/Mobiles/Ionic/www/lib/ionic/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/www/lib/ionic/.bower.json -------------------------------------------------------------------------------- /src/Mobiles/Ionic/www/lib/ionic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/www/lib/ionic/README.md -------------------------------------------------------------------------------- /src/Mobiles/Ionic/www/lib/ionic/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/www/lib/ionic/bower.json -------------------------------------------------------------------------------- /src/Mobiles/Ionic/www/lib/ionic/css/ionic.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/www/lib/ionic/css/ionic.min.css -------------------------------------------------------------------------------- /src/Mobiles/Ionic/www/lib/ionic/fonts/ionicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/www/lib/ionic/fonts/ionicons.eot -------------------------------------------------------------------------------- /src/Mobiles/Ionic/www/lib/ionic/fonts/ionicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/www/lib/ionic/fonts/ionicons.svg -------------------------------------------------------------------------------- /src/Mobiles/Ionic/www/lib/ionic/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/www/lib/ionic/fonts/ionicons.ttf -------------------------------------------------------------------------------- /src/Mobiles/Ionic/www/lib/ionic/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/www/lib/ionic/fonts/ionicons.woff -------------------------------------------------------------------------------- /src/Mobiles/Ionic/www/templates/AppPackage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/www/templates/AppPackage.html -------------------------------------------------------------------------------- /src/Mobiles/Ionic/www/templates/OrderPicked.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/www/templates/OrderPicked.html -------------------------------------------------------------------------------- /src/Mobiles/Ionic/www/templates/Pandian.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/www/templates/Pandian.html -------------------------------------------------------------------------------- /src/Mobiles/Ionic/www/templates/PandianProduct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/www/templates/PandianProduct.html -------------------------------------------------------------------------------- /src/Mobiles/Ionic/www/templates/Rfid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/www/templates/Rfid.html -------------------------------------------------------------------------------- /src/Mobiles/Ionic/www/templates/ShelfMission.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/www/templates/ShelfMission.html -------------------------------------------------------------------------------- /src/Mobiles/Ionic/www/templates/StockProduct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/www/templates/StockProduct.html -------------------------------------------------------------------------------- /src/Mobiles/Ionic/www/templates/SysSet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/www/templates/SysSet.html -------------------------------------------------------------------------------- /src/Mobiles/Ionic/www/templates/tab-Found.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/www/templates/tab-Found.html -------------------------------------------------------------------------------- /src/Mobiles/Ionic/www/templates/tab-Home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/www/templates/tab-Home.html -------------------------------------------------------------------------------- /src/Mobiles/Ionic/www/templates/tab-Sys.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/www/templates/tab-Sys.html -------------------------------------------------------------------------------- /src/Mobiles/Ionic/www/templates/tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/Mobiles/Ionic/www/templates/tabs.html -------------------------------------------------------------------------------- /src/TygaSoft/BLL/Applications.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/Applications.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/AutoCode/BarcodeTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/AutoCode/BarcodeTemplate.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/AutoCode/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/AutoCode/Category.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/AutoCode/Company.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/AutoCode/Company.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/AutoCode/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/AutoCode/Customer.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/AutoCode/FeaturePicture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/AutoCode/FeaturePicture.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/AutoCode/FeatureUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/AutoCode/FeatureUser.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/AutoCode/InfoneCustomer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/AutoCode/InfoneCustomer.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/AutoCode/LogisticsDistribution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/AutoCode/LogisticsDistribution.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/AutoCode/MesCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/AutoCode/MesCategory.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/AutoCode/MesOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/AutoCode/MesOrder.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/AutoCode/MesProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/AutoCode/MesProduct.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/AutoCode/OrderMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/AutoCode/OrderMap.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/AutoCode/OrderPickProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/AutoCode/OrderPickProduct.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/AutoCode/OrderPicked.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/AutoCode/OrderPicked.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/AutoCode/OrderRandom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/AutoCode/OrderRandom.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/AutoCode/OrderReceipt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/AutoCode/OrderReceipt.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/AutoCode/OrderReceiptAttr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/AutoCode/OrderReceiptAttr.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/AutoCode/OrderReceiptProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/AutoCode/OrderReceiptProduct.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/AutoCode/OrderReceiptRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/AutoCode/OrderReceiptRecord.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/AutoCode/OrderSend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/AutoCode/OrderSend.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/AutoCode/OrderSendProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/AutoCode/OrderSendProduct.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/AutoCode/Package.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/AutoCode/Package.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/AutoCode/Pandian.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/AutoCode/Pandian.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/AutoCode/PandianProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/AutoCode/PandianProduct.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/AutoCode/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/AutoCode/Product.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/AutoCode/RFID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/AutoCode/RFID.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/AutoCode/ShelfMission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/AutoCode/ShelfMission.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/AutoCode/ShelfMissionProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/AutoCode/ShelfMissionProduct.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/AutoCode/SiteMenus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/AutoCode/SiteMenus.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/AutoCode/SiteMenusAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/AutoCode/SiteMenusAccess.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/AutoCode/SiteMulti.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/AutoCode/SiteMulti.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/AutoCode/SitePicture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/AutoCode/SitePicture.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/AutoCode/StockLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/AutoCode/StockLocation.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/AutoCode/StockLocationCtr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/AutoCode/StockLocationCtr.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/AutoCode/StockLocationProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/AutoCode/StockLocationProduct.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/AutoCode/StockProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/AutoCode/StockProduct.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/AutoCode/StockWarning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/AutoCode/StockWarning.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/AutoCode/Supplier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/AutoCode/Supplier.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/AutoCode/Vehicle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/AutoCode/Vehicle.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/AutoCode/Zone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/AutoCode/Zone.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/BLL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/BLL.csproj -------------------------------------------------------------------------------- /src/TygaSoft/BLL/BarcodeScanAsyn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/BarcodeScanAsyn.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/BarcodeTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/BarcodeTemplate.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/Category.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/Company.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/Company.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/Customer.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/DoTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/DoTask.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/FeatureUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/FeatureUser.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/HwCost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/HwCost.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/InfoneCustomer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/InfoneCustomer.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/InfoneDeviceBorrowRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/InfoneDeviceBorrowRecord.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/InfoneDeviceRepairRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/InfoneDeviceRepairRecord.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/InfoneProjectReportPrepare.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/InfoneProjectReportPrepare.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/LogisticsDistribution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/LogisticsDistribution.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/MesCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/MesCategory.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/MesOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/MesOrder.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/MesProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/MesProduct.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/OrderPickProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/OrderPickProduct.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/OrderPicked.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/OrderPicked.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/OrderRandom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/OrderRandom.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/OrderReceipt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/OrderReceipt.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/OrderReceiptProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/OrderReceiptProduct.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/OrderReceiptRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/OrderReceiptRecord.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/OrderSend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/OrderSend.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/OrderSendProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/OrderSendProduct.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/Package.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/Package.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/Pandian.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/Pandian.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/PandianProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/PandianProduct.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/Product.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/RFID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/RFID.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/RandomCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/RandomCode.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/Role.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/Role.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/RunQueueAsyn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/RunQueueAsyn.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/ScanQueueAsyn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/ScanQueueAsyn.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/ShelfMission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/ShelfMission.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/ShelfMissionProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/ShelfMissionProduct.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/SiteMenus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/SiteMenus.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/SiteMulti.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/SiteMulti.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/SitePicture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/SitePicture.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/SiteRoles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/SiteRoles.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/StockLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/StockLocation.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/StockLocationProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/StockLocationProduct.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/StockProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/StockProduct.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/StockWarning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/StockWarning.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/Vehicle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/Vehicle.cs -------------------------------------------------------------------------------- /src/TygaSoft/BLL/Zone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/BLL/Zone.cs -------------------------------------------------------------------------------- /src/TygaSoft/CustomProvider/CustomProfileCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/CustomProvider/CustomProfileCommon.cs -------------------------------------------------------------------------------- /src/TygaSoft/CustomProvider/CustomProvider.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/CustomProvider/CustomProvider.csproj -------------------------------------------------------------------------------- /src/TygaSoft/CustomProvider/MenusDataProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/CustomProvider/MenusDataProxy.cs -------------------------------------------------------------------------------- /src/TygaSoft/DALFactory/DALFactory.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/DALFactory/DALFactory.csproj -------------------------------------------------------------------------------- /src/TygaSoft/DALFactory/DataAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/DALFactory/DataAccess.cs -------------------------------------------------------------------------------- /src/TygaSoft/DALFactory/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/DALFactory/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/DBUtility/DBUtility.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/DBUtility/DBUtility.csproj -------------------------------------------------------------------------------- /src/TygaSoft/DBUtility/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/DBUtility/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/DBUtility/SqlHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/DBUtility/SqlHelper.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/AutoCode/IBarcodeTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/AutoCode/IBarcodeTemplate.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/AutoCode/ICategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/AutoCode/ICategory.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/AutoCode/ICompany.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/AutoCode/ICompany.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/AutoCode/ICustomer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/AutoCode/ICustomer.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/AutoCode/IFeaturePicture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/AutoCode/IFeaturePicture.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/AutoCode/IFeatureUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/AutoCode/IFeatureUser.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/AutoCode/IInfoneCustomer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/AutoCode/IInfoneCustomer.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/AutoCode/IMesCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/AutoCode/IMesCategory.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/AutoCode/IMesOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/AutoCode/IMesOrder.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/AutoCode/IMesProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/AutoCode/IMesProduct.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/AutoCode/IOrderMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/AutoCode/IOrderMap.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/AutoCode/IOrderPickProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/AutoCode/IOrderPickProduct.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/AutoCode/IOrderPicked.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/AutoCode/IOrderPicked.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/AutoCode/IOrderRandom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/AutoCode/IOrderRandom.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/AutoCode/IOrderReceipt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/AutoCode/IOrderReceipt.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/AutoCode/IOrderReceiptAttr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/AutoCode/IOrderReceiptAttr.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/AutoCode/IOrderReceiptProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/AutoCode/IOrderReceiptProduct.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/AutoCode/IOrderReceiptRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/AutoCode/IOrderReceiptRecord.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/AutoCode/IOrderSend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/AutoCode/IOrderSend.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/AutoCode/IOrderSendProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/AutoCode/IOrderSendProduct.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/AutoCode/IPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/AutoCode/IPackage.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/AutoCode/IPandian.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/AutoCode/IPandian.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/AutoCode/IPandianProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/AutoCode/IPandianProduct.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/AutoCode/IProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/AutoCode/IProduct.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/AutoCode/IRFID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/AutoCode/IRFID.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/AutoCode/IShelfMission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/AutoCode/IShelfMission.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/AutoCode/IShelfMissionProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/AutoCode/IShelfMissionProduct.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/AutoCode/ISiteMenus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/AutoCode/ISiteMenus.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/AutoCode/ISiteMenusAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/AutoCode/ISiteMenusAccess.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/AutoCode/ISiteMulti.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/AutoCode/ISiteMulti.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/AutoCode/ISitePicture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/AutoCode/ISitePicture.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/AutoCode/IStockLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/AutoCode/IStockLocation.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/AutoCode/IStockLocationCtr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/AutoCode/IStockLocationCtr.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/AutoCode/IStockLocationProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/AutoCode/IStockLocationProduct.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/AutoCode/IStockProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/AutoCode/IStockProduct.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/AutoCode/IStockWarning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/AutoCode/IStockWarning.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/AutoCode/ISupplier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/AutoCode/ISupplier.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/AutoCode/IVehicle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/AutoCode/IVehicle.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/AutoCode/IZone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/AutoCode/IZone.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/IApplications.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/IApplications.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/IBarcodeTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/IBarcodeTemplate.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/ICategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/ICategory.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/ICompany.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/ICompany.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/ICustomer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/ICustomer.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/IDAL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/IDAL.csproj -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/IFeatureUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/IFeatureUser.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/IInfoneCustomer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/IInfoneCustomer.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/IInfoneDeviceBorrowRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/IInfoneDeviceBorrowRecord.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/IInfoneDeviceRepairRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/IInfoneDeviceRepairRecord.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/IInfoneProjectReportPrepare.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/IInfoneProjectReportPrepare.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/ILogisticsDistribution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/ILogisticsDistribution.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/IMesCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/IMesCategory.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/IMesOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/IMesOrder.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/IMesProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/IMesProduct.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/IOrderPickProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/IOrderPickProduct.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/IOrderPicked.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/IOrderPicked.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/IOrderRandom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/IOrderRandom.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/IOrderReceipt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/IOrderReceipt.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/IOrderReceiptProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/IOrderReceiptProduct.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/IOrderReceiptRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/IOrderReceiptRecord.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/IOrderSend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/IOrderSend.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/IOrderSendProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/IOrderSendProduct.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/IPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/IPackage.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/IPandian.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/IPandian.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/IPandianProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/IPandianProduct.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/IProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/IProduct.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/IRFID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/IRFID.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/IRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/IRole.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/IShelfMission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/IShelfMission.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/IShelfMissionProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/IShelfMissionProduct.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/ISiteMenus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/ISiteMenus.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/ISiteMulti.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/ISiteMulti.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/ISitePicture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/ISitePicture.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/ISiteRoles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/ISiteRoles.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/IStockLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/IStockLocation.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/IStockLocationProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/IStockLocationProduct.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/IStockProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/IStockProduct.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/IStockWarning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/IStockWarning.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/IVehicle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/IVehicle.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/IZone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/IZone.cs -------------------------------------------------------------------------------- /src/TygaSoft/IDAL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IDAL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/IMessaging/IBarcodeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IMessaging/IBarcodeType.cs -------------------------------------------------------------------------------- /src/TygaSoft/IMessaging/IMessaging.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IMessaging/IMessaging.csproj -------------------------------------------------------------------------------- /src/TygaSoft/IMessaging/IRunQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IMessaging/IRunQueue.cs -------------------------------------------------------------------------------- /src/TygaSoft/IMessaging/IScanQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IMessaging/IScanQueue.cs -------------------------------------------------------------------------------- /src/TygaSoft/IMessaging/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/IMessaging/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Libraries/DocumentFormat.OpenXml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Libraries/DocumentFormat.OpenXml.dll -------------------------------------------------------------------------------- /src/TygaSoft/Libraries/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Libraries/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /src/TygaSoft/Libraries/Select.Html.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Libraries/Select.Html.dep -------------------------------------------------------------------------------- /src/TygaSoft/Libraries/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Libraries/log4net.dll -------------------------------------------------------------------------------- /src/TygaSoft/Libraries/log4net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Libraries/log4net.xml -------------------------------------------------------------------------------- /src/TygaSoft/MessagingFactory/QueueAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/MessagingFactory/QueueAccess.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/AutoCode/BarcodeTemplateInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/AutoCode/BarcodeTemplateInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/AutoCode/CategoryInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/AutoCode/CategoryInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/AutoCode/CompanyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/AutoCode/CompanyInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/AutoCode/CustomerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/AutoCode/CustomerInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/AutoCode/FeaturePictureInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/AutoCode/FeaturePictureInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/AutoCode/FeatureUserInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/AutoCode/FeatureUserInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/AutoCode/InfoneCustomerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/AutoCode/InfoneCustomerInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/AutoCode/MesCategoryInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/AutoCode/MesCategoryInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/AutoCode/MesOrderInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/AutoCode/MesOrderInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/AutoCode/MesProductInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/AutoCode/MesProductInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/AutoCode/OrderMapInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/AutoCode/OrderMapInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/AutoCode/OrderPickProductInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/AutoCode/OrderPickProductInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/AutoCode/OrderPickedInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/AutoCode/OrderPickedInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/AutoCode/OrderRandomInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/AutoCode/OrderRandomInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/AutoCode/OrderReceiptAttrInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/AutoCode/OrderReceiptAttrInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/AutoCode/OrderReceiptInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/AutoCode/OrderReceiptInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/AutoCode/OrderSendInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/AutoCode/OrderSendInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/AutoCode/OrderSendProductInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/AutoCode/OrderSendProductInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/AutoCode/PackageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/AutoCode/PackageInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/AutoCode/PandianInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/AutoCode/PandianInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/AutoCode/PandianProductInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/AutoCode/PandianProductInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/AutoCode/ProductInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/AutoCode/ProductInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/AutoCode/RFIDInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/AutoCode/RFIDInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/AutoCode/ShelfMissionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/AutoCode/ShelfMissionInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/AutoCode/SiteMenusAccessInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/AutoCode/SiteMenusAccessInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/AutoCode/SiteMenusInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/AutoCode/SiteMenusInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/AutoCode/SiteMultiInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/AutoCode/SiteMultiInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/AutoCode/SitePictureInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/AutoCode/SitePictureInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/AutoCode/SiteRolesInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/AutoCode/SiteRolesInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/AutoCode/StockLocationCtrInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/AutoCode/StockLocationCtrInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/AutoCode/StockLocationInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/AutoCode/StockLocationInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/AutoCode/StockProductInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/AutoCode/StockProductInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/AutoCode/StockWarningInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/AutoCode/StockWarningInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/AutoCode/SupplierInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/AutoCode/SupplierInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/AutoCode/VehicleInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/AutoCode/VehicleInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/AutoCode/ZoneInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/AutoCode/ZoneInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/BarcodeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/BarcodeInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/BarcodeTemplateFmInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/BarcodeTemplateFmInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/BarcodeTypeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/BarcodeTypeInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/ComboboxInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/ComboboxInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/CombogridInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/CombogridInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/CompanyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/CompanyInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/CostInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/CostInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/CustomerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/CustomerInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/FeatureUserInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/FeatureUserInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/ImportProductInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/ImportProductInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/InfoneCustomerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/InfoneCustomerInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/InfoneDeviceBorrowRecordInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/InfoneDeviceBorrowRecordInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/InfoneDeviceRepairRecordInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/InfoneDeviceRepairRecordInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/KeyValueInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/KeyValueInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/LoginInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/LoginInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/LogisticsDistributionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/LogisticsDistributionInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/MinStockLocationInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/MinStockLocationInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/Model.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/Model.csproj -------------------------------------------------------------------------------- /src/TygaSoft/Model/OrderPickProductInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/OrderPickProductInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/OrderPickedInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/OrderPickedInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/OrderReceiptInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/OrderReceiptInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/OrderReceiptProductInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/OrderReceiptProductInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/OrderReceiptRecordInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/OrderReceiptRecordInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/OrderSelectProductInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/OrderSelectProductInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/OrderSendInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/OrderSendInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/OrderSendProductInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/OrderSendProductInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/PackageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/PackageInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/PandianInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/PandianInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/PandianProductInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/PandianProductInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/PdaShelfMissionProductInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/PdaShelfMissionProductInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/PdaStockLocationProductInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/PdaStockLocationProductInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/PdfInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/PdfInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/PrintOrderInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/PrintOrderInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/ProductStockLocationAttrInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/ProductStockLocationAttrInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/RFIDInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/RFIDInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/ResResultInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/ResResultInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/RoleInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/RoleInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/RunQueueInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/RunQueueInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/ShelfMissionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/ShelfMissionInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/ShelfMissionProductInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/ShelfMissionProductInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/ShelfMissionProductQueueInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/ShelfMissionProductQueueInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/SiteMenusAccessItemInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/SiteMenusAccessItemInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/SiteMenusInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/SiteMenusInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/SiteMultiInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/SiteMultiInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/StockLocationInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/StockLocationInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/StockLocationProductAttrInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/StockLocationProductAttrInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/StockLocationProductInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/StockLocationProductInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/StockProductInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/StockProductInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/StockWarningInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/StockWarningInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/UserInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/UserInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/UserProfileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/UserProfileInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/UserRoleInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/UserRoleInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Model/VehicleInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Model/VehicleInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/MsmqMessaging/BarcodeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/MsmqMessaging/BarcodeType.cs -------------------------------------------------------------------------------- /src/TygaSoft/MsmqMessaging/MsmqMessaging.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/MsmqMessaging/MsmqMessaging.csproj -------------------------------------------------------------------------------- /src/TygaSoft/MsmqMessaging/RunQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/MsmqMessaging/RunQueue.cs -------------------------------------------------------------------------------- /src/TygaSoft/MsmqMessaging/ScanQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/MsmqMessaging/ScanQueue.cs -------------------------------------------------------------------------------- /src/TygaSoft/MsmqMessaging/TygaSoftQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/MsmqMessaging/TygaSoftQueue.cs -------------------------------------------------------------------------------- /src/TygaSoft/SecurityWeb/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SecurityWeb/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/SecurityWeb/SecurityWeb.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SecurityWeb/SecurityWeb.csproj -------------------------------------------------------------------------------- /src/TygaSoft/SecurityWeb/Services/RoleService.svc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SecurityWeb/Services/RoleService.svc -------------------------------------------------------------------------------- /src/TygaSoft/SecurityWeb/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SecurityWeb/Web.Debug.config -------------------------------------------------------------------------------- /src/TygaSoft/SecurityWeb/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SecurityWeb/Web.Release.config -------------------------------------------------------------------------------- /src/TygaSoft/SecurityWeb/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SecurityWeb/Web.config -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/Applications.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/Applications.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/AutoCode/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/AutoCode/Category.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/AutoCode/Company.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/AutoCode/Company.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/AutoCode/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/AutoCode/Customer.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/AutoCode/FeatureUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/AutoCode/FeatureUser.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/AutoCode/MesCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/AutoCode/MesCategory.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/AutoCode/MesOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/AutoCode/MesOrder.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/AutoCode/MesProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/AutoCode/MesProduct.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/AutoCode/OrderMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/AutoCode/OrderMap.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/AutoCode/OrderPicked.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/AutoCode/OrderPicked.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/AutoCode/OrderRandom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/AutoCode/OrderRandom.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/AutoCode/OrderReceipt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/AutoCode/OrderReceipt.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/AutoCode/OrderSend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/AutoCode/OrderSend.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/AutoCode/Package.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/AutoCode/Package.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/AutoCode/Pandian.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/AutoCode/Pandian.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/AutoCode/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/AutoCode/Product.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/AutoCode/RFID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/AutoCode/RFID.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/AutoCode/ShelfMission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/AutoCode/ShelfMission.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/AutoCode/SiteMenus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/AutoCode/SiteMenus.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/AutoCode/SiteMulti.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/AutoCode/SiteMulti.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/AutoCode/SitePicture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/AutoCode/SitePicture.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/AutoCode/StockLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/AutoCode/StockLocation.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/AutoCode/StockProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/AutoCode/StockProduct.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/AutoCode/StockWarning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/AutoCode/StockWarning.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/AutoCode/Supplier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/AutoCode/Supplier.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/AutoCode/Vehicle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/AutoCode/Vehicle.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/AutoCode/Zone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/AutoCode/Zone.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/BarcodeTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/BarcodeTemplate.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/Category.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/Company.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/Company.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/Customer.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/FeatureUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/FeatureUser.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/InfoneCustomer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/InfoneCustomer.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/LogisticsDistribution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/LogisticsDistribution.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/MesCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/MesCategory.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/MesOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/MesOrder.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/MesProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/MesProduct.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/OrderPickProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/OrderPickProduct.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/OrderPicked.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/OrderPicked.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/OrderRandom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/OrderRandom.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/OrderReceipt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/OrderReceipt.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/OrderReceiptProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/OrderReceiptProduct.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/OrderReceiptRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/OrderReceiptRecord.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/OrderSend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/OrderSend.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/OrderSendProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/OrderSendProduct.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/Package.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/Package.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/Pandian.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/Pandian.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/PandianProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/PandianProduct.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/Product.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/RFID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/RFID.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/Role.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/Role.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/ShelfMission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/ShelfMission.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/ShelfMissionProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/ShelfMissionProduct.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/SiteMenus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/SiteMenus.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/SiteMenusAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/SiteMenusAccess.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/SiteMulti.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/SiteMulti.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/SitePicture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/SitePicture.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/SiteRoles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/SiteRoles.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/SqlServerDAL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/SqlServerDAL.csproj -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/StockLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/StockLocation.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/StockLocationProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/StockLocationProduct.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/StockProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/StockProduct.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/StockWarning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/StockWarning.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/Vehicle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/Vehicle.cs -------------------------------------------------------------------------------- /src/TygaSoft/SqlServerDAL/Zone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SqlServerDAL/Zone.cs -------------------------------------------------------------------------------- /src/TygaSoft/SysException/CustomException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SysException/CustomException.cs -------------------------------------------------------------------------------- /src/TygaSoft/SysException/SysException.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SysException/SysException.csproj -------------------------------------------------------------------------------- /src/TygaSoft/SysHelper/AESEncrypt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SysHelper/AESEncrypt.cs -------------------------------------------------------------------------------- /src/TygaSoft/SysHelper/Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SysHelper/Common.cs -------------------------------------------------------------------------------- /src/TygaSoft/SysHelper/ConfigHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SysHelper/ConfigHelper.cs -------------------------------------------------------------------------------- /src/TygaSoft/SysHelper/EnumData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SysHelper/EnumData.cs -------------------------------------------------------------------------------- /src/TygaSoft/SysHelper/EnumHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SysHelper/EnumHelper.cs -------------------------------------------------------------------------------- /src/TygaSoft/SysHelper/HttpHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SysHelper/HttpHelper.cs -------------------------------------------------------------------------------- /src/TygaSoft/SysHelper/MC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SysHelper/MC.cs -------------------------------------------------------------------------------- /src/TygaSoft/SysHelper/MapHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SysHelper/MapHelper.cs -------------------------------------------------------------------------------- /src/TygaSoft/SysHelper/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SysHelper/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/SysHelper/SysHelper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/SysHelper/SysHelper.csproj -------------------------------------------------------------------------------- /src/TygaSoft/TableCacheDependency/Menus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/TableCacheDependency/Menus.cs -------------------------------------------------------------------------------- /src/TygaSoft/TaskProcessor/BarcodeScan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/TaskProcessor/BarcodeScan.cs -------------------------------------------------------------------------------- /src/TygaSoft/TaskProcessor/BaseTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/TaskProcessor/BaseTask.cs -------------------------------------------------------------------------------- /src/TygaSoft/TaskProcessor/ITask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/TaskProcessor/ITask.cs -------------------------------------------------------------------------------- /src/TygaSoft/TaskProcessor/RunQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/TaskProcessor/RunQueue.cs -------------------------------------------------------------------------------- /src/TygaSoft/TaskProcessor/ScanQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/TaskProcessor/ScanQueue.cs -------------------------------------------------------------------------------- /src/TygaSoft/TaskProcessor/StockWarningTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/TaskProcessor/StockWarningTimer.cs -------------------------------------------------------------------------------- /src/TygaSoft/TaskProcessor/TaskProcessor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/TaskProcessor/TaskProcessor.csproj -------------------------------------------------------------------------------- /src/TygaSoft/TaskProcessor/TimedExecution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/TaskProcessor/TimedExecution.cs -------------------------------------------------------------------------------- /src/TygaSoft/TaskWS/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/TaskWS/App.config -------------------------------------------------------------------------------- /src/TygaSoft/TaskWS/Log4net.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/TaskWS/Log4net.config -------------------------------------------------------------------------------- /src/TygaSoft/TaskWS/ProjectInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/TaskWS/ProjectInstaller.cs -------------------------------------------------------------------------------- /src/TygaSoft/TaskWS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/TaskWS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/TaskWS/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/TaskWS/Service.cs -------------------------------------------------------------------------------- /src/TygaSoft/TaskWS/TaskWS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/TaskWS/TaskWS.csproj -------------------------------------------------------------------------------- /src/TygaSoft/TygaSoft-2010.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/TygaSoft-2010.sln -------------------------------------------------------------------------------- /src/TygaSoft/TygaSoft.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/TygaSoft.sln -------------------------------------------------------------------------------- /src/TygaSoft/WcfCA/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfCA/App.config -------------------------------------------------------------------------------- /src/TygaSoft/WcfCA/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfCA/Program.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfCA/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfCA/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfCA/WcfCA.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfCA/WcfCA.csproj -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/BarcodeScanQueueModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/BarcodeScanQueueModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/BarcodeTemplateFmModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/BarcodeTemplateFmModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/BestStockLocationModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/BestStockLocationModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/CategoryModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/CategoryModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/CustomerModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/CustomerModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/DeviceRepairRecordFmModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/DeviceRepairRecordFmModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/DeviceRepairRecordModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/DeviceRepairRecordModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/DlgCustomerModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/DlgCustomerModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/DlgPackageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/DlgPackageModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/DlgProductModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/DlgProductModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/DlgStockLocationModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/DlgStockLocationModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/DlgZoneModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/DlgZoneModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/InfoneCustomerFmModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/InfoneCustomerFmModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/ListModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/ListModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/MenuAuthModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/MenuAuthModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/MenusModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/MenusModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/MenusPermissionModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/MenusPermissionModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/Mes/MesOrderModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/Mes/MesOrderModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/OrderPrevReceiptModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/OrderPrevReceiptModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/OrderPrintModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/OrderPrintModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/OrderReceiptFmModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/OrderReceiptFmModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/OrderReceiptModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/OrderReceiptModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/OrderReceiptProductFmModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/OrderReceiptProductFmModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/OrderReceiptProductModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/OrderReceiptProductModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/OrderSelectProductModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/OrderSelectProductModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/PackageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/PackageModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/PandianFmModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/PandianFmModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/PandianProductFmModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/PandianProductFmModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/Pda/PdaOrderSendModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/Pda/PdaOrderSendModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/Pda/PdaShelfMissionFmModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/Pda/PdaShelfMissionFmModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/Pda/PdaShelfMissionModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/Pda/PdaShelfMissionModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/Pda/PdaSkuModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/Pda/PdaSkuModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/Pda/RFIDModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/Pda/RFIDModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/ProductFmModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/ProductFmModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/ProductModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/ProductModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/ResResultModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/ResResultModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/RoleMenuFmModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/RoleMenuFmModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/RoleModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/RoleModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/Send/OrderSendFmModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/Send/OrderSendFmModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/Send/OrderSendModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/Send/OrderSendModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/Send/OrderSendProductModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/Send/OrderSendProductModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/ShelfMissionFmModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/ShelfMissionFmModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/ShelfMissionModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/ShelfMissionModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/ShelfMissionProductFmModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/ShelfMissionProductFmModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/ShelfMissionProductModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/ShelfMissionProductModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/StockLocationFmModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/StockLocationFmModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/StockLocationModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/StockLocationModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/StockLocationProductModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/StockLocationProductModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/StockProductModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/StockProductModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/StockWarningFmModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/StockWarningFmModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/StockWarningModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/StockWarningModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/SupplierModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/SupplierModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/ToPdfModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/ToPdfModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/UserModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/UserModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/VehicleFmModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/VehicleFmModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/WcfModel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/WcfModel.csproj -------------------------------------------------------------------------------- /src/TygaSoft/WcfModel/ZoneModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfModel/ZoneModel.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfService/IPda.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfService/IPda.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfService/ISecurity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfService/ISecurity.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfService/IWms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfService/IWms.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfService/PdaService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfService/PdaService.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfService/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfService/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfService/ResResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfService/ResResult.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfService/SecurityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfService/SecurityService.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfService/WcfService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfService/WcfService.csproj -------------------------------------------------------------------------------- /src/TygaSoft/WcfService/WmsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfService/WmsService.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfWS/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfWS/App.config -------------------------------------------------------------------------------- /src/TygaSoft/WcfWS/ProjectInstaller.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfWS/ProjectInstaller.Designer.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfWS/ProjectInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfWS/ProjectInstaller.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfWS/ProjectInstaller.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfWS/ProjectInstaller.resx -------------------------------------------------------------------------------- /src/TygaSoft/WcfWS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfWS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfWS/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfWS/Service.cs -------------------------------------------------------------------------------- /src/TygaSoft/WcfWS/WcfWS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WcfWS/WcfWS.csproj -------------------------------------------------------------------------------- /src/TygaSoft/Web/Admin/Base/AddCategory.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Admin/Base/AddCategory.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Admin/Base/AddCategory.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Admin/Base/AddCategory.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Admin/Base/AddCustomer.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Admin/Base/AddCustomer.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Admin/Base/AddCustomer.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Admin/Base/AddCustomer.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Admin/Base/AddPackage.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Admin/Base/AddPackage.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Admin/Base/AddPackage.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Admin/Base/AddPackage.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Admin/Base/AddProduct.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Admin/Base/AddProduct.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Admin/Base/AddProduct.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Admin/Base/AddProduct.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Admin/Base/AddStockLocation.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Admin/Base/AddStockLocation.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Admin/Base/AddStockWarning.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Admin/Base/AddStockWarning.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Admin/Base/AddStockWarning.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Admin/Base/AddStockWarning.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Admin/Base/AddSupplier.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Admin/Base/AddSupplier.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Admin/Base/AddSupplier.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Admin/Base/AddSupplier.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Admin/Base/AddVehicle.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Admin/Base/AddVehicle.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Admin/Base/AddVehicle.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Admin/Base/AddVehicle.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Admin/Base/AddZone.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Admin/Base/AddZone.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Admin/Base/AddZone.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Admin/Base/AddZone.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Admin/Base/DlgCustomer.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Admin/Base/DlgCustomer.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Admin/Base/DlgCustomer.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Admin/Base/DlgCustomer.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Admin/Base/ListCategory.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Admin/Base/ListCategory.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Admin/Base/ListCategory.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Admin/Base/ListCategory.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Admin/Base/ListPackage.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Admin/Base/ListPackage.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Admin/Base/ListPackage.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Admin/Base/ListPackage.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Admin/Base/ListStockWarning.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Admin/Base/ListStockWarning.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Admin/Base/ListVehicle.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Admin/Base/ListVehicle.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Admin/Base/ListVehicle.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Admin/Base/ListVehicle.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Admin/Base/TabPackage.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Admin/Base/TabPackage.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Admin/Base/TabPackage.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Admin/Base/TabPackage.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Admin/Cost/ListCost.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Admin/Cost/ListCost.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Admin/Cost/ListCost.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Admin/Cost/ListCost.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Admin/Device/ListDeviceMap.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Admin/Device/ListDeviceMap.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Admin/Device/ListDeviceMap.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Admin/Device/ListDeviceMap.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Admin/InStore/AddShelfMission.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Admin/InStore/AddShelfMission.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Admin/OutStore/AddOrderSend.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Admin/OutStore/AddOrderSend.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Admin/OutStore/ListOrderSend.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Admin/OutStore/ListOrderSend.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Admin/Pandian/ListPandian.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Admin/Pandian/ListPandian.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Admin/Pandian/ListPandian.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Admin/Pandian/ListPandian.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Admin/Print/BarcodeCtr.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Admin/Print/BarcodeCtr.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Admin/Print/BarcodeCtr.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Admin/Print/BarcodeCtr.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Admin/Store/ListStockProduct.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Admin/Store/ListStockProduct.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Admin/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Admin/Web.config -------------------------------------------------------------------------------- /src/TygaSoft/Web/App_Data/UrlRewriter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/App_Data/UrlRewriter.xml -------------------------------------------------------------------------------- /src/TygaSoft/Web/Default.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Default.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Default.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Default.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Default.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Default.aspx.designer.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Files/Template/维修设备记录导入模板.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Files/Template/维修设备记录导入模板.xlsx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Files/Zxing/Barcode/123456789.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Files/Zxing/Barcode/123456789.jpg -------------------------------------------------------------------------------- /src/TygaSoft/Web/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Global.asax -------------------------------------------------------------------------------- /src/TygaSoft/Web/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Global.asax.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Handlers/HandlerContent.ashx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Handlers/HandlerContent.ashx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Handlers/HandlerContent.ashx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Handlers/HandlerContent.ashx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Handlers/HandlerFile.ashx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Handlers/HandlerFile.ashx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Handlers/HandlerFile.ashx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Handlers/HandlerFile.ashx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Handlers/HandlerMap.ashx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Handlers/HandlerMap.ashx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Handlers/HandlerMap.ashx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Handlers/HandlerMap.ashx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Handlers/HandlerUpload.ashx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Handlers/HandlerUpload.ashx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Handlers/HandlerUpload.ashx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Handlers/HandlerUpload.ashx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Handlers/HandlerUsers.ashx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Handlers/HandlerUsers.ashx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Handlers/HandlerUsers.ashx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Handlers/HandlerUsers.ashx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Handlers/ValidateCode.ashx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Handlers/ValidateCode.ashx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Handlers/ValidateCode.ashx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Handlers/ValidateCode.ashx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Handlers/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Handlers/Web.config -------------------------------------------------------------------------------- /src/TygaSoft/Web/Images/asset_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Images/asset_1.png -------------------------------------------------------------------------------- /src/TygaSoft/Web/Images/asset_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Images/asset_2.png -------------------------------------------------------------------------------- /src/TygaSoft/Web/Images/img_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Images/img_map.png -------------------------------------------------------------------------------- /src/TygaSoft/Web/Images/loginl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Images/loginl.jpg -------------------------------------------------------------------------------- /src/TygaSoft/Web/Images/nopic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Images/nopic.gif -------------------------------------------------------------------------------- /src/TygaSoft/Web/Images/pda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Images/pda.png -------------------------------------------------------------------------------- /src/TygaSoft/Web/Log4net.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Log4net.config -------------------------------------------------------------------------------- /src/TygaSoft/Web/Login.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Login.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Login.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Login.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Login.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Login.aspx.designer.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/AddCompany.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/AddCompany.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/AddCompany.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/AddCompany.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/Base/ListCustomer.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/Base/ListCustomer.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/Base/ListCustomer.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/Base/ListCustomer.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/Base/ListSupplier.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/Base/ListSupplier.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/Base/ListSupplier.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/Base/ListSupplier.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/Base/ListZone.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/Base/ListZone.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/Base/ListZone.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/Base/ListZone.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/Default.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/Default.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/Default.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/Default.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/Default.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/Default.aspx.designer.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/DlgBarcodeTemplate.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/DlgBarcodeTemplate.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/DlgBarcodeTemplate.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/DlgBarcodeTemplate.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/DlgPictureSelect.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/DlgPictureSelect.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/DlgPictureSelect.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/DlgPictureSelect.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/DlgPictureUpload.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/DlgPictureUpload.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/DlgPictureUpload.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/DlgPictureUpload.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/DlgProduct.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/DlgProduct.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/DlgProduct.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/DlgProduct.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/DlgUpload.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/DlgUpload.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/DlgUpload.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/DlgUpload.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/DlgUpload.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/DlgUpload.aspx.designer.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/Gzxy/AddCustomer.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/Gzxy/AddCustomer.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/Gzxy/AddCustomer.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/Gzxy/AddCustomer.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/JsPictureSelect.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/JsPictureSelect.txt -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/JsPictureUpload.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/JsPictureUpload.txt -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/JsUpload.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/JsUpload.txt -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/ListCompany.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/ListCompany.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/ListCompany.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/ListCompany.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/ListRFID.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/ListRFID.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/ListRFID.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/ListRFID.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/ListRFID.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/ListRFID.aspx.designer.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/Members/AddRole.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/Members/AddRole.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/Members/AddRole.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/Members/AddRole.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/Members/AddRoleUser.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/Members/AddRoleUser.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/Members/AddUser.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/Members/AddUser.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/Members/AddUser.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/Members/AddUser.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/Members/AddUserRole.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/Members/AddUserRole.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/Members/ListRoles.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/Members/ListRoles.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/Members/ListRoles.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/Members/ListRoles.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/Members/ListUsers.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/Members/ListUsers.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/Members/ListUsers.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/Members/ListUsers.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/Members/UpdatePsw.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/Members/UpdatePsw.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/Members/UpdatePsw.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/Members/UpdatePsw.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/Mes/ListMesCategory.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/Mes/ListMesCategory.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/Mes/ListMesOrder.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/Mes/ListMesOrder.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/Mes/ListMesOrder.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/Mes/ListMesOrder.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/Print.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/Print.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/Print.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/Print.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/Print.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/Print.aspx.designer.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/PrintBarcodeTemplate.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/PrintBarcodeTemplate.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/PrintProjectPrepare.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/PrintProjectPrepare.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/Sys/AddMenus.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/Sys/AddMenus.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/Sys/AddMenus.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/Sys/AddMenus.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/Sys/AddRegion.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/Sys/AddRegion.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/Sys/AddRegion.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/Sys/AddRegion.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/Sys/AddSiteMulti.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/Sys/AddSiteMulti.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/Sys/AddSiteMulti.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/Sys/AddSiteMulti.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/Sys/DlgUsers.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/Sys/DlgUsers.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/Sys/DlgUsers.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/Sys/DlgUsers.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/Sys/ListMenus.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/Sys/ListMenus.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/Sys/ListMenus.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/Sys/ListMenus.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/Sys/ListRegion.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/Sys/ListRegion.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/Sys/ListRegion.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/Sys/ListRegion.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/Sys/ListRoleMenu.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/Sys/ListRoleMenu.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/Sys/ListRoleMenu.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/Sys/ListRoleMenu.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/Sys/ListSiteMulti.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/Sys/ListSiteMulti.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/Sys/ListSiteMulti.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/Sys/ListSiteMulti.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/UserCenter.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/UserCenter.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/UserCenter.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/UserCenter.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Manages/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Manages/Web.config -------------------------------------------------------------------------------- /src/TygaSoft/Web/Masters/Blank.Master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Masters/Blank.Master -------------------------------------------------------------------------------- /src/TygaSoft/Web/Masters/Blank.Master.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Masters/Blank.Master.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Masters/Blank.Master.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Masters/Blank.Master.designer.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Masters/Manages.Master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Masters/Manages.Master -------------------------------------------------------------------------------- /src/TygaSoft/Web/Masters/Manages.Master.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Masters/Manages.Master.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Masters/Manages.Master.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Masters/Manages.Master.designer.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Masters/Shares.Master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Masters/Shares.Master -------------------------------------------------------------------------------- /src/TygaSoft/Web/Masters/Shares.Master.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Masters/Shares.Master.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Masters/Shares.Master.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Masters/Shares.Master.designer.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/MyTest/BarcodeCtr.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/MyTest/BarcodeCtr.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/MyTest/BarcodeCtr.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/MyTest/BarcodeCtr.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/MyTest/BarcodeCtr.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/MyTest/BarcodeCtr.aspx.designer.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/MyTest/MyBarcodeCtr.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/MyTest/MyBarcodeCtr.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/MyTest/MyBarcodeCtr.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/MyTest/MyBarcodeCtr.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/MyTest/MyTest.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/MyTest/MyTest.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/MyTest/MyTest.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/MyTest/MyTest.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/MyTest/MyTest.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/MyTest/MyTest.aspx.designer.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/MyTest/PrintTest.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/MyTest/PrintTest.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/MyTest/PrintTest.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/MyTest/PrintTest.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/MyTest/PrintTest.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/MyTest/PrintTest.aspx.designer.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/MyTest/WebForm1.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/MyTest/WebForm1.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/MyTest/WebForm1.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/MyTest/WebForm1.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/MyTest/WebForm1.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/MyTest/WebForm1.aspx.designer.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Scripts/Admin/Base/AddCustomer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Scripts/Admin/Base/AddCustomer.js -------------------------------------------------------------------------------- /src/TygaSoft/Web/Scripts/Admin/Base/AddPackage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Scripts/Admin/Base/AddPackage.js -------------------------------------------------------------------------------- /src/TygaSoft/Web/Scripts/Admin/Base/AddProduct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Scripts/Admin/Base/AddProduct.js -------------------------------------------------------------------------------- /src/TygaSoft/Web/Scripts/Admin/Base/AddSupplier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Scripts/Admin/Base/AddSupplier.js -------------------------------------------------------------------------------- /src/TygaSoft/Web/Scripts/Admin/Base/AddZone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Scripts/Admin/Base/AddZone.js -------------------------------------------------------------------------------- /src/TygaSoft/Web/Scripts/Admin/Base/DlgPackage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Scripts/Admin/Base/DlgPackage.js -------------------------------------------------------------------------------- /src/TygaSoft/Web/Scripts/Admin/Base/DlgProduct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Scripts/Admin/Base/DlgProduct.js -------------------------------------------------------------------------------- /src/TygaSoft/Web/Scripts/Admin/Base/ListCategory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Scripts/Admin/Base/ListCategory.js -------------------------------------------------------------------------------- /src/TygaSoft/Web/Scripts/Admin/Base/ListPackage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Scripts/Admin/Base/ListPackage.js -------------------------------------------------------------------------------- /src/TygaSoft/Web/Scripts/Admin/Cost/ListCost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Scripts/Admin/Cost/ListCost.js -------------------------------------------------------------------------------- /src/TygaSoft/Web/Scripts/Admin/Default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Scripts/Admin/Default.js -------------------------------------------------------------------------------- /src/TygaSoft/Web/Scripts/Admin/Sys/ListMenus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Scripts/Admin/Sys/ListMenus.js -------------------------------------------------------------------------------- /src/TygaSoft/Web/Scripts/Admin/Sys/ListRegion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Scripts/Admin/Sys/ListRegion.js -------------------------------------------------------------------------------- /src/TygaSoft/Web/Scripts/Common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Scripts/Common.js -------------------------------------------------------------------------------- /src/TygaSoft/Web/Scripts/DlgFiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Scripts/DlgFiles.js -------------------------------------------------------------------------------- /src/TygaSoft/Web/Scripts/DlgUpload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Scripts/DlgUpload.js -------------------------------------------------------------------------------- /src/TygaSoft/Web/Scripts/JeasyuiExtend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Scripts/JeasyuiExtend.js -------------------------------------------------------------------------------- /src/TygaSoft/Web/Scripts/JeasyuiHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Scripts/JeasyuiHelper.js -------------------------------------------------------------------------------- /src/TygaSoft/Web/Scripts/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Scripts/Login.js -------------------------------------------------------------------------------- /src/TygaSoft/Web/Scripts/Manages/AddCompany.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Scripts/Manages/AddCompany.js -------------------------------------------------------------------------------- /src/TygaSoft/Web/Scripts/Manages/AddOrderSend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Scripts/Manages/AddOrderSend.js -------------------------------------------------------------------------------- /src/TygaSoft/Web/Scripts/Manages/AddPandian.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Scripts/Manages/AddPandian.js -------------------------------------------------------------------------------- /src/TygaSoft/Web/Scripts/Manages/AddVehicle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Scripts/Manages/AddVehicle.js -------------------------------------------------------------------------------- /src/TygaSoft/Web/Scripts/Manages/BarcodeCtr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Scripts/Manages/BarcodeCtr.js -------------------------------------------------------------------------------- /src/TygaSoft/Web/Scripts/Manages/Default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Scripts/Manages/Default.js -------------------------------------------------------------------------------- /src/TygaSoft/Web/Scripts/Manages/DlgCompany.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Scripts/Manages/DlgCompany.js -------------------------------------------------------------------------------- /src/TygaSoft/Web/Scripts/Manages/DlgCustomer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Scripts/Manages/DlgCustomer.js -------------------------------------------------------------------------------- /src/TygaSoft/Web/Scripts/Manages/DlgOrder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Scripts/Manages/DlgOrder.js -------------------------------------------------------------------------------- /src/TygaSoft/Web/Scripts/Manages/DlgProduct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Scripts/Manages/DlgProduct.js -------------------------------------------------------------------------------- /src/TygaSoft/Web/Scripts/Manages/DlgUsers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Scripts/Manages/DlgUsers.js -------------------------------------------------------------------------------- /src/TygaSoft/Web/Scripts/Manages/DlgVehicle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Scripts/Manages/DlgVehicle.js -------------------------------------------------------------------------------- /src/TygaSoft/Web/Scripts/Manages/DlgZone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Scripts/Manages/DlgZone.js -------------------------------------------------------------------------------- /src/TygaSoft/Web/Scripts/Manages/ListCompany.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Scripts/Manages/ListCompany.js -------------------------------------------------------------------------------- /src/TygaSoft/Web/Scripts/Manages/ListPandian.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Scripts/Manages/ListPandian.js -------------------------------------------------------------------------------- /src/TygaSoft/Web/Scripts/Manages/ListRFID.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Scripts/Manages/ListRFID.js -------------------------------------------------------------------------------- /src/TygaSoft/Web/Scripts/Manages/ListVehicle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Scripts/Manages/ListVehicle.js -------------------------------------------------------------------------------- /src/TygaSoft/Web/Scripts/Manages/Print.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Scripts/Manages/Print.js -------------------------------------------------------------------------------- /src/TygaSoft/Web/Scripts/Manages/SysApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Scripts/Manages/SysApp.js -------------------------------------------------------------------------------- /src/TygaSoft/Web/Scripts/Manages/UCMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Scripts/Manages/UCMenu.js -------------------------------------------------------------------------------- /src/TygaSoft/Web/Scripts/Menus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Scripts/Menus.js -------------------------------------------------------------------------------- /src/TygaSoft/Web/Scripts/Plugins/Jeasyui15/themes/black/numberbox.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/TygaSoft/Web/Scripts/Plugins/Jeasyui15/themes/bootstrap/numberbox.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/TygaSoft/Web/Scripts/Plugins/Jeasyui15/themes/default/numberbox.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/TygaSoft/Web/Scripts/Plugins/Jeasyui15/themes/gray/numberbox.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/TygaSoft/Web/Scripts/Plugins/Jeasyui15/themes/material/numberbox.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/TygaSoft/Web/Scripts/Plugins/Jeasyui15/themes/metro/numberbox.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/TygaSoft/Web/Scripts/Shares/Default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Scripts/Shares/Default.js -------------------------------------------------------------------------------- /src/TygaSoft/Web/Scripts/String.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Scripts/String.js -------------------------------------------------------------------------------- /src/TygaSoft/Web/Services/PdaService.svc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Services/PdaService.svc -------------------------------------------------------------------------------- /src/TygaSoft/Web/Services/SecurityService.svc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Services/SecurityService.svc -------------------------------------------------------------------------------- /src/TygaSoft/Web/Services/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Services/Web.config -------------------------------------------------------------------------------- /src/TygaSoft/Web/Services/WmsService.svc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Services/WmsService.svc -------------------------------------------------------------------------------- /src/TygaSoft/Web/Shares/Default.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Shares/Default.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Shares/Default.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Shares/Default.aspx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Shares/Default.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Shares/Default.aspx.designer.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Shares/Site.Master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Shares/Site.Master -------------------------------------------------------------------------------- /src/TygaSoft/Web/Shares/Site.Master.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Shares/Site.Master.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Shares/Site.Master.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Shares/Site.Master.designer.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/Shares/Versions/AppVersion.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Shares/Versions/AppVersion.aspx -------------------------------------------------------------------------------- /src/TygaSoft/Web/Styles/Admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Styles/Admin.css -------------------------------------------------------------------------------- /src/TygaSoft/Web/Styles/Images/atob.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Styles/Images/atob.jpg -------------------------------------------------------------------------------- /src/TygaSoft/Web/Styles/Images/bg_lightgreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Styles/Images/bg_lightgreen.png -------------------------------------------------------------------------------- /src/TygaSoft/Web/Styles/Images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Styles/Images/icon.png -------------------------------------------------------------------------------- /src/TygaSoft/Web/Styles/Images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Styles/Images/loading.gif -------------------------------------------------------------------------------- /src/TygaSoft/Web/Styles/Login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Styles/Login.css -------------------------------------------------------------------------------- /src/TygaSoft/Web/Styles/Main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Styles/Main.css -------------------------------------------------------------------------------- /src/TygaSoft/Web/Styles/Print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Styles/Print.css -------------------------------------------------------------------------------- /src/TygaSoft/Web/Styles/Users.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Styles/Users.css -------------------------------------------------------------------------------- /src/TygaSoft/Web/Styles/ui-v1.0.1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Styles/ui-v1.0.1.css -------------------------------------------------------------------------------- /src/TygaSoft/Web/Templates/Admin/DlgPackage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Templates/Admin/DlgPackage.html -------------------------------------------------------------------------------- /src/TygaSoft/Web/Templates/Admin/DlgProduct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Templates/Admin/DlgProduct.html -------------------------------------------------------------------------------- /src/TygaSoft/Web/Templates/Admin/DlgZone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Templates/Admin/DlgZone.html -------------------------------------------------------------------------------- /src/TygaSoft/Web/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Web.Debug.config -------------------------------------------------------------------------------- /src/TygaSoft/Web/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Web.Release.config -------------------------------------------------------------------------------- /src/TygaSoft/Web/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Web.config -------------------------------------------------------------------------------- /src/TygaSoft/Web/Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Web.csproj -------------------------------------------------------------------------------- /src/TygaSoft/Web/Web.sitemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/Web.sitemap -------------------------------------------------------------------------------- /src/TygaSoft/Web/WebUserControls/AdminLeft.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/WebUserControls/AdminLeft.ascx -------------------------------------------------------------------------------- /src/TygaSoft/Web/WebUserControls/UCMenu.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/WebUserControls/UCMenu.ascx -------------------------------------------------------------------------------- /src/TygaSoft/Web/WebUserControls/UCMenu.ascx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/WebUserControls/UCMenu.ascx.cs -------------------------------------------------------------------------------- /src/TygaSoft/Web/WebUserControls/UserLeft.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/WebUserControls/UserLeft.ascx -------------------------------------------------------------------------------- /src/TygaSoft/Web/WebUserControls/UserMenu.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/WebUserControls/UserMenu.ascx -------------------------------------------------------------------------------- /src/TygaSoft/Web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/favicon.ico -------------------------------------------------------------------------------- /src/TygaSoft/Web/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/Web/packages.config -------------------------------------------------------------------------------- /src/TygaSoft/WebHelper/Auth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WebHelper/Auth.cs -------------------------------------------------------------------------------- /src/TygaSoft/WebHelper/BarcodeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WebHelper/BarcodeHelper.cs -------------------------------------------------------------------------------- /src/TygaSoft/WebHelper/BindControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WebHelper/BindControl.cs -------------------------------------------------------------------------------- /src/TygaSoft/WebHelper/ConfigHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WebHelper/ConfigHelper.cs -------------------------------------------------------------------------------- /src/TygaSoft/WebHelper/FilesHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WebHelper/FilesHelper.cs -------------------------------------------------------------------------------- /src/TygaSoft/WebHelper/HttpClientHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WebHelper/HttpClientHelper.cs -------------------------------------------------------------------------------- /src/TygaSoft/WebHelper/ImagesHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WebHelper/ImagesHelper.cs -------------------------------------------------------------------------------- /src/TygaSoft/WebHelper/MessageBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WebHelper/MessageBox.cs -------------------------------------------------------------------------------- /src/TygaSoft/WebHelper/OpenXmlHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WebHelper/OpenXmlHelper.cs -------------------------------------------------------------------------------- /src/TygaSoft/WebHelper/PrintOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WebHelper/PrintOrder.cs -------------------------------------------------------------------------------- /src/TygaSoft/WebHelper/ProfileServiceProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WebHelper/ProfileServiceProxy.cs -------------------------------------------------------------------------------- /src/TygaSoft/WebHelper/ResResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WebHelper/ResResult.cs -------------------------------------------------------------------------------- /src/TygaSoft/WebHelper/RoleServiceProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WebHelper/RoleServiceProxy.cs -------------------------------------------------------------------------------- /src/TygaSoft/WebHelper/SitemapHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WebHelper/SitemapHelper.cs -------------------------------------------------------------------------------- /src/TygaSoft/WebHelper/TempFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WebHelper/TempFolder.cs -------------------------------------------------------------------------------- /src/TygaSoft/WebHelper/UploadFilesHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WebHelper/UploadFilesHelper.cs -------------------------------------------------------------------------------- /src/TygaSoft/WebHelper/WebCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WebHelper/WebCommon.cs -------------------------------------------------------------------------------- /src/TygaSoft/WebHelper/WebHelper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WebHelper/WebHelper.csproj -------------------------------------------------------------------------------- /src/TygaSoft/WebHelper/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq283335746/Wms/HEAD/src/TygaSoft/WebHelper/packages.config --------------------------------------------------------------------------------