Browse Source

修复dashboard图例1完成时间排序的bug

pull/217/head
zhangxin 2 years ago
parent
commit
65e6e4a2b2
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      services/pln/implments/CustOrder.service.impl.go

+ 1
- 1
services/pln/implments/CustOrder.service.impl.go View File

@ -1709,7 +1709,7 @@ func (impl *CustOrderServiceImplement) QuickSortProductData(values []model.HourP
head, tail := 0, len(values)-1
for head < tail {
iTime := values[i].LastDoneTime
if iTime.Before(midTime) {
if iTime.After(midTime) {
values[i], values[tail] = values[tail], values[i]
tail--
} else {


Loading…
Cancel
Save