| | |
| | | reportSourceList, _ := ServiceGroup.GetReportSourceList() |
| | | data.ReportSource = reportSourceList |
| | | |
| | | |
| | | // get OrderType list |
| | | orderTypeList, _ := ServiceGroup.GetOrderTypeList() |
| | | data.OrderType = orderTypeList |
| | | |
| | | |
| | | // get ServiceContractStatus list |
| | | serviceContractStatusList, _ := ServiceGroup.GetServiceContractStatusList() |
| | | data.ServiceContractStatus = serviceContractStatusList |
| | | |
| | | |
| | | // get ServiceContractType list |
| | | serviceContractTypeList, _ := ServiceGroup.GetServiceContractTypeList() |
| | | data.ServiceContractType = serviceContractTypeList |
| | | |
| | | |
| | | // get RefundMethod list |
| | | refundMethodList, _ := ServiceGroup.GetRefundMethodList() |
| | | data.RefundMethod = refundMethodList |
| | | |
| | | |
| | | // get IsInvoice list |
| | | isInvoiceList, _ := ServiceGroup.GetIsInvoiceList() |
| | | data.IsInvoice = isInvoiceList |
| | | |
| | | |
| | | // get AccountId list |
| | | accountIdList, _ := ServiceGroup.GetAccountIdList() |
| | | data.AccountId = accountIdList |
| | | |
| | | |
| | | // get SalesReturnStatus list |
| | | salesReturnStatusList, _ := ServiceGroup.GetSalesReturnStatusList() |
| | | data.SalesReturnStatus = salesReturnStatusList |
| | | |
| | | |
| | | // get Repository list |
| | | repositoryList, _ := ServiceGroup.GetRepositoryList() |
| | | data.Repository = repositoryList |
| | | |
| | | |
| | | // get QuotationStatus list |
| | | quotationStatusList, _ := ServiceGroup.GetQuotationStatusList() |
| | | data.QuotationStatus = quotationStatusList |
| | | |
| | | // get Possibility list |
| | | possibilityList, _ := ServiceGroup.GetPossibilityList() |
| | | data.Possibility = possibilityList |
| | | |
| | | // get Status list |
| | | statusList, _ := ServiceGroup.GetStatusList() |
| | | data.Status = statusList |
| | | |
| | | // get Currency list |
| | | currencyList, _ := ServiceGroup.GetCurrencyList() |
| | | data.Currency = currencyList |
| | | |
| | | |
| | | errCode = ecode.OK |
| | | |