| | |
| | | departmentList, _ := ServiceGroup.GetDepartmentList() |
| | | data.Department = departmentList |
| | | |
| | | // get Satisfaction list |
| | | satisfactionList, _ := ServiceGroup.GetSatisfactionList() |
| | | data.Satisfaction = satisfactionList |
| | | |
| | | // get TimelyRate list |
| | | timelyRateList, _ := ServiceGroup.GetTimelyRateList() |
| | | data.TimelyRate = timelyRateList |
| | | |
| | | // get SolveRate list |
| | | solveRateList, _ := ServiceGroup.GetSolveRateList() |
| | | data.SolveRate = solveRateList |
| | | |
| | | // get IsVisit list |
| | | isVisitList, _ := ServiceGroup.GetIsVisitList() |
| | | data.IsVisit = isVisitList |
| | | |
| | | // get ReportSource list |
| | | 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 |
| | | |
| | | return |
| | | } |
| | | } |