|
|
@ -825,7 +825,7 @@ public class CommonContractService extends MybatisBaseService<CommonContractMapp |
|
|
|
String remarks = ""; |
|
|
|
CommonContract commonContract = baseMapper.selectByBusSidss(dto.getBusSid()); |
|
|
|
if (commonContract != null) { |
|
|
|
String date = DateUtil.format(commonContract.getCreateTime(), "yyyy-MM-dd"); |
|
|
|
String date = DateUtil.today(); |
|
|
|
List<String> dateString = Arrays.asList(date.split("-")); |
|
|
|
String year = dateString.get(0); |
|
|
|
String month = dateString.get(1); |
|
|
@ -939,7 +939,7 @@ public class CommonContractService extends MybatisBaseService<CommonContractMapp |
|
|
|
String remarks = ""; |
|
|
|
CommonContract commonContract = baseMapper.selectByBusSidss(dto.getBusSid()); |
|
|
|
if (commonContract != null) { |
|
|
|
String date = DateUtil.format(commonContract.getCreateTime(), "yyyy-MM-dd"); |
|
|
|
String date = DateUtil.today(); |
|
|
|
List<String> dateString = Arrays.asList(date.split("-")); |
|
|
|
String year = dateString.get(0); |
|
|
|
String month = dateString.get(1); |
|
|
@ -1042,7 +1042,7 @@ public class CommonContractService extends MybatisBaseService<CommonContractMapp |
|
|
|
String ftl = ""; |
|
|
|
CommonContract commonContract = baseMapper.selectByBusSidss(dto.getBusSid()); |
|
|
|
if (commonContract != null) { |
|
|
|
String date = DateUtil.format(commonContract.getCreateTime(), "yyyy-MM-dd"); |
|
|
|
String date = DateUtil.today(); |
|
|
|
List<String> dateString = Arrays.asList(date.split("-")); |
|
|
|
String year = dateString.get(0); |
|
|
|
String month = dateString.get(1); |
|
|
@ -1132,7 +1132,7 @@ public class CommonContractService extends MybatisBaseService<CommonContractMapp |
|
|
|
String ftl = ""; |
|
|
|
CommonContract commonContract = baseMapper.selectByBusSidss(dto.getBusSid()); |
|
|
|
if (commonContract != null) { |
|
|
|
String date = DateUtil.format(commonContract.getCreateTime(), "yyyy-MM-dd"); |
|
|
|
String date = DateUtil.today(); |
|
|
|
List<String> dateString = Arrays.asList(date.split("-")); |
|
|
|
String year = dateString.get(0); |
|
|
|
String month = dateString.get(1); |
|
|
@ -1378,7 +1378,7 @@ public class CommonContractService extends MybatisBaseService<CommonContractMapp |
|
|
|
} |
|
|
|
CommonContract commonContract = baseMapper.selectByBusSidss(dto.getBusSid()); |
|
|
|
if (commonContract != null) { |
|
|
|
String date = DateUtil.format(commonContract.getCreateTime(), "yyyy-MM-dd"); |
|
|
|
String date =DateUtil.today(); |
|
|
|
map.put("date", date); |
|
|
|
} |
|
|
|
List<CarContractListVo> carContractListVos = new ArrayList<>(); |
|
|
|