refactor: remove AgentRunLog related code and components
- Deleted AgentRunLogResponse struct from skill_response.go. - Removed agent_run_log_repository.go and agent_run_log_service.go files. - Eliminated AgentRunLogDetailDialog component and its related logic from the dashboard. - Removed agent run log fetching functions from admin API. - Updated navigation and localization files to remove references to agent run logs.
This commit is contained in:
@@ -1,86 +0,0 @@
|
||||
package services
|
||||
|
||||
import (
|
||||
"agent-desk/internal/models"
|
||||
"agent-desk/internal/repositories"
|
||||
"strings"
|
||||
|
||||
"agent-desk/internal/pkg/httpx/params"
|
||||
|
||||
"github.com/mlogclub/simple/sqls"
|
||||
)
|
||||
|
||||
var AgentRunLogService = newAgentRunLogService()
|
||||
|
||||
func newAgentRunLogService() *agentRunLogService {
|
||||
return &agentRunLogService{}
|
||||
}
|
||||
|
||||
type agentRunLogService struct{}
|
||||
|
||||
func (s *agentRunLogService) Get(id int64) *models.AgentRunLog {
|
||||
return repositories.AgentRunLogRepository.Get(sqls.DB(), id)
|
||||
}
|
||||
|
||||
func (s *agentRunLogService) Take(where ...interface{}) *models.AgentRunLog {
|
||||
return repositories.AgentRunLogRepository.Take(sqls.DB(), where...)
|
||||
}
|
||||
|
||||
func (s *agentRunLogService) Find(cnd *sqls.Cnd) []models.AgentRunLog {
|
||||
return repositories.AgentRunLogRepository.Find(sqls.DB(), cnd)
|
||||
}
|
||||
|
||||
func (s *agentRunLogService) FindOne(cnd *sqls.Cnd) *models.AgentRunLog {
|
||||
return repositories.AgentRunLogRepository.FindOne(sqls.DB(), cnd)
|
||||
}
|
||||
|
||||
func (s *agentRunLogService) FindPageByParams(params *params.QueryParams) (list []models.AgentRunLog, paging *sqls.Paging) {
|
||||
return repositories.AgentRunLogRepository.FindPageByParams(sqls.DB(), params)
|
||||
}
|
||||
|
||||
func (s *agentRunLogService) FindPageByCnd(cnd *sqls.Cnd) (list []models.AgentRunLog, paging *sqls.Paging) {
|
||||
return repositories.AgentRunLogRepository.FindPageByCnd(sqls.DB(), cnd)
|
||||
}
|
||||
|
||||
func (s *agentRunLogService) Count(cnd *sqls.Cnd) int64 {
|
||||
return repositories.AgentRunLogRepository.Count(sqls.DB(), cnd)
|
||||
}
|
||||
|
||||
func (s *agentRunLogService) Create(t *models.AgentRunLog) error {
|
||||
return repositories.AgentRunLogRepository.Create(sqls.DB(), t)
|
||||
}
|
||||
|
||||
func (s *agentRunLogService) Update(t *models.AgentRunLog) error {
|
||||
return repositories.AgentRunLogRepository.Update(sqls.DB(), t)
|
||||
}
|
||||
|
||||
func (s *agentRunLogService) Updates(id int64, columns map[string]interface{}) error {
|
||||
return repositories.AgentRunLogRepository.Updates(sqls.DB(), id, columns)
|
||||
}
|
||||
|
||||
func (s *agentRunLogService) UpdateColumn(id int64, name string, value interface{}) error {
|
||||
return repositories.AgentRunLogRepository.UpdateColumn(sqls.DB(), id, name, value)
|
||||
}
|
||||
|
||||
func (s *agentRunLogService) Delete(id int64) {
|
||||
repositories.AgentRunLogRepository.Delete(sqls.DB(), id)
|
||||
}
|
||||
|
||||
func (s *agentRunLogService) ApplyHITLStatusFilter(cnd *sqls.Cnd, hitlStatus string) *sqls.Cnd {
|
||||
if cnd == nil {
|
||||
cnd = sqls.NewCnd()
|
||||
}
|
||||
switch strings.TrimSpace(hitlStatus) {
|
||||
case "pending":
|
||||
cnd.Eq("final_status", "interrupted")
|
||||
case "expired":
|
||||
cnd.Eq("final_status", "expired")
|
||||
case "cancelled":
|
||||
cnd.Where("(reply_text LIKE ? OR reply_text LIKE ?)", "%已取消本次工单创建%", "%已取消本次转人工%")
|
||||
case "confirmed":
|
||||
cnd.Where("resume_source <> ''")
|
||||
case "triggered":
|
||||
cnd.Where("interrupt_type <> ''")
|
||||
}
|
||||
return cnd
|
||||
}
|
||||
Reference in New Issue
Block a user