|
@@ -1532,6 +1532,11 @@ public class StorageBillServiceImpl extends ServiceImpl<StorageBillMapper, Stora
|
|
|
.eq(BilletLiftingBill::getShiftGroup, shiftGroup)
|
|
|
.eq(BilletLiftingBill::getVehicleNumber, vehicleNumber)
|
|
|
.eq(BilletLiftingBill::getLiftingType, liftingType);
|
|
|
+ if ("2".equals(liftingType)){
|
|
|
+ // 堆垛只统计起垛的数据,下垛的数据不统计
|
|
|
+ log.info("{}{}", "堆垛只统计起垛的数据,下垛的数据不统计!", new Date());
|
|
|
+ queryWrapper.eq(BilletLiftingBill::getBelongType, "2");
|
|
|
+ }
|
|
|
if(oConvertUtils.isEmpty(changeShiftId)){
|
|
|
queryWrapper.between(BilletLiftingBill::getCreateTime, billetHotsendChangeShift.getCreateTime(), new Date());
|
|
|
}else {
|