This commit is contained in:
jiangyong27 2024-05-11 17:36:57 +08:00
parent e83ddbe635
commit 96f744f781
2 changed files with 2 additions and 2 deletions

View File

@ -70,7 +70,7 @@ func (d *Ddf) getDetail(shopId int) {
totalAmount += day.Amount
}
//订单完成提示
log.Errorf("[DDF] shopName=%s,workstation=%s,time=[%s],cost_minute=%d,money=%s,total=[%s/%d]",
log.Infof("[DDF] shopName=%s,workstation=%s,time=[%s],cost_minute=%d,money=%s,total=[%s/%d]",
m1.ShopName, m1.Workstation, goutil.TimeToDateTime(m1.StartTime),
(m1.EndTime-m1.StartTime)/60, goutil.FormatMoney(m1.Amount),
goutil.FormatMoney(totalAmount), len(todays))

View File

@ -105,7 +105,7 @@ func (n *Nowcar) getInfo(devId string) ([]string, error) {
totalAmount += day.Amount
}
//订单完成提示
log.Errorf("[NowCar] shopName=%s,workstation=%s,time=[%s],cost_minute=%d,money=%s,total=[%s/%d]",
log.Infof("[NowCar] shopName=%s,workstation=%s,time=[%s],cost_minute=%d,money=%s,total=[%s/%d]",
m2.ShopName, m2.Workstation, goutil.TimeToDateTime(m2.StartTime),
(m2.EndTime-m2.StartTime)/60, goutil.FormatMoney(m2.Amount),
goutil.FormatMoney(totalAmount), len(todays))