Commit 94dfe3c3 authored by hongguangwu's avatar hongguangwu

MVP1.7.2 异常处理

parent 48143e87
......@@ -861,22 +861,22 @@ public class SalaryUploadServiceImpl extends ServiceImpl<TSalaryStandardMapper,
if (!socialList.isEmpty()) {
//更新社保状态为-已结算
HttpDaprUtil.invokeMethodPost(socialProperties.getAppUrl(), socialProperties.getAppId()
, "/tpaymentinfo/inner/updatePaymentSocialStatusToSettle", socialList, TDepartSettlementInfo.class, SecurityConstants.FROM_IN);
, "/tpaymentinfo/inner/updatePaymentSocialStatusToSettle", socialList, Integer.class, SecurityConstants.FROM_IN);
}
if (!fundList.isEmpty()) {
//更新公积金状态为-已结算
HttpDaprUtil.invokeMethodPost(socialProperties.getAppUrl(), socialProperties.getAppId()
, "/tpaymentinfo/inner/updatePaymentFundStatusToSettle", fundList, TDepartSettlementInfo.class, SecurityConstants.FROM_IN);
, "/tpaymentinfo/inner/updatePaymentFundStatusToSettle", fundList, Integer.class, SecurityConstants.FROM_IN);
}
if (!forecastSocialList.isEmpty()) {
//更新社保状态为-已结算
HttpDaprUtil.invokeMethodPost(socialProperties.getAppUrl(), socialProperties.getAppId()
, "/tforecastlibrary/inner/updateForecastSocialStatusToSettle", forecastSocialList, TDepartSettlementInfo.class, SecurityConstants.FROM_IN);
, "/tforecastlibrary/inner/updateForecastSocialStatusToSettle", forecastSocialList, Integer.class, SecurityConstants.FROM_IN);
}
if (!forecastFundList.isEmpty()) {
//更新公积金状态为-已结算
HttpDaprUtil.invokeMethodPost(socialProperties.getAppUrl(), socialProperties.getAppId()
, "/tforecastlibrary/inner/updateForecastFundStatusToSettle", forecastFundList, TDepartSettlementInfo.class, SecurityConstants.FROM_IN);
, "/tforecastlibrary/inner/updateForecastFundStatusToSettle", forecastFundList, Integer.class, SecurityConstants.FROM_IN);
}
if (Common.isEmpty(salary.getApplyNo())) {
salary.setApplyNo(this.getCode());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment