开启新分支
This commit is contained in:
parent
7c210bb1cb
commit
1add2b914b
|
|
@ -58,6 +58,7 @@ public class SltAgreementInfoServiceImpl implements SltAgreementInfoService {
|
||||||
//维修费用列表
|
//维修费用列表
|
||||||
List<SltAgreementInfo> repairList = getRepairList(list);
|
List<SltAgreementInfo> repairList = getRepairList(list);
|
||||||
//报废费用列表
|
//报废费用列表
|
||||||
|
|
||||||
List<SltAgreementInfo> scrapList = getScrapList(list);
|
List<SltAgreementInfo> scrapList = getScrapList(list);
|
||||||
//预报废费用列表
|
//预报废费用列表
|
||||||
List<SltAgreementInfo> preScrapList = getPreScrapList(list);
|
List<SltAgreementInfo> preScrapList = getPreScrapList(list);
|
||||||
|
|
@ -74,6 +75,7 @@ public class SltAgreementInfoServiceImpl implements SltAgreementInfoService {
|
||||||
return sltInfoVo;
|
return sltInfoVo;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
public List<SltAgreementInfo> getPreScrapList(List<AgreementInfo> list) {
|
public List<SltAgreementInfo> getPreScrapList(List<AgreementInfo> list) {
|
||||||
List<SltAgreementInfo> scrapList = new ArrayList<>();
|
List<SltAgreementInfo> scrapList = new ArrayList<>();
|
||||||
String taskType = "57";
|
String taskType = "57";
|
||||||
|
|
@ -333,6 +335,7 @@ public class SltAgreementInfoServiceImpl implements SltAgreementInfoService {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@Override
|
||||||
public List<SltAgreementInfo> getLoseList(List<AgreementInfo> list) {
|
public List<SltAgreementInfo> getLoseList(List<AgreementInfo> list) {
|
||||||
List<SltAgreementInfo> loseList = new ArrayList<>();
|
List<SltAgreementInfo> loseList = new ArrayList<>();
|
||||||
for (AgreementInfo bean : list) {
|
for (AgreementInfo bean : list) {
|
||||||
|
|
@ -361,6 +364,7 @@ public class SltAgreementInfoServiceImpl implements SltAgreementInfoService {
|
||||||
return loseList;
|
return loseList;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
public List<SltAgreementInfo> getScrapList(List<AgreementInfo> list) {
|
public List<SltAgreementInfo> getScrapList(List<AgreementInfo> list) {
|
||||||
List<SltAgreementInfo> scrapList = new ArrayList<>();
|
List<SltAgreementInfo> scrapList = new ArrayList<>();
|
||||||
String taskType = "57";
|
String taskType = "57";
|
||||||
|
|
@ -516,6 +520,7 @@ public class SltAgreementInfoServiceImpl implements SltAgreementInfoService {
|
||||||
return leaseList;
|
return leaseList;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
public List<SltAgreementInfo> getRepairList(List<AgreementInfo> list) {
|
public List<SltAgreementInfo> getRepairList(List<AgreementInfo> list) {
|
||||||
List<SltAgreementInfo> repairList = new ArrayList<>();
|
List<SltAgreementInfo> repairList = new ArrayList<>();
|
||||||
String taskType = "41";
|
String taskType = "41";
|
||||||
|
|
@ -530,6 +535,7 @@ public class SltAgreementInfoServiceImpl implements SltAgreementInfoService {
|
||||||
return repairList;
|
return repairList;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
public List<SltAgreementInfo> getLeaseListOne(List<AgreementInfo> list) {
|
public List<SltAgreementInfo> getLeaseListOne(List<AgreementInfo> list) {
|
||||||
List<SltAgreementInfo> leaseList = new ArrayList<>();
|
List<SltAgreementInfo> leaseList = new ArrayList<>();
|
||||||
for (AgreementInfo bean : list) {
|
for (AgreementInfo bean : list) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue