|
@@ -705,7 +705,7 @@ public class WmPayOffController {
|
|
|
return R.failed("数据异常");
|
|
|
}
|
|
|
|
|
|
- return wmPayOffService.settleIssueBySubType(input);
|
|
|
+ return wmPayOffService.financialSettle(input);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -750,7 +750,7 @@ public class WmPayOffController {
|
|
|
|
|
|
input.setNotes(notes);
|
|
|
// 调用单个结算
|
|
|
- R<?> settleR = wmPayOffService.settleIssueBySubType(input);
|
|
|
+ R<?> settleR = wmPayOffService.financialSettle(input);
|
|
|
boolean failFlag;
|
|
|
if (settleR.getCode() == 0) {
|
|
|
// 结算成功,不进行页面提示
|
|
@@ -809,6 +809,7 @@ public class WmPayOffController {
|
|
|
input.setSubjectLocation(settleNote.getSubjectLocation());
|
|
|
input.setInvoiceCategory(settleNote.getInvoiceType());
|
|
|
input.setScorePackageName(wsp.getScorePackageName());
|
|
|
+ input.setNotes(notes);
|
|
|
|
|
|
return wmPayOffService.financialReview(input);
|
|
|
}
|
|
@@ -849,8 +850,8 @@ public class WmPayOffController {
|
|
|
input.setInvoiceCategory(settleNote.getInvoiceType());
|
|
|
input.setScorePackageName(wsp.getScorePackageName());
|
|
|
input.setNotes(notes);
|
|
|
- // 调用单个结算
|
|
|
- R<?> settleR = wmPayOffService.settleIssueBySubType(input);
|
|
|
+ // 调用单个复核
|
|
|
+ R<?> settleR = wmPayOffService.financialReview(input);
|
|
|
boolean failFlag;
|
|
|
if (settleR.getCode() == 0) {
|
|
|
// 结算成功,不进行页面提示
|