5d7c10aeab
- Updated runtime configuration to use __CS_AI_AGENT_WIDGET_CONFIG__ instead of __CS_AGENT_WIDGET_CONFIG__. - Changed message types in support host bridge from "cs-agent" to "cs-ai-agent". - Minified SDK script updated to reflect new AI agent naming conventions. - Adjusted scrollbar styles in main.scss to use .cs-ai-agent-scrollbar instead of .cs-agent-scrollbar.
33 lines
757 B
Go
33 lines
757 B
Go
package builders
|
|
|
|
import (
|
|
"cs-ai-agent/internal/models"
|
|
"cs-ai-agent/internal/pkg/dto/response"
|
|
"time"
|
|
)
|
|
|
|
func BuildCompany(item *models.Company) *response.CompanyResponse {
|
|
if item == nil {
|
|
return nil
|
|
}
|
|
return &response.CompanyResponse{
|
|
ID: item.ID,
|
|
Name: item.Name,
|
|
Code: item.Code,
|
|
Status: item.Status,
|
|
Remark: item.Remark,
|
|
CreatedAt: item.CreatedAt.Format(time.DateTime),
|
|
UpdatedAt: item.UpdatedAt.Format(time.DateTime),
|
|
}
|
|
}
|
|
|
|
func BuildCompanyList(list []models.Company) []response.CompanyResponse {
|
|
results := make([]response.CompanyResponse, 0, len(list))
|
|
for _, item := range list {
|
|
if company := BuildCompany(&item); company != nil {
|
|
results = append(results, *company)
|
|
}
|
|
}
|
|
return results
|
|
}
|