Compare commits

..

2 Commits

Author SHA1 Message Date
lzh
51db761716 Merge branch 'dev-lzh-0905' into dev 2025-10-15 15:52:57 +08:00
lzh
c69a5d8c14 1 2025-10-15 15:52:53 +08:00

View File

@ -339,9 +339,6 @@ func GetUsedRecord(req *bundle.GetUsedRecordListReq) (*bundle.GetUsedRecordListR
resp.Data = lo.Map(data, func(m model.CostLogPo, _ int) *bundle.WorkCastItem {
result := &bundle.WorkCastItem{}
copier.Copy(result, &m)
loc, _ := time.LoadLocation("Asia/Shanghai")
t := time.Unix(m.ArtistConfirmedTime, 0).In(loc)
result.ArtistConfirmedTime = t.Format(time.DateTime)
return result
})
return resp, nil