|
|
|
|
@ -173,13 +173,14 @@ public class EmptyCheckService {
|
|
|
|
|
if(street != null){
|
|
|
|
|
CheckStreetSummary checkStreetSummary = checkStreetSummaryMapper.get(street.getId(),taskId);
|
|
|
|
|
//托盤組 11111111
|
|
|
|
|
if(goodsCode.equals("11111111")){
|
|
|
|
|
int c = checkStreetSummary.getEmptyGoodsCount() + 1;
|
|
|
|
|
checkStreetSummaryMapper.updateEmptyGoodsCount(street.getId(),taskId,c);
|
|
|
|
|
}else {
|
|
|
|
|
int c = checkStreetSummary.getGoodsCount() + 1;
|
|
|
|
|
checkStreetSummaryMapper.updateGoodsCount(street.getId(),taskId,c);
|
|
|
|
|
}
|
|
|
|
|
int c = checkStreetSummary.getGoodsCount() + 1;
|
|
|
|
|
checkStreetSummaryMapper.updateGoodsCount(street.getId(),taskId,c);
|
|
|
|
|
// if(goodsCode.equals("11111111")){
|
|
|
|
|
// int c = checkStreetSummary.getEmptyGoodsCount() + 1;
|
|
|
|
|
// checkStreetSummaryMapper.updateEmptyGoodsCount(street.getId(),taskId,c);
|
|
|
|
|
// }else {
|
|
|
|
|
//
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|