|
@@ -49,7 +49,7 @@ public class MsReportService {
|
|
List<MsTripDet> listDet = msSuspectedMapper.selectTripSuspected(msSuspected.getSuspectedId());
|
|
List<MsTripDet> listDet = msSuspectedMapper.selectTripSuspected(msSuspected.getSuspectedId());
|
|
if (listDet != null && listDet.size() > 0) {
|
|
if (listDet != null && listDet.size() > 0) {
|
|
for (MsTripDet msTripDet : listDet) {
|
|
for (MsTripDet msTripDet : listDet) {
|
|
- tripDet += "出发地:" + getLocalOther(msTripDet.getStartLocal(), msTripDet.getEndLocalOther()) + ",";
|
|
|
|
|
|
+ tripDet += "出发地:" + getLocalOther(msTripDet.getStartLocal(), msTripDet.getStartLocalOther()) + ",";
|
|
tripDet += "目的地:" + getLocalOther(msTripDet.getEndLocal(), msTripDet.getEndLocalOther()) + ",";
|
|
tripDet += "目的地:" + getLocalOther(msTripDet.getEndLocal(), msTripDet.getEndLocalOther()) + ",";
|
|
tripDet += "出行方式:" + getTripType(msTripDet.getTripType()) + ",";
|
|
tripDet += "出行方式:" + getTripType(msTripDet.getTripType()) + ",";
|
|
tripDet += "车次/航班/车牌:" + msTripDet.getTripTypeDesp() + ",";
|
|
tripDet += "车次/航班/车牌:" + msTripDet.getTripTypeDesp() + ",";
|
|
@@ -80,7 +80,7 @@ public class MsReportService {
|
|
List<MsTripDet> listDet = msSuspectedMapper.selectTripSuspected(msSuspected.getSuspectedId());
|
|
List<MsTripDet> listDet = msSuspectedMapper.selectTripSuspected(msSuspected.getSuspectedId());
|
|
if (listDet != null && listDet.size() > 0) {
|
|
if (listDet != null && listDet.size() > 0) {
|
|
for (MsTripDet msTripDet : listDet) {
|
|
for (MsTripDet msTripDet : listDet) {
|
|
- tripDet += "出发地:" + getLocalOther(msTripDet.getStartLocal(), msTripDet.getEndLocalOther()) + ",";
|
|
|
|
|
|
+ tripDet += "出发地:" + getLocalOther(msTripDet.getStartLocal(),msTripDet.getStartLocalOther()) + ",";
|
|
tripDet += "目的地:" + getLocalOther(msTripDet.getEndLocal(), msTripDet.getEndLocalOther()) + ",";
|
|
tripDet += "目的地:" + getLocalOther(msTripDet.getEndLocal(), msTripDet.getEndLocalOther()) + ",";
|
|
tripDet += "出行方式:" + getTripType(msTripDet.getTripType()) + ",";
|
|
tripDet += "出行方式:" + getTripType(msTripDet.getTripType()) + ",";
|
|
tripDet += "车次/航班/车牌:" + msTripDet.getTripTypeDesp() + ",";
|
|
tripDet += "车次/航班/车牌:" + msTripDet.getTripTypeDesp() + ",";
|