|
@@ -75,6 +75,9 @@ public class FinancePaymentApplicationServiceImpl extends ServiceImpl<FinancePay
|
|
|
getRevieweder(application);
|
|
|
Date createTime = new Date();
|
|
|
Thread.sleep(800);
|
|
|
+ if ("0".equals(application.getRebateType())) {
|
|
|
+ application.setRebateType("2");
|
|
|
+ }
|
|
|
//添加申请
|
|
|
this.save(application);
|
|
|
//消息通知内容
|
|
@@ -167,6 +170,9 @@ public class FinancePaymentApplicationServiceImpl extends ServiceImpl<FinancePay
|
|
|
Thread.sleep(800);
|
|
|
//获取审核人
|
|
|
getRevieweder(application);
|
|
|
+ if ("0".equals(application.getRebateType())) {
|
|
|
+ application.setRebateType("2");
|
|
|
+ }
|
|
|
this.updateById(application);
|
|
|
//消息通知内容
|
|
|
String message = messageTemplate.getFinancePaymentApplicationMessage(application);
|