...
|
...
|
@@ -639,8 +639,8 @@ public class UnionShareServiceImpl implements IUnionShareService,IBusinessExport |
|
|
int result = unionShareUserMapper.insertSelective(unionShareUser);
|
|
|
if (result > 0) {
|
|
|
logger.info("relateUnionType,begin to send message,uid is {},unionType is {}", uid,unionDepartmentUrl.getUnionType());
|
|
|
//
|
|
|
sendMessageHelper.sendMessage(uid,1,unionShareUser.getCreateTime(),null);
|
|
|
////发送联盟用户申请成功公众号消息
|
|
|
sendMessageHelper.sendMessage(uid,4,unionShareUser.getCreateTime(),null);
|
|
|
//发送联盟用户申请成功短信
|
|
|
sendSmsService.smsSendByMobile(UNION_SHARE_USER_APPLY_PASS_SMS_CONTENT, Lists.newArrayList(mobile));
|
|
|
}
|
...
|
...
|
@@ -1167,7 +1167,7 @@ public class UnionShareServiceImpl implements IUnionShareService,IBusinessExport |
|
|
//10.待确认 20.待提现 30.提现中 40.提现成功 91.订单取消 92.订单退货 93.订单换货 100.不可结算
|
|
|
switch (Integer.valueOf(shareOrderBo.getStatus())){
|
|
|
case 10:
|
|
|
shareOrderBo.setOrderStatus("待确认");
|
|
|
shareOrderBo.setOrderStatus("待结算");
|
|
|
break;
|
|
|
case 20:
|
|
|
shareOrderBo.setOrderStatus("待提现");
|
...
|
...
|
|