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