|
@ -1610,6 +1610,24 @@ public class BusDeliveredApplyService extends MybatisBaseService<BusDeliveredApp |
|
|
Future future5 = pool.submit(() -> { |
|
|
Future future5 = pool.submit(() -> { |
|
|
pushHandoverPrepare(busDeliveredApply, detailsList, orderDetailsVoResultBean.getData(), userVoResultBean.getData()); |
|
|
pushHandoverPrepare(busDeliveredApply, detailsList, orderDetailsVoResultBean.getData(), userVoResultBean.getData()); |
|
|
}); |
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
//推送单车返利管理
|
|
|
|
|
|
String concatNo = busDeliveredApply.getContractNo(); |
|
|
|
|
|
BusSalesOrder busSalesOrder = busSalesOrderService.selectOrderByContractNo(concatNo).getData(); |
|
|
|
|
|
if (busSalesOrder != null) { |
|
|
|
|
|
String saleOrderSid = busSalesOrder.getSid(); |
|
|
|
|
|
if (StringUtils.isNotBlank(saleOrderSid)) { |
|
|
|
|
|
SolutionsDetailsVo solutionsDetailsVo = loanSolutionsFeign.selectDetailsss(saleOrderSid).getData(); |
|
|
|
|
|
if (solutionsDetailsVo != null) { |
|
|
|
|
|
//三方金融的,在出库时推送单车返利数据,金额为厂家贴息。
|
|
|
|
|
|
if("2".equals(busSalesOrder.getFinancePlan())){ |
|
|
|
|
|
Future future11 = pool.submit(() -> { |
|
|
|
|
|
pushVehRebate(busDeliveredApply, detailsList, solutionsDetailsVo.getFactoryDiscount()); |
|
|
|
|
|
}); |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
//推送合格证管理员站内信提醒有待移交的合格证,同时自动更改出库车辆的合格证移交状态为“待移交”。
|
|
|
//推送合格证管理员站内信提醒有待移交的合格证,同时自动更改出库车辆的合格证移交状态为“待移交”。
|
|
|
//ToDo:合格证管理员、随车资料管理员、发票管理员创建并查询该角色的用户推送消息有待移交的资料等等。
|
|
|
//ToDo:合格证管理员、随车资料管理员、发票管理员创建并查询该角色的用户推送消息有待移交的资料等等。
|
|
|
Future future6 = pool.submit(() -> { |
|
|
Future future6 = pool.submit(() -> { |
|
|