.netCore 对接K3Cloud7
.
└── K3Cloud7_2
├── FormOperationResult
│ ├── FormResult.cs
│ ├── FormStatus.cs
│ ├── ResultConverter.cs
│ ├── Save
│ │ ├── SaveFormResult.cs
│ │ ├── SaveResult.cs
│ │ └── VoucherSaveEntity.cs
│ ├── SuccessEntity.cs
│ ├── SuccessMessage.cs
│ ├── ValidationError.cs
│ └── View
│ ├── SalOrder_ViewResult.cs
│ ├── SaleOutStockViewResult.cs
│ ├── ViewFormResult.cs
│ └── ViewResult.cs
├── K3AccountModel.cs
├── K3BillOrderKey
│ └── BillOrderKey.cs
├── K3CloudAPI
│ ├── APIClient.cs
│ ├── APIException.cs
│ ├── APIOperation.cs
│ ├── APIRequest.cs
│ ├── APIResponse.cs
│ ├── Asynchronous
│ │ └── KdHttpTask.cs
│ ├── AuthOperationResult
│ │ ├── ClientType.cs
│ │ ├── Context.cs
│ │ ├── DatabaseType.cs
│ │ ├── KDOAuthInfo.cs
│ │ ├── LanguageInfo.cs
│ │ ├── LoginResult.cs
│ │ ├── LoginResultType.cs
│ │ ├── OrganizationInfo.cs
│ │ └── RedirectFormParam.cs
│ ├── AuthServiceOperation
│ │ ├── LoginByAppSecret.cs
│ │ ├── LoginByAppSign.cs
│ │ ├── LoginByUserPassword.cs
│ │ ├── Logout.cs
│ │ └── LookContext.cs
│ ├── BusinessOperationResult
│ │ ├── MCService
│ │ │ └── GetDataCenterListResult.cs
│ │ ├── ResultCode.cs
│ │ ├── ServiceResult.cs
│ │ └── SessionService
│ │ └── AliveResult.cs
│ ├── BusinessServiceOperation
│ │ ├── ExecuteServiceOperation.cs
│ │ ├── MCService.cs
│ │ ├── SessionService.cs
│ │ └── UserService.cs
│ ├── Consts
│ │ ├── BillKeyConst.cs
│ │ ├── BillTypeIDConsts.cs
│ │ └── StockStatusConsts.cs
│ ├── DynamicFormOperation
│ │ ├── Allocate.cs
│ │ ├── Audit.cs
│ │ ├── BDEnable.cs
│ │ ├── BDForbid.cs
│ │ ├── BatchSave.cs
│ │ ├── BillInvalid.cs
│ │ ├── Delete.cs
│ │ ├── Draft.cs
│ │ ├── ExecuteFormOperation.cs
│ │ ├── FormOperation.cs
│ │ ├── Query.cs
│ │ ├── Save.cs
│ │ ├── SingleActionOperation.cs
│ │ ├── StatusConvert.cs
│ │ ├── Submit.cs
│ │ ├── UnAudit.cs
│ │ └── View.cs
│ ├── FormOperationResult
│ │ ├── FormResult.cs
│ │ ├── FormStatus.cs
│ │ ├── ResultConverter.cs
│ │ ├── Save
│ │ │ ├── SaveFormResult.cs
│ │ │ └── SaveResult.cs
│ │ ├── SuccessEntity.cs
│ │ ├── SuccessMessage.cs
│ │ ├── ValidationError.cs
│ │ └── View
│ │ ├── SalOrder_ViewResult.cs
│ │ ├── SaleOutStockViewResult.cs
│ │ ├── ViewFormResult.cs
│ │ └── ViewResult.cs
│ ├── KdAPIOperationExtension.cs
│ ├── KdAPIRequest.cs
│ ├── OrderModels
│ │ ├── PUR_RequisitionSave.cs
│ │ ├── SAL_OutStockSave.cs
│ │ ├── SAL_ReturnStockSave.cs
│ │ ├── SAL_SaleOrderSave.cs
│ │ ├── STK_InStockSave.cs
│ │ ├── STK_MisDeliverySave.cs
│ │ ├── STK_MiscellaneousSave.cs
│ │ ├── STK_StockCountGainSave.cs
│ │ ├── STK_StockCountLossSave.cs
│ │ └── STK_TransferApplySave.cs
│ └── UnitTest
│ ├── BaseTestParameter.cs
│ ├── BaseUnitTest.cs
│ ├── BusinessUnitTest.cs
│ ├── ParameterSingleton.cs
│ └── UnitTestParameter.cs
├── K3CloudAPI.Client
│ ├── Util
│ │ └── WebRequestHelper.cs
│ └── WebApi
│ └── Client
│ ├── ApiClient.cs
│ ├── ApiProgressRequest.cs
│ ├── ApiRequest.cs
│ ├── ApiServiceRequest.cs
│ ├── AsyncResult.cs
│ ├── DataCenter.cs
│ ├── DelayInvoker.cs
│ ├── Diagrams
│ │ ├── ApiClient_Execute
│ │ │ └── sequencediagram.layout
│ │ └── ApiClient_ExecuteAsync
│ │ └── sequencediagram.layout
│ ├── ExceptionWrapper.cs
│ ├── FailCallbackHandler.cs
│ ├── HttpClient.cs
│ ├── JsonArray.cs
│ ├── JsonObject.cs
│ ├── K3CloudApiClient.cs
│ ├── LockOneTime.cs
│ ├── ProgressChangedHandler.cs
│ ├── ProgressInfo.cs
│ ├── ProgressReporter.cs
│ ├── ServiceException.cs
│ ├── StreamRequest.cs
│ ├── TypeExt.cs
│ └── Utils
│ └── EnDecode.cs
└── Models
├── CommonResult.cs
├── CustomerSave.cs
├── DepartmentEntitySave.cs
└── SupplierSave.cs
29 directories, 120 files
评论