@ -247,7 +256,7 @@ public class LoadMainActivity extends BaseActivity implements AddFlightDialog.Ad
AtomicIntegertag=newAtomicInteger();
if(!cargoInfoList.isEmpty()){
cargoInfoList.forEach(cargoInfo->{
intcountNum=LitePal.where("cargoId = ? and type ='正常' and (state IS NULL or state = '修改')",String.valueOf(cargoInfo.getId())).count(LoadOperation.class);
intcountNum=LitePal.where("cargoId = ? and type ='装载' and (state IS NULL or state = '修改')",String.valueOf(cargoInfo.getId())).count(LoadOperation.class);
List<LoadOperation>loadOperationList=LitePal.where("flightId = ? and cargoId = ? and (state IS NULL or state = '修改') ",String.valueOf(loadOperationFrist.getFlightId()),String.valueOf(loadOperationFrist.getCargoId())).order("id asc").find(LoadOperation.class);