├── .gitattributes ├── .gitignore ├── .nuget ├── .tfignore ├── LICENSE ├── README.md ├── docs ├── OpenSource │ ├── AppImg │ │ ├── API1.png │ │ ├── API2.png │ │ ├── API3.png │ │ ├── PDA1.png │ │ ├── PDA2.png │ │ ├── PDA3.png │ │ ├── PDA4.png │ │ ├── PDA5.png │ │ ├── PDA6.png │ │ ├── PDA7.png │ │ ├── Web1.png │ │ ├── Web2.png │ │ ├── Web3.png │ │ ├── Web4.png │ │ ├── Web5.png │ │ └── Web6.png │ └── QQGroup1QrCode.png ├── 初始化文件 │ ├── ZEQP_WMS.sql │ └── 清空数据库.sql ├── 实施文档 │ └── WMS安装说明书.pdf └── 数据库设计 │ ├── Base_Table.pdm │ ├── Base_Table.sws │ └── WMS仓库管理系统.pdm └── src ├── CodeSpace.code-workspace ├── Coldairarrow.Api ├── .config │ └── dotnet-tools.json ├── 00Filter │ ├── BaseActionFilterAsync.cs │ ├── JWT校验 │ │ ├── CheckJWTAttribute.cs │ │ └── NoCheckJWTAttribute.cs │ ├── 全局错误过滤 │ │ └── GlobalExceptionFilter.cs │ ├── 参数校验 │ │ └── ValidFilterAttribute.cs │ ├── 对外接口签名校验 │ │ ├── CheckSignAttribute.cs │ │ └── IgnoreSignAttribute.cs │ ├── 接口权限 │ │ ├── ApiPermissionAttribute.cs │ │ └── NoApiPermissionAttribute.cs │ ├── 接口请求日志 │ │ └── ApiLogAttribute.cs │ └── 格式化返回结果 │ │ ├── FormatResponseAttribute.cs │ │ └── NoFormatResponseAttribute.cs ├── 01Middleware │ └── CorsMiddleware.cs ├── 05.Coldairarrow.Api.csproj ├── BuildCodeTemplate │ ├── Business.txt │ ├── Controller.txt │ ├── EditForm.txt │ ├── IBusiness.txt │ └── List.txt ├── Controllers │ ├── Base │ │ ├── Base_EnumController.cs │ │ ├── Base_EnumItemController.cs │ │ ├── Base_ParameterController.cs │ │ └── Base_UserStorController.cs │ ├── BaseApiController.cs │ ├── BaseController.cs │ ├── Base_Manage │ │ ├── Base_ActionController.cs │ │ ├── Base_AppSecretController.cs │ │ ├── Base_DbLinkController.cs │ │ ├── Base_DepartmentController.cs │ │ ├── Base_RoleController.cs │ │ ├── Base_UserController.cs │ │ ├── Base_UserController_partial.cs │ │ ├── Base_UserLogController.cs │ │ ├── BuildCodeController.cs │ │ ├── HomeController.cs │ │ └── UploadController.cs │ ├── IT │ │ ├── IT_LocalDetailController.cs │ │ ├── IT_LocalMaterialController.cs │ │ └── IT_RecordBookController.cs │ ├── PB │ │ ├── PB_AddressController.cs │ │ ├── PB_AddressController_Partial.cs │ │ ├── PB_AreaMaterialController.cs │ │ ├── PB_BarCodeController.cs │ │ ├── PB_BarCodeRuleController.cs │ │ ├── PB_BarCodeSerialController.cs │ │ ├── PB_BarCodeTypeController.cs │ │ ├── PB_CustomerController.cs │ │ ├── PB_CustomerController_Partial.cs │ │ ├── PB_EquipmentController.cs │ │ ├── PB_FeedPointController.cs │ │ ├── PB_LanewayController.cs │ │ ├── PB_LocalTrayController.cs │ │ ├── PB_LocationController.cs │ │ ├── PB_MaterialController.cs │ │ ├── PB_MaterialController_Partial.cs │ │ ├── PB_MaterialPointController.cs │ │ ├── PB_MaterialTypeController.cs │ │ ├── PB_MaterialTypeController_Partial.cs │ │ ├── PB_MeasureController.cs │ │ ├── PB_MeasureController_Partial.cs │ │ ├── PB_RackController.cs │ │ ├── PB_StorAreaController.cs │ │ ├── PB_StorAreaController_Partial.cs │ │ ├── PB_StorageController.cs │ │ ├── PB_SupplierController.cs │ │ ├── PB_SupplierController_Partial.cs │ │ ├── PB_TrayController.cs │ │ ├── PB_TrayMaterialController.cs │ │ ├── PB_TrayTypeController.cs │ │ └── PB_TrayZoneController.cs │ ├── PD │ │ └── PD_PlanController.cs │ ├── Report │ │ ├── IntroduceController.cs │ │ └── MaterialSummaryController.cs │ ├── TD │ │ ├── TD_AllocateController.cs │ │ ├── TD_AllocateDetailController.cs │ │ ├── TD_BadController.cs │ │ ├── TD_BadDetailController.cs │ │ ├── TD_CheckAreaController.cs │ │ ├── TD_CheckAreaController_Partial.cs │ │ ├── TD_CheckController.cs │ │ ├── TD_CheckController_Partial.cs │ │ ├── TD_CheckDataController.cs │ │ ├── TD_CheckDataController_Partial.cs │ │ ├── TD_CheckMaterialController.cs │ │ ├── TD_CheckMaterialController_Partial.cs │ │ ├── TD_InStorDetailController.cs │ │ ├── TD_InStorageController.cs │ │ ├── TD_MoveController.cs │ │ ├── TD_MoveDetailController.cs │ │ ├── TD_OutStorDetailController.cs │ │ ├── TD_OutStorageController.cs │ │ ├── TD_RecDetailController.cs │ │ ├── TD_ReceivingController.cs │ │ ├── TD_SendController.cs │ │ └── TD_SendDetailController.cs │ └── TestController.cs ├── Deploy.ps1 ├── DeployUbuntu.ps1 ├── Dockerfile ├── Program.cs ├── Properties │ ├── PublishProfiles │ │ ├── 114.115.162.100.pubxml │ │ ├── FolderProfile.pubxml │ │ ├── WMSAPI.pubxml │ │ └── zengzihan.pubxml │ └── launchSettings.json ├── Startup.cs ├── appsettings.Development.json ├── appsettings.Production.json ├── appsettings.json └── wwwroot │ └── Upload │ └── _.txt ├── Coldairarrow.Business ├── 04.Coldairarrow.Business.csproj ├── AOP │ ├── DataAddLogAttribute.cs │ ├── DataDeleteLogAttribute.cs │ ├── DataEditLogAttribute.cs │ ├── DataRepeatValidateAttribute.cs │ └── WriteDataLogAttribute.cs ├── Base │ ├── Base_EnumBusiness.cs │ ├── Base_EnumItemBusiness.cs │ ├── Base_ParameterBusiness.cs │ └── Base_UserStorBusiness.cs ├── BaseBusiness.T.cs ├── BaseBusiness.T.partial.cs ├── Base_Manage │ ├── Base_ActionBusiness.cs │ ├── Base_AppSecretBusiness.cs │ ├── Base_DbLinkBusiness.cs │ ├── Base_DepartmentBusiness.cs │ ├── Base_RoleBusiness.cs │ ├── Base_UserBusiness.cs │ ├── Base_UserBusiness_partial.cs │ ├── Base_UserLogBusiness.cs │ ├── BuildCodeBusiness.cs │ ├── HomeBusiness.cs │ └── PermissionBusiness.cs ├── Cache │ ├── BaseCache.T.cs │ ├── Base_UserCache.cs │ ├── IBaseCache.T.cs │ └── IBase_UserCache.cs ├── IT │ ├── IT_LocalDetailBusiness.cs │ ├── IT_LocalDetailBusiness_partial.cs │ ├── IT_LocalMaterialBusiness.cs │ ├── IT_LocalMaterialBusiness_Partial.cs │ ├── IT_RecordBookBusiness.cs │ └── IT_RecordBookBusiness_partial.cs ├── Operator.cs ├── PB │ ├── NoCheckJWTAttribute.cs │ ├── PB_AddressBusiness.cs │ ├── PB_AddressBusiness_Partial.cs │ ├── PB_AreaMaterialBusiness.cs │ ├── PB_AreaMaterialBusiness_partial.cs │ ├── PB_BarCodeBusiness.cs │ ├── PB_BarCodeRuleBusiness.cs │ ├── PB_BarCodeSerialBusiness.cs │ ├── PB_BarCodeSerialBusiness_partial.cs │ ├── PB_BarCodeTypeBusiness.cs │ ├── PB_BarCodeTypeBusiness_partial.cs │ ├── PB_CustomerBusiness.cs │ ├── PB_CustomerBusiness_Partial.cs │ ├── PB_EquipmentBusiness.cs │ ├── PB_FeedPointBusiness.cs │ ├── PB_FeedPointBusiness_partial.cs │ ├── PB_LanewayBusiness.cs │ ├── PB_LocalTrayBusiness.cs │ ├── PB_LocationBusiness.cs │ ├── PB_LocationBusiness_partial.cs │ ├── PB_MaterialBusiness.cs │ ├── PB_MaterialBusiness_partial.cs │ ├── PB_MaterialPointBusiness.cs │ ├── PB_MaterialPointBusiness_partial.cs │ ├── PB_MaterialTypeBusiness.cs │ ├── PB_MaterialTypeBusiness_Partial.cs │ ├── PB_MeasureBusiness.cs │ ├── PB_MeasureBusiness_Partial.cs │ ├── PB_RackBusiness.cs │ ├── PB_StorAreaBusiness.cs │ ├── PB_StorAreaBusiness_Partial.cs │ ├── PB_StorageBusiness.cs │ ├── PB_SupplierBusiness.cs │ ├── PB_SupplierBusiness_Partial.cs │ ├── PB_TrayBusiness.cs │ ├── PB_TrayBusiness_partial.cs │ ├── PB_TrayMaterialBusiness.cs │ ├── PB_TrayTypeBusiness.cs │ ├── PB_TrayTypeBusiness_partial.cs │ └── PB_TrayZoneBusiness.cs ├── PD │ └── PD_PlanBusiness.cs ├── Report │ ├── Report_IntroduceBusiness.cs │ └── Report_MaterialSummaryBussiness.cs └── TD │ ├── TD_AllocateBusiness.cs │ ├── TD_AllocateBusiness_partial.cs │ ├── TD_AllocateDetailBusiness.cs │ ├── TD_AllocateDetailBusiness_partial.cs │ ├── TD_BadBusiness.cs │ ├── TD_BadBusiness_partial.cs │ ├── TD_BadDetailBusiness.cs │ ├── TD_BadDetailBusiness_partial.cs │ ├── TD_CheckAreaBusiness.cs │ ├── TD_CheckAreaBusiness_Partial.cs │ ├── TD_CheckBusiness.cs │ ├── TD_CheckBusiness_Partial.cs │ ├── TD_CheckDataBusiness.cs │ ├── TD_CheckDataBusiness_Partial.cs │ ├── TD_CheckMaterialBusiness.cs │ ├── TD_CheckMaterialBusiness_Partial.cs │ ├── TD_InStorDetailBusiness.cs │ ├── TD_InStorDetailBusiness_partial.cs │ ├── TD_InStorageBusiness.cs │ ├── TD_InStorageBusiness_partial.cs │ ├── TD_MoveBusiness.cs │ ├── TD_MoveBusiness_partial.cs │ ├── TD_MoveDetailBusiness.cs │ ├── TD_MoveDetailBusiness_partial.cs │ ├── TD_OutStorDetailBusiness.cs │ ├── TD_OutStorDetailBusiness_partial.cs │ ├── TD_OutStorageBusiness.cs │ ├── TD_OutStorageBusiness_partial.cs │ ├── TD_RecDetailBusiness.cs │ ├── TD_RecDetailBusiness_partial.cs │ ├── TD_ReceivingBusiness.cs │ ├── TD_ReceivingBusiness_partial.cs │ ├── TD_SendBusiness.cs │ ├── TD_SendBusiness_partial.cs │ ├── TD_SendDetailBusiness.cs │ └── TD_SendDetailBusiness_partial.cs ├── Coldairarrow.Console ├── 06.Coldairarrow.Console.csproj ├── Program.cs ├── Properties │ └── PublishProfiles │ │ └── FolderProfile.pubxml ├── ServiceInstall │ ├── install.bat │ ├── nssm.exe │ └── uninstall.bat ├── appsettings.Development.json └── appsettings.json ├── Coldairarrow.Entity ├── 02.Coldairarrow.Entity.csproj ├── Base │ ├── Base_Enum.cs │ ├── Base_EnumItem.cs │ ├── Base_EnumItem_partial.cs │ ├── Base_Enum_partial.cs │ ├── Base_Parameter.cs │ └── Base_UserStor.cs ├── Base_Manage │ ├── Base_Action.cs │ ├── Base_AppSecret.cs │ ├── Base_DbLink.cs │ ├── Base_Department.cs │ ├── Base_Role.cs │ ├── Base_RoleAction.cs │ ├── Base_User.cs │ ├── Base_UserLog.cs │ └── Base_UserRole.cs ├── DTO │ ├── Base_UserDTO.cs │ └── Base_UserDTO_partial.cs ├── Enum │ ├── ActionType.cs │ └── RoleTypes.cs ├── IT │ ├── IT_LocalDetail.cs │ ├── IT_LocalDetail_partial.cs │ ├── IT_LocalMaterial.cs │ ├── IT_LocalMaterial_Partial.cs │ ├── IT_RecordBook.cs │ └── IT_RecordBook_Partial.cs ├── PB │ ├── PB_Address.cs │ ├── PB_AreaMaterial.cs │ ├── PB_AreaMaterial_partial.cs │ ├── PB_BarCode.cs │ ├── PB_BarCodeRule.cs │ ├── PB_BarCodeRule_partial.cs │ ├── PB_BarCodeSerial.cs │ ├── PB_BarCodeSerial_partial.cs │ ├── PB_BarCodeType.cs │ ├── PB_BarCodeType_partial.cs │ ├── PB_Customer.cs │ ├── PB_Equipment.cs │ ├── PB_FeedPoint.cs │ ├── PB_FeedPoint_partial.cs │ ├── PB_Laneway.cs │ ├── PB_LocalTray.cs │ ├── PB_LocalTray_Partial.cs │ ├── PB_Location.cs │ ├── PB_Location_Partial.cs │ ├── PB_Material.cs │ ├── PB_MaterialPoint.cs │ ├── PB_MaterialPoint_partial.cs │ ├── PB_MaterialType.cs │ ├── PB_Material_Partial.cs │ ├── PB_Measure.cs │ ├── PB_Rack.cs │ ├── PB_StorArea.cs │ ├── PB_Storage.cs │ ├── PB_Supplier.cs │ ├── PB_Tray.cs │ ├── PB_TrayMaterial.cs │ ├── PB_TrayType.cs │ └── PB_TrayZone.cs ├── PD │ ├── PD_Plan.cs │ └── PD_Plan_Partial.cs └── TD │ ├── TD_Allocate.cs │ ├── TD_AllocateDetail.cs │ ├── TD_AllocateDetail_partial.cs │ ├── TD_Allocate_partial.cs │ ├── TD_Bad.cs │ ├── TD_BadDetail.cs │ ├── TD_BadDetail_partial.cs │ ├── TD_Bad_partial.cs │ ├── TD_Check.cs │ ├── TD_CheckArea.cs │ ├── TD_CheckData.cs │ ├── TD_CheckData_Parital.cs │ ├── TD_CheckMaterial.cs │ ├── TD_CheckMaterial_Partial.cs │ ├── TD_Check_Parital.cs │ ├── TD_InStorDetail.cs │ ├── TD_InStorDetail_partial.cs │ ├── TD_InStorage.cs │ ├── TD_InStorage_partial.cs │ ├── TD_Move.cs │ ├── TD_MoveDetail.cs │ ├── TD_MoveDetail_partial.cs │ ├── TD_Move_partial.cs │ ├── TD_OutStorDetail.cs │ ├── TD_OutStorDetail_partial.cs │ ├── TD_OutStorage.cs │ ├── TD_OutStorage_Partial.cs │ ├── TD_RecDetail.cs │ ├── TD_RecDetail_partial.cs │ ├── TD_Receiving.cs │ ├── TD_Receiving_partial.cs │ ├── TD_Send.cs │ ├── TD_SendDetail.cs │ ├── TD_SendDetail_partial.cs │ └── TD_Send_partial.cs ├── Coldairarrow.IBusiness ├── 03.Coldairarrow.IBusiness.csproj ├── Base │ ├── IBase_EnumBusiness.cs │ ├── IBase_EnumItemBusiness.cs │ ├── IBase_ParameterBusiness.cs │ └── IBase_UserStorBusiness.cs ├── Base_Manage │ ├── IBase_ActionBusiness.cs │ ├── IBase_AppSecretBusiness.cs │ ├── IBase_DbLinkBusiness.cs │ ├── IBase_DepartmentBusiness.cs │ ├── IBase_RoleBusiness.cs │ ├── IBase_UserBusiness.cs │ ├── IBase_UserBusiness_partial.cs │ ├── IBase_UserLogBusiness.cs │ ├── IBuildCodeBusiness.cs │ ├── IHomeBusiness.cs │ └── IPermissionBusiness.cs ├── DTO │ ├── AuditDTO.cs │ ├── AutoInStorageByTary.cs │ ├── InAutoByTary.cs │ ├── ManualInStorage.cs │ ├── MaterialTypeTreeDTO.cs │ ├── OutAutoByTary.cs │ ├── PBAddressConditionDTO.cs │ ├── PBAreaMateriaConditionDTO.cs │ ├── PBCustomerCoditionDTO.cs │ ├── PBLocalTrayConditionDTO.cs │ ├── PBMaterialConditionDTO.cs │ ├── PBSupplierCoditionDTO.cs │ ├── PBTrayMateriaConditionDTO.cs │ ├── SelectQueryDTO.cs │ ├── TDCheckConditionDTO.cs │ ├── TDCheckDataConditionDTO.cs │ ├── TDCheckDataDTO.cs │ ├── TDCheckNumModifyDTO.cs │ ├── TDCheckQueryDTO.cs │ └── TraySelectQueryDTO.cs ├── IOperator.cs ├── IT │ ├── IIT_LocalDetailBusiness.cs │ ├── IIT_LocalDetailBusiness_partial.cs │ ├── IIT_LocalMaterialBusiness.cs │ ├── IIT_LocalMaterialBusiness_Partial.cs │ ├── IIT_RecordBookBusiness.cs │ └── IIT_RecordBookBusiness_partial.cs ├── PB │ ├── IPB_AddressBusiness.cs │ ├── IPB_AddressBusiness_Partial.cs │ ├── IPB_AreaMaterialBusiness.cs │ ├── IPB_AreaMaterialBusiness_partial.cs │ ├── IPB_BarCodeBusiness.cs │ ├── IPB_BarCodeRuleBusiness.cs │ ├── IPB_BarCodeSerialBusiness.cs │ ├── IPB_BarCodeSerialBusiness_partial.cs │ ├── IPB_BarCodeTypeBusiness.cs │ ├── IPB_BarCodeTypeBusiness_partial.cs │ ├── IPB_CustomerBusiness.cs │ ├── IPB_CustomerBusiness_Partial.cs │ ├── IPB_EquipmentBusiness.cs │ ├── IPB_FeedPointBusiness.cs │ ├── IPB_FeedPointBusiness_partial.cs │ ├── IPB_LanewayBusiness.cs │ ├── IPB_LocalTrayBusiness.cs │ ├── IPB_LocationBusiness.cs │ ├── IPB_LocationBusiness_partial.cs │ ├── IPB_MaterialBusiness.cs │ ├── IPB_MaterialBusiness_Partial.cs │ ├── IPB_MaterialPointBusiness.cs │ ├── IPB_MaterialPointBusiness_partial.cs │ ├── IPB_MaterialTypeBusiness.cs │ ├── IPB_MaterialTypeBusiness_Partial.cs │ ├── IPB_MeasureBusiness.cs │ ├── IPB_MeasureBusiness_Partial.cs │ ├── IPB_RackBusiness.cs │ ├── IPB_StorAreaBusiness.cs │ ├── IPB_StorAreaBusiness_Partial.cs │ ├── IPB_StorageBusiness.cs │ ├── IPB_SupplierBusiness.cs │ ├── IPB_SupplierBusiness_Partial.cs │ ├── IPB_TrayBusiness.cs │ ├── IPB_TrayBusiness_partial.cs │ ├── IPB_TrayMaterialBusiness.cs │ ├── IPB_TrayTypeBusiness.cs │ ├── IPB_TrayTypeBusiness_partial.cs │ └── IPB_TrayZoneBusiness.cs ├── PD │ ├── IPD_PlanBusiness.cs │ └── IPD_PlanBusiness_Partial.cs ├── Report │ ├── IReport_IntroduceBussiness.cs │ └── IReport_MaterialSummaryBussiness.cs └── TD │ ├── ITD_AllocateBusiness.cs │ ├── ITD_AllocateBusiness_partial.cs │ ├── ITD_AllocateDetailBusiness.cs │ ├── ITD_AllocateDetailBusiness_partial.cs │ ├── ITD_BadBusiness.cs │ ├── ITD_BadBusiness_partial.cs │ ├── ITD_BadDetailBusiness.cs │ ├── ITD_BadDetailBusiness_partial.cs │ ├── ITD_CheckAreaBusiness.cs │ ├── ITD_CheckAreaBusiness_Partial.cs │ ├── ITD_CheckBusiness.cs │ ├── ITD_CheckBusiness_Partial.cs │ ├── ITD_CheckDataBusiness.cs │ ├── ITD_CheckDataBusiness_Partial.cs │ ├── ITD_CheckMaterialBusiness.cs │ ├── ITD_CheckMaterialBusiness_Partial.cs │ ├── ITD_InStorDetailBusiness.cs │ ├── ITD_InStorDetailBusiness_partial.cs │ ├── ITD_InStorageBusiness.cs │ ├── ITD_InStorageBusiness_partial.cs │ ├── ITD_MoveBusiness.cs │ ├── ITD_MoveBusiness_partial.cs │ ├── ITD_MoveDetailBusiness.cs │ ├── ITD_MoveDetailBusiness_partial.cs │ ├── ITD_OutStorDetailBusiness.cs │ ├── ITD_OutStorDetailBusiness_partial.cs │ ├── ITD_OutStorageBusiness.cs │ ├── ITD_OutStorageBusiness_partial.cs │ ├── ITD_RecDetailBusiness.cs │ ├── ITD_RecDetailBusiness_partial.cs │ ├── ITD_ReceivingBusiness.cs │ ├── ITD_ReceivingBusiness_partial.cs │ ├── ITD_SendBusiness.cs │ ├── ITD_SendBusiness_partial.cs │ ├── ITD_SendDetailBusiness.cs │ └── ITD_SendDetailBusiness_partial.cs ├── Coldairarrow.Pad ├── .env ├── .env.docker ├── .env.live ├── .gitignore ├── Deploy.ps1 ├── README.md ├── babel.config.js ├── package-lock.json ├── package.json ├── public │ ├── Dockerfile │ ├── Web.config │ ├── default.conf │ ├── favicon.ico │ ├── favicon.png │ ├── index.html │ └── loading │ │ ├── loading.css │ │ ├── loading.html │ │ └── option2 │ │ ├── html_code_segment.html │ │ ├── loading.css │ │ └── loading.svg └── src │ ├── App.vue │ ├── api │ ├── Home │ │ └── UserSvc.js │ ├── PB │ │ ├── EnumSvc.js │ │ ├── LocalSvc.js │ │ ├── MaterialSvc.js │ │ ├── PlanSvc.js │ │ ├── StorageSvc.js │ │ └── TraySvc.js │ ├── Report │ │ └── LocalMaterialSvc.js │ └── TD │ │ ├── InStorageSvc.js │ │ ├── OutStorageSvc.js │ │ ├── ReceiveSvc.js │ │ └── SendSvc.js │ ├── assets │ ├── logo.png │ └── logo.svg │ ├── components │ ├── BarcodeReader.vue │ ├── BaseEnumName.vue │ ├── BaseEnumSelect.vue │ ├── HelloWorld.vue │ ├── InputBarcode.vue │ ├── InputLocation.vue │ ├── InputMaterial.vue │ ├── InputTray.vue │ ├── LocalChoose.vue │ ├── MaterialChoose.vue │ ├── StorageSwitch.vue │ ├── TrayChoose.vue │ └── UserMenu.vue │ ├── config.js │ ├── layouts │ ├── BaseLayout.vue │ └── UserLayout.vue │ ├── main.js │ ├── router.js │ ├── utils │ ├── TokenCache.js │ └── axios-plugin.js │ └── views │ ├── Home │ ├── Index.vue │ ├── Login.vue │ └── Test.vue │ ├── InStorage │ ├── AutoIn.vue │ ├── Detail.vue │ ├── InBlankTray.vue │ ├── InManualTray.vue │ ├── List.vue │ ├── ManualIn.vue │ ├── Receive.vue │ ├── ReceiveDetail.vue │ └── ReceiveList.vue │ ├── OutStorage │ ├── AutoOut.vue │ ├── Detail.vue │ ├── List.vue │ ├── ManualOut.vue │ ├── OutBlankTray.vue │ ├── OutManualTray.vue │ ├── Send.vue │ ├── SendDetail.vue │ └── SendList.vue │ ├── PB │ ├── LocalList.vue │ ├── MaterialDetail.vue │ ├── MaterialList.vue │ ├── PlanDetail.vue │ ├── PlanList.vue │ └── TrayList.vue │ └── Report │ └── LocalMaterialReport.vue ├── Coldairarrow.UnitTests ├── 10.Coldairarrow.UnitTests.csproj ├── BaseTest.cs ├── DemoTest.cs ├── appsettings.Development.json └── appsettings.json ├── Coldairarrow.Util ├── 01.Coldairarrow.Util.csproj ├── AOP │ ├── Abstraction │ │ ├── BaseAOPAttribute.cs │ │ ├── CastleAOPContext.cs │ │ ├── CastleInterceptor.cs │ │ └── IAOPContext.cs │ └── TransactionalAttribute.cs ├── ClassLibrary │ ├── BloomFilter.cs │ ├── ConsistentHash.cs │ ├── MurmurHash2.cs │ ├── ParentChildrenMapping.cs │ ├── ShareMemory.cs │ ├── TaskQeury.cs │ └── UsingLock.cs ├── DI │ ├── IScopeDependency.cs │ ├── ISingletonDependency.cs │ └── ITransientDependency.cs ├── DataAccess │ ├── DbHelper.cs │ ├── DbHelperFactory.cs │ ├── DbProviderFactoryHelper.cs │ ├── MySqlHelper.cs │ ├── OracleHelper.cs │ ├── PostgreSqlHelper.cs │ └── SqlServerHelper.cs ├── Extention │ ├── Extention.ActionExecutingContext.cs │ ├── Extention.Byte.cs │ ├── Extention.DataTable.cs │ ├── Extention.DateTime.cs │ ├── Extention.Delegate.cs │ ├── Extention.Enum.cs │ ├── Extention.ExpandoObject.cs │ ├── Extention.Expression.cs │ ├── Extention.Guid.cs │ ├── Extention.HttpRequest.cs │ ├── Extention.IEnumerable.cs │ ├── Extention.IHostBuilder.cs │ ├── Extention.IQueryable.cs │ ├── Extention.IServiceCollection.cs │ ├── Extention.Int.cs │ ├── Extention.Json.cs │ ├── Extention.Object.cs │ ├── Extention.Stream.cs │ └── Extention.String.cs ├── GlobalData.cs ├── Helper │ ├── AsposeOfficeHelper.cs │ ├── AsyncHelper.cs │ ├── BaiduApiHelper.cs │ ├── ConfigHelper.cs │ ├── DbSearchHelper.cs │ ├── DelegateHelper.cs │ ├── EncodingHelper.cs │ ├── EnumHelper.cs │ ├── ExceptionHelper.cs │ ├── FileHelper.cs │ ├── FileZipHelper.cs │ ├── GuidHelper.cs │ ├── HttpClientHelper.cs │ ├── HttpHelper.cs │ ├── ImgHelper.cs │ ├── ImgVerifyCodeHelper.cs │ ├── IpHelper.cs │ ├── JWTHelper.cs │ ├── JobHelper.cs │ ├── LinqHelper.cs │ ├── LogHelper.cs │ ├── LoopHelper.cs │ ├── PathHelper.cs │ ├── QRCodeHelper.cs │ ├── RandomHelper.cs │ ├── TreeHelper.cs │ ├── TypeBuilderHelper.cs │ └── XmlHelper.cs ├── Primitives │ ├── AjaxResult.T.cs │ ├── AjaxResult.cs │ ├── BusException.cs │ ├── CacheType.cs │ ├── ConditionDTO.cs │ ├── DbTableInfo.cs │ ├── DeleteMode.cs │ ├── DynamicModel.cs │ ├── ErrorResult.cs │ ├── FileEntry.cs │ ├── IdInputDTO.cs │ ├── JWTPayload.cs │ ├── LogType.cs │ ├── MapAttribute.cs │ ├── OptionListInputDTO.cs │ ├── PageInput.T.cs │ ├── PageInput.cs │ ├── PageResult.cs │ ├── SelectOption.cs │ ├── TableInfo.cs │ └── TreeModel.cs └── lib │ └── Aspose.Cells.dll ├── Coldairarrow.Web ├── .editorconfig ├── .env ├── .env.docker ├── .env.live ├── .env.preview ├── .gitattributes ├── .gitignore ├── .prettierrc ├── .travis.yml ├── Deploy.ps1 ├── LICENSE ├── babel.config.js ├── config │ └── plugin.config.js ├── jest.config.js ├── jsconfig.json ├── package-lock.json ├── package.json ├── public │ ├── Dockerfile │ ├── Web.config │ ├── avatar2.jpg │ ├── color.less │ ├── default.conf │ ├── favicon.ico │ ├── index.html │ ├── loading │ │ ├── loading.css │ │ ├── loading.html │ │ └── option2 │ │ │ ├── html_code_segment.html │ │ │ ├── loading.css │ │ │ └── loading.svg │ └── logo.png ├── src │ ├── App.vue │ ├── assets │ │ ├── antLogo.svg │ │ ├── background.svg │ │ ├── fullLogo.png │ │ ├── icons │ │ │ └── bx-analyse.svg │ │ ├── logo.png │ │ ├── logo.svg │ │ └── zeqp.gif │ ├── components │ │ ├── BaseEnum │ │ │ ├── BaseEnumName.vue │ │ │ └── BaseEnumSelect.vue │ │ ├── CSelect │ │ │ └── CSelect.vue │ │ ├── CUploadFile │ │ │ └── CUploadFile.vue │ │ ├── CUploadImg │ │ │ └── CUploadImg.vue │ │ ├── ChartCard │ │ │ ├── ChartCard.vue │ │ │ └── Trend.vue │ │ ├── EditableCell │ │ │ └── EditableCell.vue │ │ ├── Exception │ │ │ ├── ExceptionPage.vue │ │ │ ├── index.js │ │ │ └── type.js │ │ ├── GlobalFooter │ │ │ ├── GlobalFooter.vue │ │ │ └── index.js │ │ ├── GlobalHeader │ │ │ ├── GlobalHeader.vue │ │ │ └── index.js │ │ ├── IT │ │ │ ├── LocalMaterialChoose.vue │ │ │ └── LocalMaterialSelect.vue │ │ ├── IconSelector │ │ │ ├── IconSelector.vue │ │ │ ├── README.md │ │ │ ├── icons.js │ │ │ └── index.js │ │ ├── Location │ │ │ ├── LocationChoose.vue │ │ │ ├── LocationSelect.vue │ │ │ └── LocationSelect_Old.vue │ │ ├── Material │ │ │ ├── MaterialChoose.vue │ │ │ └── MaterialSelect.vue │ │ ├── Menu │ │ │ ├── SideMenu.vue │ │ │ ├── index.js │ │ │ ├── menu.js │ │ │ └── menu.render.js │ │ ├── MultiTab │ │ │ ├── MultiTab.vue │ │ │ ├── index.js │ │ │ └── index.less │ │ ├── NoticeIcon │ │ │ ├── NoticeIcon.vue │ │ │ └── index.js │ │ ├── PB │ │ │ ├── CustomerChoose.vue │ │ │ ├── CustomerSelect.vue │ │ │ ├── LeadingShow.vue │ │ │ ├── MaterialTypeSelect.vue │ │ │ ├── MeasureSelect.vue │ │ │ ├── StorAreaSelect.vue │ │ │ ├── StorAreaShow.vue │ │ │ ├── SupplierChoose.vue │ │ │ └── SupplierSelect.vue │ │ ├── PageHeader │ │ │ ├── PageHeader.vue │ │ │ └── index.js │ │ ├── SettingDrawer │ │ │ ├── SettingDrawer.vue │ │ │ ├── SettingItem.vue │ │ │ ├── index.js │ │ │ ├── settingConfig.js │ │ │ └── themeColor.js │ │ ├── Storage │ │ │ ├── AllStorageSelect.vue │ │ │ ├── AreaSelect.vue │ │ │ ├── LanewaySelect.vue │ │ │ ├── RackSelect.vue │ │ │ ├── StorageSelect.vue │ │ │ └── StorageSwitch.vue │ │ ├── Tray │ │ │ ├── TrayChoose.vue │ │ │ ├── TraySelect.vue │ │ │ ├── TraySelect_Old.vue │ │ │ └── ZoneSelect.vue │ │ ├── User │ │ │ └── UserSelect.vue │ │ ├── WangEditor │ │ │ └── WangEditor.vue │ │ ├── _util │ │ │ └── util.js │ │ ├── global.less │ │ ├── index.js │ │ ├── index.less │ │ └── tools │ │ │ ├── Breadcrumb.vue │ │ │ ├── ChangePwdForm.vue │ │ │ ├── DetailList.vue │ │ │ ├── HeadInfo.vue │ │ │ ├── Logo.vue │ │ │ ├── TwoStepCaptcha.vue │ │ │ ├── UserMenu.vue │ │ │ └── index.js │ ├── config │ │ ├── defaultSettings.js │ │ └── router.config.js │ ├── core │ │ ├── bootstrap.js │ │ ├── directives │ │ │ └── action.js │ │ ├── icons.js │ │ ├── lazy_lib │ │ │ └── components_use.js │ │ ├── lazy_use.js │ │ └── use.js │ ├── layouts │ │ ├── BasicLayout.vue │ │ ├── BlankLayout.vue │ │ ├── PageView.vue │ │ ├── RouteView.vue │ │ ├── UserLayout.vue │ │ └── index.js │ ├── main.js │ ├── permission.js │ ├── router │ │ ├── README.md │ │ └── index.js │ ├── store │ │ ├── getters.js │ │ ├── index.js │ │ ├── modules │ │ │ └── app.js │ │ └── mutation-types.js │ ├── utils │ │ ├── cache │ │ │ ├── OperatorCache.js │ │ │ ├── ParameterCache.js │ │ │ └── TokenCache.js │ │ ├── device.js │ │ ├── domUtil.js │ │ ├── filter.js │ │ ├── helper │ │ │ ├── ProcessHelper.js │ │ │ ├── TreeHelper.js │ │ │ └── TypeHelper.js │ │ ├── mixin.js │ │ ├── plugin │ │ │ ├── axios-plugin.js │ │ │ ├── operator-plugin.js │ │ │ └── parameter-plugin.js │ │ ├── routerUtil.js │ │ ├── util.js │ │ └── utils.less │ └── views │ │ ├── Base │ │ ├── Base_Enum │ │ │ ├── EditForm.vue │ │ │ └── List.vue │ │ ├── Base_EnumItem │ │ │ ├── EditForm.vue │ │ │ └── List.vue │ │ ├── Base_Parameter │ │ │ ├── EditForm.vue │ │ │ └── List.vue │ │ └── Base_UserStor │ │ │ ├── EditForm.vue │ │ │ └── List.vue │ │ ├── Base_Manage │ │ ├── Base_Action │ │ │ ├── EditForm.vue │ │ │ ├── List.vue │ │ │ └── PermissionList.vue │ │ ├── Base_AppSecret │ │ │ ├── EditForm.vue │ │ │ └── List.vue │ │ ├── Base_DbLink │ │ │ ├── EditForm.vue │ │ │ └── List.vue │ │ ├── Base_Department │ │ │ ├── EditForm.vue │ │ │ └── List.vue │ │ ├── Base_Role │ │ │ ├── EditForm.vue │ │ │ └── List.vue │ │ ├── Base_User │ │ │ ├── EditForm.vue │ │ │ └── List.vue │ │ ├── Base_UserLog │ │ │ └── List.vue │ │ └── BuildCode │ │ │ ├── EditForm.vue │ │ │ └── List.vue │ │ ├── Develop │ │ ├── Editor.vue │ │ ├── IconSelectorView.vue │ │ ├── SelectSearch.vue │ │ ├── UploadFile.vue │ │ └── UploadImg.vue │ │ ├── Home │ │ ├── Introduce.vue │ │ ├── Login.vue │ │ └── Statis.vue │ │ ├── IT │ │ ├── IT_LocalDetail │ │ │ └── List.vue │ │ ├── IT_LocalMaterial │ │ │ └── List.vue │ │ └── IT_RecordBook │ │ │ └── List.vue │ │ ├── PB │ │ ├── PB_Address │ │ │ ├── EditForm.vue │ │ │ └── List.vue │ │ ├── PB_AreaMaterial │ │ │ ├── EditForm.vue │ │ │ └── List.vue │ │ ├── PB_BarCode │ │ │ ├── EditForm.vue │ │ │ └── List.vue │ │ ├── PB_BarCodeRule │ │ │ ├── EditForm.vue │ │ │ └── List.vue │ │ ├── PB_BarCodeType │ │ │ ├── EditForm.vue │ │ │ └── List.vue │ │ ├── PB_Customer │ │ │ ├── EditForm.vue │ │ │ └── List.vue │ │ ├── PB_Equipment │ │ │ ├── EditForm.vue │ │ │ └── List.vue │ │ ├── PB_FeedPoint │ │ │ ├── EditForm.vue │ │ │ └── List.vue │ │ ├── PB_Laneway │ │ │ ├── EditForm.vue │ │ │ └── List.vue │ │ ├── PB_LocalTray │ │ │ ├── EditForm.vue │ │ │ └── List.vue │ │ ├── PB_LocalTrayType │ │ │ ├── EditForm.vue │ │ │ └── List.vue │ │ ├── PB_Location │ │ │ ├── EditForm.vue │ │ │ ├── LeadingForm.vue │ │ │ └── List.vue │ │ ├── PB_Material │ │ │ ├── EditForm.vue │ │ │ └── List.vue │ │ ├── PB_MaterialPoint │ │ │ ├── EditForm.vue │ │ │ └── List.vue │ │ ├── PB_MaterialType │ │ │ ├── EditForm.vue │ │ │ └── List.vue │ │ ├── PB_Measure │ │ │ ├── EditForm.vue │ │ │ └── List.vue │ │ ├── PB_Rack │ │ │ ├── EditForm.vue │ │ │ └── List.vue │ │ ├── PB_StorArea │ │ │ ├── EditForm.vue │ │ │ └── List.vue │ │ ├── PB_Storage │ │ │ ├── ConfigFrom.vue │ │ │ ├── EditForm.vue │ │ │ └── List.vue │ │ ├── PB_Supplier │ │ │ ├── EditForm.vue │ │ │ └── List.vue │ │ ├── PB_Tray │ │ │ ├── EditForm.vue │ │ │ └── List.vue │ │ ├── PB_TrayMaterial │ │ │ ├── EditForm.vue │ │ │ └── List.vue │ │ ├── PB_TrayType │ │ │ ├── EditForm.vue │ │ │ └── List.vue │ │ └── PB_TrayZone │ │ │ ├── EditForm.vue │ │ │ └── List.vue │ │ ├── PD │ │ └── PD_Plan │ │ │ ├── EditForm.vue │ │ │ └── List.vue │ │ ├── Report │ │ ├── InStorage │ │ │ └── Report.vue │ │ ├── MaterialSummary │ │ │ └── Report.vue │ │ └── OutStorage │ │ │ └── Report.vue │ │ ├── TD │ │ ├── TD_Allocate │ │ │ ├── EditForm.vue │ │ │ └── List.vue │ │ ├── TD_AllocateDetail │ │ │ ├── AllocateChoose.vue │ │ │ └── List.vue │ │ ├── TD_Bad │ │ │ ├── EditForm.vue │ │ │ └── List.vue │ │ ├── TD_BadDetail │ │ │ ├── BadChoose.vue │ │ │ └── List.vue │ │ ├── TD_Check │ │ │ ├── Audite.vue │ │ │ ├── Check.vue │ │ │ ├── CheckDataList.vue │ │ │ ├── EditForm.vue │ │ │ ├── List.vue │ │ │ ├── MaterialList.vue │ │ │ ├── RandomMaterial.vue │ │ │ └── Show.vue │ │ ├── TD_CheckArea │ │ │ ├── EditForm.vue │ │ │ └── List.vue │ │ ├── TD_CheckData │ │ │ ├── EditForm.vue │ │ │ └── List.vue │ │ ├── TD_CheckMaterial │ │ │ ├── EditForm.vue │ │ │ └── List.vue │ │ ├── TD_InStorDetail │ │ │ ├── EditForm.vue │ │ │ └── List.vue │ │ ├── TD_InStorage │ │ │ ├── EditForm.vue │ │ │ ├── InBlankTray.vue │ │ │ └── List.vue │ │ ├── TD_Move │ │ │ ├── EditForm.vue │ │ │ └── List.vue │ │ ├── TD_MoveDetail │ │ │ ├── List.vue │ │ │ └── MoveChoose.vue │ │ ├── TD_OutStorDetail │ │ │ ├── List.vue │ │ │ └── LocalMaterialList.vue │ │ ├── TD_OutStorage │ │ │ ├── EditForm.vue │ │ │ ├── List.vue │ │ │ └── OutBlankTray.vue │ │ ├── TD_RecDetail │ │ │ └── List.vue │ │ ├── TD_Receiving │ │ │ ├── EditForm.vue │ │ │ └── List.vue │ │ ├── TD_Send │ │ │ ├── EditForm.vue │ │ │ └── List.vue │ │ └── TD_SendDetail │ │ │ ├── List.vue │ │ │ └── SendMaterialList.vue │ │ └── exception │ │ ├── 403.vue │ │ ├── 404.vue │ │ └── 500.vue ├── tests │ └── unit │ │ └── .eslintrc.js ├── vue.config.js ├── webstorm.config.js └── yarn.lock ├── Deploy.ps1 ├── DeployIIS.ps1 ├── DeployUbuntu.ps1 ├── ZEQP.WMS.sln └── clear.bat /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuget: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/.nuget -------------------------------------------------------------------------------- /.tfignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/.tfignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/README.md -------------------------------------------------------------------------------- /docs/OpenSource/AppImg/API1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/docs/OpenSource/AppImg/API1.png -------------------------------------------------------------------------------- /docs/OpenSource/AppImg/API2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/docs/OpenSource/AppImg/API2.png -------------------------------------------------------------------------------- /docs/OpenSource/AppImg/API3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/docs/OpenSource/AppImg/API3.png -------------------------------------------------------------------------------- /docs/OpenSource/AppImg/PDA1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/docs/OpenSource/AppImg/PDA1.png -------------------------------------------------------------------------------- /docs/OpenSource/AppImg/PDA2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/docs/OpenSource/AppImg/PDA2.png -------------------------------------------------------------------------------- /docs/OpenSource/AppImg/PDA3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/docs/OpenSource/AppImg/PDA3.png -------------------------------------------------------------------------------- /docs/OpenSource/AppImg/PDA4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/docs/OpenSource/AppImg/PDA4.png -------------------------------------------------------------------------------- /docs/OpenSource/AppImg/PDA5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/docs/OpenSource/AppImg/PDA5.png -------------------------------------------------------------------------------- /docs/OpenSource/AppImg/PDA6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/docs/OpenSource/AppImg/PDA6.png -------------------------------------------------------------------------------- /docs/OpenSource/AppImg/PDA7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/docs/OpenSource/AppImg/PDA7.png -------------------------------------------------------------------------------- /docs/OpenSource/AppImg/Web1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/docs/OpenSource/AppImg/Web1.png -------------------------------------------------------------------------------- /docs/OpenSource/AppImg/Web2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/docs/OpenSource/AppImg/Web2.png -------------------------------------------------------------------------------- /docs/OpenSource/AppImg/Web3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/docs/OpenSource/AppImg/Web3.png -------------------------------------------------------------------------------- /docs/OpenSource/AppImg/Web4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/docs/OpenSource/AppImg/Web4.png -------------------------------------------------------------------------------- /docs/OpenSource/AppImg/Web5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/docs/OpenSource/AppImg/Web5.png -------------------------------------------------------------------------------- /docs/OpenSource/AppImg/Web6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/docs/OpenSource/AppImg/Web6.png -------------------------------------------------------------------------------- /docs/OpenSource/QQGroup1QrCode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/docs/OpenSource/QQGroup1QrCode.png -------------------------------------------------------------------------------- /docs/初始化文件/ZEQP_WMS.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/docs/初始化文件/ZEQP_WMS.sql -------------------------------------------------------------------------------- /docs/初始化文件/清空数据库.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/docs/初始化文件/清空数据库.sql -------------------------------------------------------------------------------- /docs/实施文档/WMS安装说明书.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/docs/实施文档/WMS安装说明书.pdf -------------------------------------------------------------------------------- /docs/数据库设计/Base_Table.pdm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/docs/数据库设计/Base_Table.pdm -------------------------------------------------------------------------------- /docs/数据库设计/Base_Table.sws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/docs/数据库设计/Base_Table.sws -------------------------------------------------------------------------------- /docs/数据库设计/WMS仓库管理系统.pdm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/docs/数据库设计/WMS仓库管理系统.pdm -------------------------------------------------------------------------------- /src/CodeSpace.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/CodeSpace.code-workspace -------------------------------------------------------------------------------- /src/Coldairarrow.Api/.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Api/.config/dotnet-tools.json -------------------------------------------------------------------------------- /src/Coldairarrow.Api/00Filter/BaseActionFilterAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Api/00Filter/BaseActionFilterAsync.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Api/00Filter/JWT校验/CheckJWTAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Api/00Filter/JWT校验/CheckJWTAttribute.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Api/00Filter/JWT校验/NoCheckJWTAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Api/00Filter/JWT校验/NoCheckJWTAttribute.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Api/00Filter/参数校验/ValidFilterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Api/00Filter/参数校验/ValidFilterAttribute.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Api/00Filter/对外接口签名校验/CheckSignAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Api/00Filter/对外接口签名校验/CheckSignAttribute.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Api/00Filter/接口权限/ApiPermissionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Api/00Filter/接口权限/ApiPermissionAttribute.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Api/00Filter/接口请求日志/ApiLogAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Api/00Filter/接口请求日志/ApiLogAttribute.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Api/01Middleware/CorsMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Api/01Middleware/CorsMiddleware.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Api/05.Coldairarrow.Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Api/05.Coldairarrow.Api.csproj -------------------------------------------------------------------------------- /src/Coldairarrow.Api/BuildCodeTemplate/Business.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Api/BuildCodeTemplate/Business.txt -------------------------------------------------------------------------------- /src/Coldairarrow.Api/BuildCodeTemplate/Controller.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Api/BuildCodeTemplate/Controller.txt -------------------------------------------------------------------------------- /src/Coldairarrow.Api/BuildCodeTemplate/EditForm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Api/BuildCodeTemplate/EditForm.txt -------------------------------------------------------------------------------- /src/Coldairarrow.Api/BuildCodeTemplate/IBusiness.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Api/BuildCodeTemplate/IBusiness.txt -------------------------------------------------------------------------------- /src/Coldairarrow.Api/BuildCodeTemplate/List.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Api/BuildCodeTemplate/List.txt -------------------------------------------------------------------------------- /src/Coldairarrow.Api/Controllers/Base/Base_EnumController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Api/Controllers/Base/Base_EnumController.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Api/Controllers/BaseApiController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Api/Controllers/BaseApiController.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Api/Controllers/BaseController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Api/Controllers/BaseController.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Api/Controllers/PB/PB_AddressController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Api/Controllers/PB/PB_AddressController.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Api/Controllers/PB/PB_BarCodeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Api/Controllers/PB/PB_BarCodeController.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Api/Controllers/PB/PB_CustomerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Api/Controllers/PB/PB_CustomerController.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Api/Controllers/PB/PB_LanewayController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Api/Controllers/PB/PB_LanewayController.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Api/Controllers/PB/PB_LocationController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Api/Controllers/PB/PB_LocationController.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Api/Controllers/PB/PB_MaterialController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Api/Controllers/PB/PB_MaterialController.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Api/Controllers/PB/PB_MeasureController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Api/Controllers/PB/PB_MeasureController.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Api/Controllers/PB/PB_RackController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Api/Controllers/PB/PB_RackController.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Api/Controllers/PB/PB_StorAreaController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Api/Controllers/PB/PB_StorAreaController.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Api/Controllers/PB/PB_StorageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Api/Controllers/PB/PB_StorageController.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Api/Controllers/PB/PB_SupplierController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Api/Controllers/PB/PB_SupplierController.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Api/Controllers/PB/PB_TrayController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Api/Controllers/PB/PB_TrayController.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Api/Controllers/PB/PB_TrayTypeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Api/Controllers/PB/PB_TrayTypeController.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Api/Controllers/PB/PB_TrayZoneController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Api/Controllers/PB/PB_TrayZoneController.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Api/Controllers/PD/PD_PlanController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Api/Controllers/PD/PD_PlanController.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Api/Controllers/TD/TD_AllocateController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Api/Controllers/TD/TD_AllocateController.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Api/Controllers/TD/TD_BadController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Api/Controllers/TD/TD_BadController.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Api/Controllers/TD/TD_CheckController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Api/Controllers/TD/TD_CheckController.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Api/Controllers/TD/TD_MoveController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Api/Controllers/TD/TD_MoveController.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Api/Controllers/TD/TD_SendController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Api/Controllers/TD/TD_SendController.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Api/Controllers/TestController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Api/Controllers/TestController.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Api/Deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Api/Deploy.ps1 -------------------------------------------------------------------------------- /src/Coldairarrow.Api/DeployUbuntu.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Api/DeployUbuntu.ps1 -------------------------------------------------------------------------------- /src/Coldairarrow.Api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Api/Dockerfile -------------------------------------------------------------------------------- /src/Coldairarrow.Api/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Api/Program.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Api/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Api/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Coldairarrow.Api/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Api/Startup.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Api/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Api/appsettings.Development.json -------------------------------------------------------------------------------- /src/Coldairarrow.Api/appsettings.Production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Api/appsettings.Production.json -------------------------------------------------------------------------------- /src/Coldairarrow.Api/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Api/appsettings.json -------------------------------------------------------------------------------- /src/Coldairarrow.Api/wwwroot/Upload/_.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Coldairarrow.Business/04.Coldairarrow.Business.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/04.Coldairarrow.Business.csproj -------------------------------------------------------------------------------- /src/Coldairarrow.Business/AOP/DataAddLogAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/AOP/DataAddLogAttribute.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/AOP/DataDeleteLogAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/AOP/DataDeleteLogAttribute.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/AOP/DataEditLogAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/AOP/DataEditLogAttribute.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/AOP/DataRepeatValidateAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/AOP/DataRepeatValidateAttribute.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/AOP/WriteDataLogAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/AOP/WriteDataLogAttribute.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/Base/Base_EnumBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/Base/Base_EnumBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/Base/Base_EnumItemBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/Base/Base_EnumItemBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/Base/Base_ParameterBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/Base/Base_ParameterBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/Base/Base_UserStorBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/Base/Base_UserStorBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/BaseBusiness.T.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/BaseBusiness.T.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/BaseBusiness.T.partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/BaseBusiness.T.partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/Base_Manage/Base_ActionBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/Base_Manage/Base_ActionBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/Base_Manage/Base_DbLinkBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/Base_Manage/Base_DbLinkBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/Base_Manage/Base_RoleBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/Base_Manage/Base_RoleBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/Base_Manage/Base_UserBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/Base_Manage/Base_UserBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/Base_Manage/BuildCodeBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/Base_Manage/BuildCodeBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/Base_Manage/HomeBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/Base_Manage/HomeBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/Base_Manage/PermissionBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/Base_Manage/PermissionBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/Cache/BaseCache.T.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/Cache/BaseCache.T.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/Cache/Base_UserCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/Cache/Base_UserCache.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/Cache/IBaseCache.T.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/Cache/IBaseCache.T.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/Cache/IBase_UserCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/Cache/IBase_UserCache.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/IT/IT_LocalDetailBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/IT/IT_LocalDetailBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/IT/IT_LocalMaterialBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/IT/IT_LocalMaterialBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/IT/IT_RecordBookBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/IT/IT_RecordBookBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/Operator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/Operator.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/PB/NoCheckJWTAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/PB/NoCheckJWTAttribute.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/PB/PB_AddressBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/PB/PB_AddressBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/PB/PB_AddressBusiness_Partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/PB/PB_AddressBusiness_Partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/PB/PB_AreaMaterialBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/PB/PB_AreaMaterialBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/PB/PB_BarCodeBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/PB/PB_BarCodeBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/PB/PB_BarCodeRuleBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/PB/PB_BarCodeRuleBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/PB/PB_BarCodeSerialBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/PB/PB_BarCodeSerialBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/PB/PB_BarCodeTypeBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/PB/PB_BarCodeTypeBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/PB/PB_CustomerBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/PB/PB_CustomerBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/PB/PB_CustomerBusiness_Partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/PB/PB_CustomerBusiness_Partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/PB/PB_EquipmentBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/PB/PB_EquipmentBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/PB/PB_FeedPointBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/PB/PB_FeedPointBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/PB/PB_FeedPointBusiness_partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/PB/PB_FeedPointBusiness_partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/PB/PB_LanewayBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/PB/PB_LanewayBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/PB/PB_LocalTrayBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/PB/PB_LocalTrayBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/PB/PB_LocationBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/PB/PB_LocationBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/PB/PB_LocationBusiness_partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/PB/PB_LocationBusiness_partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/PB/PB_MaterialBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/PB/PB_MaterialBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/PB/PB_MaterialBusiness_partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/PB/PB_MaterialBusiness_partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/PB/PB_MaterialPointBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/PB/PB_MaterialPointBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/PB/PB_MaterialTypeBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/PB/PB_MaterialTypeBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/PB/PB_MeasureBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/PB/PB_MeasureBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/PB/PB_MeasureBusiness_Partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/PB/PB_MeasureBusiness_Partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/PB/PB_RackBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/PB/PB_RackBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/PB/PB_StorAreaBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/PB/PB_StorAreaBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/PB/PB_StorAreaBusiness_Partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/PB/PB_StorAreaBusiness_Partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/PB/PB_StorageBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/PB/PB_StorageBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/PB/PB_SupplierBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/PB/PB_SupplierBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/PB/PB_SupplierBusiness_Partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/PB/PB_SupplierBusiness_Partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/PB/PB_TrayBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/PB/PB_TrayBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/PB/PB_TrayBusiness_partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/PB/PB_TrayBusiness_partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/PB/PB_TrayMaterialBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/PB/PB_TrayMaterialBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/PB/PB_TrayTypeBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/PB/PB_TrayTypeBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/PB/PB_TrayTypeBusiness_partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/PB/PB_TrayTypeBusiness_partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/PB/PB_TrayZoneBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/PB/PB_TrayZoneBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/PD/PD_PlanBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/PD/PD_PlanBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/Report/Report_IntroduceBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/Report/Report_IntroduceBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/TD/TD_AllocateBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/TD/TD_AllocateBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/TD/TD_AllocateBusiness_partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/TD/TD_AllocateBusiness_partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/TD/TD_AllocateDetailBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/TD/TD_AllocateDetailBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/TD/TD_BadBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/TD/TD_BadBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/TD/TD_BadBusiness_partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/TD/TD_BadBusiness_partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/TD/TD_BadDetailBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/TD/TD_BadDetailBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/TD/TD_BadDetailBusiness_partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/TD/TD_BadDetailBusiness_partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/TD/TD_CheckAreaBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/TD/TD_CheckAreaBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/TD/TD_CheckAreaBusiness_Partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/TD/TD_CheckAreaBusiness_Partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/TD/TD_CheckBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/TD/TD_CheckBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/TD/TD_CheckBusiness_Partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/TD/TD_CheckBusiness_Partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/TD/TD_CheckDataBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/TD/TD_CheckDataBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/TD/TD_CheckDataBusiness_Partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/TD/TD_CheckDataBusiness_Partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/TD/TD_CheckMaterialBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/TD/TD_CheckMaterialBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/TD/TD_InStorDetailBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/TD/TD_InStorDetailBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/TD/TD_InStorageBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/TD/TD_InStorageBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/TD/TD_InStorageBusiness_partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/TD/TD_InStorageBusiness_partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/TD/TD_MoveBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/TD/TD_MoveBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/TD/TD_MoveBusiness_partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/TD/TD_MoveBusiness_partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/TD/TD_MoveDetailBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/TD/TD_MoveDetailBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/TD/TD_OutStorDetailBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/TD/TD_OutStorDetailBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/TD/TD_OutStorageBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/TD/TD_OutStorageBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/TD/TD_RecDetailBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/TD/TD_RecDetailBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/TD/TD_RecDetailBusiness_partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/TD/TD_RecDetailBusiness_partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/TD/TD_ReceivingBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/TD/TD_ReceivingBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/TD/TD_ReceivingBusiness_partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/TD/TD_ReceivingBusiness_partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/TD/TD_SendBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/TD/TD_SendBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/TD/TD_SendBusiness_partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/TD/TD_SendBusiness_partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Business/TD/TD_SendDetailBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Business/TD/TD_SendDetailBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Console/06.Coldairarrow.Console.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Console/06.Coldairarrow.Console.csproj -------------------------------------------------------------------------------- /src/Coldairarrow.Console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Console/Program.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Console/ServiceInstall/install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Console/ServiceInstall/install.bat -------------------------------------------------------------------------------- /src/Coldairarrow.Console/ServiceInstall/nssm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Console/ServiceInstall/nssm.exe -------------------------------------------------------------------------------- /src/Coldairarrow.Console/ServiceInstall/uninstall.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Console/ServiceInstall/uninstall.bat -------------------------------------------------------------------------------- /src/Coldairarrow.Console/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Console/appsettings.Development.json -------------------------------------------------------------------------------- /src/Coldairarrow.Console/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Console/appsettings.json -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/02.Coldairarrow.Entity.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/02.Coldairarrow.Entity.csproj -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/Base/Base_Enum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/Base/Base_Enum.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/Base/Base_EnumItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/Base/Base_EnumItem.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/Base/Base_EnumItem_partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/Base/Base_EnumItem_partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/Base/Base_Enum_partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/Base/Base_Enum_partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/Base/Base_Parameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/Base/Base_Parameter.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/Base/Base_UserStor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/Base/Base_UserStor.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/Base_Manage/Base_Action.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/Base_Manage/Base_Action.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/Base_Manage/Base_AppSecret.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/Base_Manage/Base_AppSecret.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/Base_Manage/Base_DbLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/Base_Manage/Base_DbLink.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/Base_Manage/Base_Department.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/Base_Manage/Base_Department.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/Base_Manage/Base_Role.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/Base_Manage/Base_Role.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/Base_Manage/Base_RoleAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/Base_Manage/Base_RoleAction.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/Base_Manage/Base_User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/Base_Manage/Base_User.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/Base_Manage/Base_UserLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/Base_Manage/Base_UserLog.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/Base_Manage/Base_UserRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/Base_Manage/Base_UserRole.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/DTO/Base_UserDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/DTO/Base_UserDTO.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/DTO/Base_UserDTO_partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/DTO/Base_UserDTO_partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/Enum/ActionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/Enum/ActionType.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/Enum/RoleTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/Enum/RoleTypes.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/IT/IT_LocalDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/IT/IT_LocalDetail.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/IT/IT_LocalDetail_partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/IT/IT_LocalDetail_partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/IT/IT_LocalMaterial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/IT/IT_LocalMaterial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/IT/IT_LocalMaterial_Partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/IT/IT_LocalMaterial_Partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/IT/IT_RecordBook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/IT/IT_RecordBook.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/IT/IT_RecordBook_Partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/IT/IT_RecordBook_Partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/PB/PB_Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/PB/PB_Address.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/PB/PB_AreaMaterial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/PB/PB_AreaMaterial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/PB/PB_AreaMaterial_partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/PB/PB_AreaMaterial_partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/PB/PB_BarCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/PB/PB_BarCode.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/PB/PB_BarCodeRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/PB/PB_BarCodeRule.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/PB/PB_BarCodeRule_partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/PB/PB_BarCodeRule_partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/PB/PB_BarCodeSerial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/PB/PB_BarCodeSerial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/PB/PB_BarCodeSerial_partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/PB/PB_BarCodeSerial_partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/PB/PB_BarCodeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/PB/PB_BarCodeType.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/PB/PB_BarCodeType_partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/PB/PB_BarCodeType_partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/PB/PB_Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/PB/PB_Customer.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/PB/PB_Equipment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/PB/PB_Equipment.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/PB/PB_FeedPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/PB/PB_FeedPoint.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/PB/PB_FeedPoint_partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/PB/PB_FeedPoint_partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/PB/PB_Laneway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/PB/PB_Laneway.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/PB/PB_LocalTray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/PB/PB_LocalTray.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/PB/PB_LocalTray_Partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/PB/PB_LocalTray_Partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/PB/PB_Location.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/PB/PB_Location.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/PB/PB_Location_Partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/PB/PB_Location_Partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/PB/PB_Material.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/PB/PB_Material.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/PB/PB_MaterialPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/PB/PB_MaterialPoint.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/PB/PB_MaterialPoint_partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/PB/PB_MaterialPoint_partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/PB/PB_MaterialType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/PB/PB_MaterialType.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/PB/PB_Material_Partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/PB/PB_Material_Partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/PB/PB_Measure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/PB/PB_Measure.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/PB/PB_Rack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/PB/PB_Rack.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/PB/PB_StorArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/PB/PB_StorArea.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/PB/PB_Storage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/PB/PB_Storage.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/PB/PB_Supplier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/PB/PB_Supplier.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/PB/PB_Tray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/PB/PB_Tray.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/PB/PB_TrayMaterial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/PB/PB_TrayMaterial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/PB/PB_TrayType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/PB/PB_TrayType.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/PB/PB_TrayZone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/PB/PB_TrayZone.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/PD/PD_Plan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/PD/PD_Plan.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/PD/PD_Plan_Partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/PD/PD_Plan_Partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/TD/TD_Allocate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/TD/TD_Allocate.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/TD/TD_AllocateDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/TD/TD_AllocateDetail.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/TD/TD_AllocateDetail_partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/TD/TD_AllocateDetail_partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/TD/TD_Allocate_partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/TD/TD_Allocate_partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/TD/TD_Bad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/TD/TD_Bad.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/TD/TD_BadDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/TD/TD_BadDetail.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/TD/TD_BadDetail_partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/TD/TD_BadDetail_partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/TD/TD_Bad_partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/TD/TD_Bad_partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/TD/TD_Check.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/TD/TD_Check.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/TD/TD_CheckArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/TD/TD_CheckArea.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/TD/TD_CheckData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/TD/TD_CheckData.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/TD/TD_CheckData_Parital.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/TD/TD_CheckData_Parital.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/TD/TD_CheckMaterial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/TD/TD_CheckMaterial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/TD/TD_CheckMaterial_Partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/TD/TD_CheckMaterial_Partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/TD/TD_Check_Parital.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/TD/TD_Check_Parital.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/TD/TD_InStorDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/TD/TD_InStorDetail.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/TD/TD_InStorDetail_partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/TD/TD_InStorDetail_partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/TD/TD_InStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/TD/TD_InStorage.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/TD/TD_InStorage_partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/TD/TD_InStorage_partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/TD/TD_Move.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/TD/TD_Move.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/TD/TD_MoveDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/TD/TD_MoveDetail.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/TD/TD_MoveDetail_partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/TD/TD_MoveDetail_partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/TD/TD_Move_partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/TD/TD_Move_partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/TD/TD_OutStorDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/TD/TD_OutStorDetail.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/TD/TD_OutStorDetail_partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/TD/TD_OutStorDetail_partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/TD/TD_OutStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/TD/TD_OutStorage.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/TD/TD_OutStorage_Partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/TD/TD_OutStorage_Partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/TD/TD_RecDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/TD/TD_RecDetail.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/TD/TD_RecDetail_partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/TD/TD_RecDetail_partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/TD/TD_Receiving.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/TD/TD_Receiving.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/TD/TD_Receiving_partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/TD/TD_Receiving_partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/TD/TD_Send.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/TD/TD_Send.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/TD/TD_SendDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/TD/TD_SendDetail.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/TD/TD_SendDetail_partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/TD/TD_SendDetail_partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Entity/TD/TD_Send_partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Entity/TD/TD_Send_partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/03.Coldairarrow.IBusiness.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/03.Coldairarrow.IBusiness.csproj -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/Base/IBase_EnumBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/Base/IBase_EnumBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/Base/IBase_EnumItemBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/Base/IBase_EnumItemBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/Base/IBase_ParameterBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/Base/IBase_ParameterBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/Base/IBase_UserStorBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/Base/IBase_UserStorBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/Base_Manage/IBase_RoleBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/Base_Manage/IBase_RoleBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/Base_Manage/IBase_UserBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/Base_Manage/IBase_UserBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/Base_Manage/IBuildCodeBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/Base_Manage/IBuildCodeBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/Base_Manage/IHomeBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/Base_Manage/IHomeBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/DTO/AuditDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/DTO/AuditDTO.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/DTO/AutoInStorageByTary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/DTO/AutoInStorageByTary.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/DTO/InAutoByTary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/DTO/InAutoByTary.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/DTO/ManualInStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/DTO/ManualInStorage.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/DTO/MaterialTypeTreeDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/DTO/MaterialTypeTreeDTO.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/DTO/OutAutoByTary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/DTO/OutAutoByTary.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/DTO/PBAddressConditionDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/DTO/PBAddressConditionDTO.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/DTO/PBAreaMateriaConditionDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/DTO/PBAreaMateriaConditionDTO.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/DTO/PBCustomerCoditionDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/DTO/PBCustomerCoditionDTO.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/DTO/PBLocalTrayConditionDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/DTO/PBLocalTrayConditionDTO.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/DTO/PBMaterialConditionDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/DTO/PBMaterialConditionDTO.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/DTO/PBSupplierCoditionDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/DTO/PBSupplierCoditionDTO.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/DTO/PBTrayMateriaConditionDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/DTO/PBTrayMateriaConditionDTO.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/DTO/SelectQueryDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/DTO/SelectQueryDTO.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/DTO/TDCheckConditionDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/DTO/TDCheckConditionDTO.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/DTO/TDCheckDataConditionDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/DTO/TDCheckDataConditionDTO.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/DTO/TDCheckDataDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/DTO/TDCheckDataDTO.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/DTO/TDCheckNumModifyDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/DTO/TDCheckNumModifyDTO.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/DTO/TDCheckQueryDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/DTO/TDCheckQueryDTO.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/DTO/TraySelectQueryDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/DTO/TraySelectQueryDTO.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/IOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/IOperator.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/IT/IIT_LocalDetailBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/IT/IIT_LocalDetailBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/IT/IIT_LocalMaterialBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/IT/IIT_LocalMaterialBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/IT/IIT_RecordBookBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/IT/IIT_RecordBookBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/PB/IPB_AddressBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/PB/IPB_AddressBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/PB/IPB_AddressBusiness_Partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/PB/IPB_AddressBusiness_Partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/PB/IPB_AreaMaterialBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/PB/IPB_AreaMaterialBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/PB/IPB_BarCodeBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/PB/IPB_BarCodeBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/PB/IPB_BarCodeRuleBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/PB/IPB_BarCodeRuleBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/PB/IPB_BarCodeSerialBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/PB/IPB_BarCodeSerialBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/PB/IPB_BarCodeTypeBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/PB/IPB_BarCodeTypeBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/PB/IPB_CustomerBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/PB/IPB_CustomerBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/PB/IPB_EquipmentBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/PB/IPB_EquipmentBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/PB/IPB_FeedPointBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/PB/IPB_FeedPointBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/PB/IPB_LanewayBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/PB/IPB_LanewayBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/PB/IPB_LocalTrayBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/PB/IPB_LocalTrayBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/PB/IPB_LocationBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/PB/IPB_LocationBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/PB/IPB_MaterialBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/PB/IPB_MaterialBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/PB/IPB_MaterialPointBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/PB/IPB_MaterialPointBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/PB/IPB_MaterialTypeBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/PB/IPB_MaterialTypeBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/PB/IPB_MeasureBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/PB/IPB_MeasureBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/PB/IPB_MeasureBusiness_Partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/PB/IPB_MeasureBusiness_Partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/PB/IPB_RackBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/PB/IPB_RackBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/PB/IPB_StorAreaBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/PB/IPB_StorAreaBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/PB/IPB_StorageBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/PB/IPB_StorageBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/PB/IPB_SupplierBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/PB/IPB_SupplierBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/PB/IPB_TrayBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/PB/IPB_TrayBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/PB/IPB_TrayBusiness_partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/PB/IPB_TrayBusiness_partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/PB/IPB_TrayMaterialBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/PB/IPB_TrayMaterialBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/PB/IPB_TrayTypeBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/PB/IPB_TrayTypeBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/PB/IPB_TrayZoneBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/PB/IPB_TrayZoneBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/PD/IPD_PlanBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/PD/IPD_PlanBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/PD/IPD_PlanBusiness_Partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/PD/IPD_PlanBusiness_Partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/TD/ITD_AllocateBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/TD/ITD_AllocateBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/TD/ITD_AllocateDetailBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/TD/ITD_AllocateDetailBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/TD/ITD_BadBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/TD/ITD_BadBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/TD/ITD_BadBusiness_partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/TD/ITD_BadBusiness_partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/TD/ITD_BadDetailBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/TD/ITD_BadDetailBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/TD/ITD_CheckAreaBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/TD/ITD_CheckAreaBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/TD/ITD_CheckBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/TD/ITD_CheckBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/TD/ITD_CheckBusiness_Partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/TD/ITD_CheckBusiness_Partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/TD/ITD_CheckDataBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/TD/ITD_CheckDataBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/TD/ITD_CheckMaterialBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/TD/ITD_CheckMaterialBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/TD/ITD_InStorDetailBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/TD/ITD_InStorDetailBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/TD/ITD_InStorageBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/TD/ITD_InStorageBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/TD/ITD_MoveBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/TD/ITD_MoveBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/TD/ITD_MoveBusiness_partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/TD/ITD_MoveBusiness_partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/TD/ITD_MoveDetailBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/TD/ITD_MoveDetailBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/TD/ITD_OutStorDetailBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/TD/ITD_OutStorDetailBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/TD/ITD_OutStorageBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/TD/ITD_OutStorageBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/TD/ITD_RecDetailBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/TD/ITD_RecDetailBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/TD/ITD_ReceivingBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/TD/ITD_ReceivingBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/TD/ITD_SendBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/TD/ITD_SendBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/TD/ITD_SendBusiness_partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/TD/ITD_SendBusiness_partial.cs -------------------------------------------------------------------------------- /src/Coldairarrow.IBusiness/TD/ITD_SendDetailBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.IBusiness/TD/ITD_SendDetailBusiness.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/.env -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/.env.docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/.env.docker -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/.env.live: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/.env.live -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/.gitignore -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/Deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/Deploy.ps1 -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/README.md -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/babel.config.js -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/package-lock.json -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/package.json -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/public/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/public/Dockerfile -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/public/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/public/Web.config -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/public/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/public/default.conf -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/public/favicon.ico -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/public/favicon.png -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/public/index.html -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/public/loading/loading.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/public/loading/loading.css -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/public/loading/loading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/public/loading/loading.html -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/public/loading/option2/loading.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/public/loading/option2/loading.css -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/public/loading/option2/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/public/loading/option2/loading.svg -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/App.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/api/Home/UserSvc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/api/Home/UserSvc.js -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/api/PB/EnumSvc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/api/PB/EnumSvc.js -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/api/PB/LocalSvc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/api/PB/LocalSvc.js -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/api/PB/MaterialSvc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/api/PB/MaterialSvc.js -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/api/PB/PlanSvc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/api/PB/PlanSvc.js -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/api/PB/StorageSvc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/api/PB/StorageSvc.js -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/api/PB/TraySvc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/api/PB/TraySvc.js -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/api/Report/LocalMaterialSvc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/api/Report/LocalMaterialSvc.js -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/api/TD/InStorageSvc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/api/TD/InStorageSvc.js -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/api/TD/OutStorageSvc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/api/TD/OutStorageSvc.js -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/api/TD/ReceiveSvc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/api/TD/ReceiveSvc.js -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/api/TD/SendSvc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/api/TD/SendSvc.js -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/assets/logo.png -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/assets/logo.svg -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/components/BarcodeReader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/components/BarcodeReader.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/components/BaseEnumName.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/components/BaseEnumName.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/components/BaseEnumSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/components/BaseEnumSelect.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/components/InputBarcode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/components/InputBarcode.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/components/InputLocation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/components/InputLocation.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/components/InputMaterial.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/components/InputMaterial.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/components/InputTray.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/components/InputTray.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/components/LocalChoose.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/components/LocalChoose.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/components/MaterialChoose.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/components/MaterialChoose.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/components/StorageSwitch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/components/StorageSwitch.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/components/TrayChoose.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/components/TrayChoose.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/components/UserMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/components/UserMenu.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/config.js -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/layouts/BaseLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/layouts/BaseLayout.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/layouts/UserLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/layouts/UserLayout.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/main.js -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/router.js -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/utils/TokenCache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/utils/TokenCache.js -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/utils/axios-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/utils/axios-plugin.js -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/views/Home/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/views/Home/Index.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/views/Home/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/views/Home/Login.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/views/Home/Test.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/views/Home/Test.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/views/InStorage/AutoIn.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/views/InStorage/AutoIn.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/views/InStorage/Detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/views/InStorage/Detail.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/views/InStorage/InBlankTray.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/views/InStorage/InBlankTray.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/views/InStorage/InManualTray.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/views/InStorage/InManualTray.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/views/InStorage/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/views/InStorage/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/views/InStorage/ManualIn.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/views/InStorage/ManualIn.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/views/InStorage/Receive.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/views/InStorage/Receive.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/views/InStorage/ReceiveDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/views/InStorage/ReceiveDetail.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/views/InStorage/ReceiveList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/views/InStorage/ReceiveList.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/views/OutStorage/AutoOut.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/views/OutStorage/AutoOut.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/views/OutStorage/Detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/views/OutStorage/Detail.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/views/OutStorage/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/views/OutStorage/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/views/OutStorage/ManualOut.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/views/OutStorage/ManualOut.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/views/OutStorage/OutBlankTray.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/views/OutStorage/OutBlankTray.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/views/OutStorage/OutManualTray.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/views/OutStorage/OutManualTray.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/views/OutStorage/Send.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/views/OutStorage/Send.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/views/OutStorage/SendDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/views/OutStorage/SendDetail.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/views/OutStorage/SendList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/views/OutStorage/SendList.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/views/PB/LocalList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/views/PB/LocalList.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/views/PB/MaterialDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/views/PB/MaterialDetail.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/views/PB/MaterialList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/views/PB/MaterialList.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/views/PB/PlanDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/views/PB/PlanDetail.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/views/PB/PlanList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/views/PB/PlanList.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Pad/src/views/PB/TrayList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Pad/src/views/PB/TrayList.vue -------------------------------------------------------------------------------- /src/Coldairarrow.UnitTests/10.Coldairarrow.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.UnitTests/10.Coldairarrow.UnitTests.csproj -------------------------------------------------------------------------------- /src/Coldairarrow.UnitTests/BaseTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.UnitTests/BaseTest.cs -------------------------------------------------------------------------------- /src/Coldairarrow.UnitTests/DemoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.UnitTests/DemoTest.cs -------------------------------------------------------------------------------- /src/Coldairarrow.UnitTests/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.UnitTests/appsettings.Development.json -------------------------------------------------------------------------------- /src/Coldairarrow.UnitTests/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.UnitTests/appsettings.json -------------------------------------------------------------------------------- /src/Coldairarrow.Util/01.Coldairarrow.Util.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/01.Coldairarrow.Util.csproj -------------------------------------------------------------------------------- /src/Coldairarrow.Util/AOP/Abstraction/BaseAOPAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/AOP/Abstraction/BaseAOPAttribute.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/AOP/Abstraction/CastleAOPContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/AOP/Abstraction/CastleAOPContext.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/AOP/Abstraction/CastleInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/AOP/Abstraction/CastleInterceptor.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/AOP/Abstraction/IAOPContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/AOP/Abstraction/IAOPContext.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/AOP/TransactionalAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/AOP/TransactionalAttribute.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/ClassLibrary/BloomFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/ClassLibrary/BloomFilter.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/ClassLibrary/ConsistentHash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/ClassLibrary/ConsistentHash.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/ClassLibrary/MurmurHash2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/ClassLibrary/MurmurHash2.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/ClassLibrary/ParentChildrenMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/ClassLibrary/ParentChildrenMapping.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/ClassLibrary/ShareMemory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/ClassLibrary/ShareMemory.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/ClassLibrary/TaskQeury.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/ClassLibrary/TaskQeury.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/ClassLibrary/UsingLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/ClassLibrary/UsingLock.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/DI/IScopeDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/DI/IScopeDependency.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/DI/ISingletonDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/DI/ISingletonDependency.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/DI/ITransientDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/DI/ITransientDependency.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/DataAccess/DbHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/DataAccess/DbHelper.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/DataAccess/DbHelperFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/DataAccess/DbHelperFactory.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/DataAccess/DbProviderFactoryHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/DataAccess/DbProviderFactoryHelper.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/DataAccess/MySqlHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/DataAccess/MySqlHelper.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/DataAccess/OracleHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/DataAccess/OracleHelper.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/DataAccess/PostgreSqlHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/DataAccess/PostgreSqlHelper.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/DataAccess/SqlServerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/DataAccess/SqlServerHelper.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Extention/Extention.Byte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Extention/Extention.Byte.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Extention/Extention.DataTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Extention/Extention.DataTable.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Extention/Extention.DateTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Extention/Extention.DateTime.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Extention/Extention.Delegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Extention/Extention.Delegate.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Extention/Extention.Enum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Extention/Extention.Enum.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Extention/Extention.ExpandoObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Extention/Extention.ExpandoObject.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Extention/Extention.Expression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Extention/Extention.Expression.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Extention/Extention.Guid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Extention/Extention.Guid.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Extention/Extention.HttpRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Extention/Extention.HttpRequest.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Extention/Extention.IEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Extention/Extention.IEnumerable.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Extention/Extention.IHostBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Extention/Extention.IHostBuilder.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Extention/Extention.IQueryable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Extention/Extention.IQueryable.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Extention/Extention.Int.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Extention/Extention.Int.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Extention/Extention.Json.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Extention/Extention.Json.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Extention/Extention.Object.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Extention/Extention.Object.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Extention/Extention.Stream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Extention/Extention.Stream.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Extention/Extention.String.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Extention/Extention.String.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/GlobalData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/GlobalData.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Helper/AsposeOfficeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Helper/AsposeOfficeHelper.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Helper/AsyncHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Helper/AsyncHelper.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Helper/BaiduApiHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Helper/BaiduApiHelper.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Helper/ConfigHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Helper/ConfigHelper.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Helper/DbSearchHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Helper/DbSearchHelper.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Helper/DelegateHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Helper/DelegateHelper.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Helper/EncodingHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Helper/EncodingHelper.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Helper/EnumHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Helper/EnumHelper.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Helper/ExceptionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Helper/ExceptionHelper.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Helper/FileHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Helper/FileHelper.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Helper/FileZipHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Helper/FileZipHelper.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Helper/GuidHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Helper/GuidHelper.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Helper/HttpClientHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Helper/HttpClientHelper.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Helper/HttpHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Helper/HttpHelper.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Helper/ImgHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Helper/ImgHelper.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Helper/ImgVerifyCodeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Helper/ImgVerifyCodeHelper.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Helper/IpHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Helper/IpHelper.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Helper/JWTHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Helper/JWTHelper.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Helper/JobHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Helper/JobHelper.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Helper/LinqHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Helper/LinqHelper.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Helper/LogHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Helper/LogHelper.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Helper/LoopHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Helper/LoopHelper.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Helper/PathHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Helper/PathHelper.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Helper/QRCodeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Helper/QRCodeHelper.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Helper/RandomHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Helper/RandomHelper.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Helper/TreeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Helper/TreeHelper.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Helper/TypeBuilderHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Helper/TypeBuilderHelper.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Helper/XmlHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Helper/XmlHelper.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Primitives/AjaxResult.T.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Primitives/AjaxResult.T.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Primitives/AjaxResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Primitives/AjaxResult.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Primitives/BusException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Primitives/BusException.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Primitives/CacheType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Primitives/CacheType.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Primitives/ConditionDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Primitives/ConditionDTO.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Primitives/DbTableInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Primitives/DbTableInfo.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Primitives/DeleteMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Primitives/DeleteMode.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Primitives/DynamicModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Primitives/DynamicModel.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Primitives/ErrorResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Primitives/ErrorResult.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Primitives/FileEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Primitives/FileEntry.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Primitives/IdInputDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Primitives/IdInputDTO.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Primitives/JWTPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Primitives/JWTPayload.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Primitives/LogType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Primitives/LogType.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Primitives/MapAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Primitives/MapAttribute.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Primitives/OptionListInputDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Primitives/OptionListInputDTO.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Primitives/PageInput.T.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Primitives/PageInput.T.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Primitives/PageInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Primitives/PageInput.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Primitives/PageResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Primitives/PageResult.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Primitives/SelectOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Primitives/SelectOption.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Primitives/TableInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Primitives/TableInfo.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/Primitives/TreeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/Primitives/TreeModel.cs -------------------------------------------------------------------------------- /src/Coldairarrow.Util/lib/Aspose.Cells.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Util/lib/Aspose.Cells.dll -------------------------------------------------------------------------------- /src/Coldairarrow.Web/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/.editorconfig -------------------------------------------------------------------------------- /src/Coldairarrow.Web/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/.env -------------------------------------------------------------------------------- /src/Coldairarrow.Web/.env.docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/.env.docker -------------------------------------------------------------------------------- /src/Coldairarrow.Web/.env.live: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/.env.live -------------------------------------------------------------------------------- /src/Coldairarrow.Web/.env.preview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/.env.preview -------------------------------------------------------------------------------- /src/Coldairarrow.Web/.gitattributes: -------------------------------------------------------------------------------- 1 | public/* linguist-vendored -------------------------------------------------------------------------------- /src/Coldairarrow.Web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/.gitignore -------------------------------------------------------------------------------- /src/Coldairarrow.Web/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/.prettierrc -------------------------------------------------------------------------------- /src/Coldairarrow.Web/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/.travis.yml -------------------------------------------------------------------------------- /src/Coldairarrow.Web/Deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/Deploy.ps1 -------------------------------------------------------------------------------- /src/Coldairarrow.Web/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/LICENSE -------------------------------------------------------------------------------- /src/Coldairarrow.Web/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/babel.config.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/config/plugin.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/config/plugin.config.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/jest.config.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/jsconfig.json -------------------------------------------------------------------------------- /src/Coldairarrow.Web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/package-lock.json -------------------------------------------------------------------------------- /src/Coldairarrow.Web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/package.json -------------------------------------------------------------------------------- /src/Coldairarrow.Web/public/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/public/Dockerfile -------------------------------------------------------------------------------- /src/Coldairarrow.Web/public/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/public/Web.config -------------------------------------------------------------------------------- /src/Coldairarrow.Web/public/avatar2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/public/avatar2.jpg -------------------------------------------------------------------------------- /src/Coldairarrow.Web/public/color.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/public/color.less -------------------------------------------------------------------------------- /src/Coldairarrow.Web/public/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/public/default.conf -------------------------------------------------------------------------------- /src/Coldairarrow.Web/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/public/favicon.ico -------------------------------------------------------------------------------- /src/Coldairarrow.Web/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/public/index.html -------------------------------------------------------------------------------- /src/Coldairarrow.Web/public/loading/loading.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/public/loading/loading.css -------------------------------------------------------------------------------- /src/Coldairarrow.Web/public/loading/loading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/public/loading/loading.html -------------------------------------------------------------------------------- /src/Coldairarrow.Web/public/loading/option2/loading.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/public/loading/option2/loading.css -------------------------------------------------------------------------------- /src/Coldairarrow.Web/public/loading/option2/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/public/loading/option2/loading.svg -------------------------------------------------------------------------------- /src/Coldairarrow.Web/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/public/logo.png -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/App.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/assets/antLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/assets/antLogo.svg -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/assets/background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/assets/background.svg -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/assets/fullLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/assets/fullLogo.png -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/assets/icons/bx-analyse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/assets/icons/bx-analyse.svg -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/assets/logo.png -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/assets/logo.svg -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/assets/zeqp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/assets/zeqp.gif -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/components/CSelect/CSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/components/CSelect/CSelect.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/components/ChartCard/ChartCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/components/ChartCard/ChartCard.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/components/ChartCard/Trend.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/components/ChartCard/Trend.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/components/Exception/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/components/Exception/index.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/components/Exception/type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/components/Exception/type.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/components/GlobalFooter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/components/GlobalFooter/index.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/components/GlobalHeader/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/components/GlobalHeader/index.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/components/IconSelector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/components/IconSelector/README.md -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/components/IconSelector/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/components/IconSelector/icons.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/components/IconSelector/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/components/IconSelector/index.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/components/Menu/SideMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/components/Menu/SideMenu.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/components/Menu/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/components/Menu/index.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/components/Menu/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/components/Menu/menu.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/components/Menu/menu.render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/components/Menu/menu.render.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/components/MultiTab/MultiTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/components/MultiTab/MultiTab.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/components/MultiTab/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/components/MultiTab/index.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/components/MultiTab/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/components/MultiTab/index.less -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/components/NoticeIcon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/components/NoticeIcon/index.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/components/PB/CustomerChoose.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/components/PB/CustomerChoose.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/components/PB/CustomerSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/components/PB/CustomerSelect.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/components/PB/LeadingShow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/components/PB/LeadingShow.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/components/PB/MeasureSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/components/PB/MeasureSelect.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/components/PB/StorAreaSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/components/PB/StorAreaSelect.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/components/PB/StorAreaShow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/components/PB/StorAreaShow.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/components/PB/SupplierChoose.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/components/PB/SupplierChoose.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/components/PB/SupplierSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/components/PB/SupplierSelect.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/components/PageHeader/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/components/PageHeader/index.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/components/SettingDrawer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/components/SettingDrawer/index.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/components/Storage/AreaSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/components/Storage/AreaSelect.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/components/Storage/RackSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/components/Storage/RackSelect.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/components/Tray/TrayChoose.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/components/Tray/TrayChoose.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/components/Tray/TraySelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/components/Tray/TraySelect.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/components/Tray/TraySelect_Old.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/components/Tray/TraySelect_Old.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/components/Tray/ZoneSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/components/Tray/ZoneSelect.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/components/User/UserSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/components/User/UserSelect.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/components/_util/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/components/_util/util.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/components/global.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/components/global.less -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/components/index.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/components/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/components/index.less -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/components/tools/Breadcrumb.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/components/tools/Breadcrumb.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/components/tools/ChangePwdForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/components/tools/ChangePwdForm.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/components/tools/DetailList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/components/tools/DetailList.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/components/tools/HeadInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/components/tools/HeadInfo.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/components/tools/Logo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/components/tools/Logo.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/components/tools/TwoStepCaptcha.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/components/tools/TwoStepCaptcha.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/components/tools/UserMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/components/tools/UserMenu.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/components/tools/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/config/defaultSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/config/defaultSettings.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/config/router.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/config/router.config.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/core/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/core/bootstrap.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/core/directives/action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/core/directives/action.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/core/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/core/icons.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/core/lazy_lib/components_use.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/core/lazy_lib/components_use.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/core/lazy_use.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/core/lazy_use.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/core/use.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/core/use.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/layouts/BasicLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/layouts/BasicLayout.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/layouts/BlankLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/layouts/BlankLayout.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/layouts/PageView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/layouts/PageView.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/layouts/RouteView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/layouts/RouteView.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/layouts/UserLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/layouts/UserLayout.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/layouts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/layouts/index.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/main.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/permission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/permission.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/router/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/router/README.md -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/router/index.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/store/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/store/getters.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/store/index.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/store/modules/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/store/modules/app.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/store/mutation-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/store/mutation-types.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/utils/cache/OperatorCache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/utils/cache/OperatorCache.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/utils/cache/ParameterCache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/utils/cache/ParameterCache.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/utils/cache/TokenCache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/utils/cache/TokenCache.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/utils/device.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/utils/device.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/utils/domUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/utils/domUtil.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/utils/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/utils/filter.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/utils/helper/ProcessHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/utils/helper/ProcessHelper.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/utils/helper/TreeHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/utils/helper/TreeHelper.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/utils/helper/TypeHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/utils/helper/TypeHelper.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/utils/mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/utils/mixin.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/utils/plugin/axios-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/utils/plugin/axios-plugin.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/utils/plugin/operator-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/utils/plugin/operator-plugin.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/utils/plugin/parameter-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/utils/plugin/parameter-plugin.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/utils/routerUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/utils/routerUtil.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/utils/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/utils/util.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/utils/utils.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/utils/utils.less -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/Base/Base_Enum/EditForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/Base/Base_Enum/EditForm.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/Base/Base_Enum/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/Base/Base_Enum/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/Base/Base_EnumItem/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/Base/Base_EnumItem/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/Base/Base_Parameter/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/Base/Base_Parameter/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/Base/Base_UserStor/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/Base/Base_UserStor/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/Develop/Editor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/Develop/Editor.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/Develop/IconSelectorView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/Develop/IconSelectorView.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/Develop/SelectSearch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/Develop/SelectSearch.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/Develop/UploadFile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/Develop/UploadFile.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/Develop/UploadImg.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/Develop/UploadImg.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/Home/Introduce.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/Home/Introduce.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/Home/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/Home/Login.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/Home/Statis.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/Home/Statis.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/IT/IT_LocalDetail/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/IT/IT_LocalDetail/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/IT/IT_LocalMaterial/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/IT/IT_LocalMaterial/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/IT/IT_RecordBook/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/IT/IT_RecordBook/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/PB/PB_Address/EditForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/PB/PB_Address/EditForm.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/PB/PB_Address/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/PB/PB_Address/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/PB/PB_AreaMaterial/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/PB/PB_AreaMaterial/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/PB/PB_BarCode/EditForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/PB/PB_BarCode/EditForm.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/PB/PB_BarCode/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/PB/PB_BarCode/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/PB/PB_BarCodeRule/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/PB/PB_BarCodeRule/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/PB/PB_BarCodeType/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/PB/PB_BarCodeType/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/PB/PB_Customer/EditForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/PB/PB_Customer/EditForm.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/PB/PB_Customer/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/PB/PB_Customer/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/PB/PB_Equipment/EditForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/PB/PB_Equipment/EditForm.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/PB/PB_Equipment/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/PB/PB_Equipment/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/PB/PB_FeedPoint/EditForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/PB/PB_FeedPoint/EditForm.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/PB/PB_FeedPoint/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/PB/PB_FeedPoint/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/PB/PB_Laneway/EditForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/PB/PB_Laneway/EditForm.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/PB/PB_Laneway/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/PB/PB_Laneway/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/PB/PB_LocalTray/EditForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/PB/PB_LocalTray/EditForm.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/PB/PB_LocalTray/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/PB/PB_LocalTray/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/PB/PB_LocalTrayType/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/PB/PB_LocalTrayType/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/PB/PB_Location/EditForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/PB/PB_Location/EditForm.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/PB/PB_Location/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/PB/PB_Location/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/PB/PB_Material/EditForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/PB/PB_Material/EditForm.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/PB/PB_Material/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/PB/PB_Material/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/PB/PB_MaterialPoint/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/PB/PB_MaterialPoint/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/PB/PB_MaterialType/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/PB/PB_MaterialType/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/PB/PB_Measure/EditForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/PB/PB_Measure/EditForm.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/PB/PB_Measure/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/PB/PB_Measure/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/PB/PB_Rack/EditForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/PB/PB_Rack/EditForm.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/PB/PB_Rack/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/PB/PB_Rack/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/PB/PB_StorArea/EditForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/PB/PB_StorArea/EditForm.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/PB/PB_StorArea/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/PB/PB_StorArea/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/PB/PB_Storage/ConfigFrom.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/PB/PB_Storage/ConfigFrom.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/PB/PB_Storage/EditForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/PB/PB_Storage/EditForm.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/PB/PB_Storage/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/PB/PB_Storage/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/PB/PB_Supplier/EditForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/PB/PB_Supplier/EditForm.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/PB/PB_Supplier/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/PB/PB_Supplier/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/PB/PB_Tray/EditForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/PB/PB_Tray/EditForm.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/PB/PB_Tray/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/PB/PB_Tray/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/PB/PB_TrayMaterial/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/PB/PB_TrayMaterial/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/PB/PB_TrayType/EditForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/PB/PB_TrayType/EditForm.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/PB/PB_TrayType/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/PB/PB_TrayType/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/PB/PB_TrayZone/EditForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/PB/PB_TrayZone/EditForm.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/PB/PB_TrayZone/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/PB/PB_TrayZone/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/PD/PD_Plan/EditForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/PD/PD_Plan/EditForm.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/PD/PD_Plan/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/PD/PD_Plan/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/Report/InStorage/Report.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/Report/InStorage/Report.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/Report/OutStorage/Report.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/Report/OutStorage/Report.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/TD/TD_Allocate/EditForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/TD/TD_Allocate/EditForm.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/TD/TD_Allocate/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/TD/TD_Allocate/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/TD/TD_AllocateDetail/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/TD/TD_AllocateDetail/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/TD/TD_Bad/EditForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/TD/TD_Bad/EditForm.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/TD/TD_Bad/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/TD/TD_Bad/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/TD/TD_BadDetail/BadChoose.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/TD/TD_BadDetail/BadChoose.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/TD/TD_BadDetail/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/TD/TD_BadDetail/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/TD/TD_Check/Audite.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/TD/TD_Check/Audite.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/TD/TD_Check/Check.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/TD/TD_Check/Check.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/TD/TD_Check/CheckDataList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/TD/TD_Check/CheckDataList.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/TD/TD_Check/EditForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/TD/TD_Check/EditForm.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/TD/TD_Check/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/TD/TD_Check/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/TD/TD_Check/MaterialList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/TD/TD_Check/MaterialList.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/TD/TD_Check/Show.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/TD/TD_Check/Show.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/TD/TD_CheckArea/EditForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/TD/TD_CheckArea/EditForm.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/TD/TD_CheckArea/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/TD/TD_CheckArea/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/TD/TD_CheckData/EditForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/TD/TD_CheckData/EditForm.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/TD/TD_CheckData/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/TD/TD_CheckData/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/TD/TD_CheckMaterial/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/TD/TD_CheckMaterial/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/TD/TD_InStorDetail/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/TD/TD_InStorDetail/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/TD/TD_InStorage/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/TD/TD_InStorage/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/TD/TD_Move/EditForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/TD/TD_Move/EditForm.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/TD/TD_Move/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/TD/TD_Move/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/TD/TD_MoveDetail/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/TD/TD_MoveDetail/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/TD/TD_OutStorage/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/TD/TD_OutStorage/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/TD/TD_RecDetail/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/TD/TD_RecDetail/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/TD/TD_Receiving/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/TD/TD_Receiving/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/TD/TD_Send/EditForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/TD/TD_Send/EditForm.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/TD/TD_Send/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/TD/TD_Send/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/TD/TD_SendDetail/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/TD/TD_SendDetail/List.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/exception/403.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/exception/403.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/exception/404.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/exception/404.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/src/views/exception/500.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/src/views/exception/500.vue -------------------------------------------------------------------------------- /src/Coldairarrow.Web/tests/unit/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/tests/unit/.eslintrc.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/vue.config.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/webstorm.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/webstorm.config.js -------------------------------------------------------------------------------- /src/Coldairarrow.Web/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Coldairarrow.Web/yarn.lock -------------------------------------------------------------------------------- /src/Deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/Deploy.ps1 -------------------------------------------------------------------------------- /src/DeployIIS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/DeployIIS.ps1 -------------------------------------------------------------------------------- /src/DeployUbuntu.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/DeployUbuntu.ps1 -------------------------------------------------------------------------------- /src/ZEQP.WMS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/ZEQP.WMS.sln -------------------------------------------------------------------------------- /src/clear.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomedotnetcore/WMS/HEAD/src/clear.bat --------------------------------------------------------------------------------