This commit is contained in:
jiangyong27 2025-03-31 11:15:52 +08:00
parent fb73e8b084
commit f9ab8a059b
1 changed files with 4 additions and 0 deletions

View File

@ -34,5 +34,9 @@ func (p *Payment) Suggest(sess *session.AdminSession, field string) interface{}
counts, err := dao.NewApprovalPaymentDao().Count(sess.GetCorpId(),
time.Now().AddDate(-1, 0, 0).Format("2006-01-02"), "", field)
session.CheckDBError(err)
for _, c := range counts {
c.Name = c.Key
}
return counts
}