看板调整产量计算公式

tags/yfai-mes-ext-v2.4
臧学普 6 months ago
parent 78dfc1657f
commit 9a9799a1c6

@ -147,7 +147,7 @@ public class MesEarlyWarningServiceImpl implements IMesEarlyWarningService {
Date shiftStartTime = sdf1.parse(tempStartDatetime);
//如果小于当前时间,显示前一天的统计
Calendar calendar = Calendar.getInstance();
if (shiftStartTime.before(now)) {
if (now.before(shiftStartTime)) {
calendar.setTime(now);
calendar.add(Calendar.DATE, -1);
} else {

Loading…
Cancel
Save