use of com.itrus.portal.db.UserLog in project portal by ixinportal.
the class DownLoadCertWebController method downLoadCert.
@RequestMapping("/{id}")
@ResponseBody
public Map<String, Object> downLoadCert(@PathVariable(value = "id") Long id, @RequestParam(value = "uidIdx", required = true) Integer uidIdx, @RequestParam(value = "csr", required = true) String csr, @RequestParam(value = "keySn", required = false) String keySn, HttpSession session) {
Map<String, Object> retMap = new HashMap<String, Object>();
retMap.put("retCode", 0);
UserInfo webuserInfo = (UserInfo) session.getAttribute("webuserInfo");
Enterprise webenterprise = (Enterprise) session.getAttribute("webenterprise");
if (null == webuserInfo || null == webenterprise) {
// 2标识登录已经失效,需跳转到登录页面
retMap.put("retCode", 2);
retMap.put("retMsg", "登录状态失效");
return retMap;
}
Bill bill = billService.getBill(id);
if (null == bill) {
retMap.put("retMsg", "该订单不存在");
return retMap;
}
// 订单是否为当前用户当前企业
if (!webuserInfo.getId().equals(bill.getUniqueId()) || !webenterprise.getId().equals(bill.getEnterprise())) {
retMap.put("retMsg", "您不能操作该订单");
return retMap;
}
// 判断该订单状态是否为待下载,是否已经关联了证书
List<String> certStatus = new ArrayList<String>();
certStatus.add(ComNames.CERT_STATUS_1);
certStatus.add(ComNames.CERT_STATUS_2);
List<UserCert> userCerts = userCertService.getUserCertByBill(bill.getId(), certStatus);
if (!bill.getBillStatus().equals(ComNames.BILL_STATUS_13) || !userCerts.isEmpty()) {
retMap.put("retMsg", "该证书状态为已下载或订单还未审核");
return retMap;
}
Product product = productService.getProduct(bill.getProduct());
DigitalCert digitalCert = digitalCertService.getDigitalCert(product.getCert());
RaAccount ra = raAccountService.getRaAccount(product.getRa());
// 下载证书
String autoidType = "";
Integer autoidValue = 0;
try {
// 下载证书
CertInfo racertinfo = downLoadCertService.downLoadCert(product, ra, bill, digitalCert, uidIdx, csr, autoidType, autoidValue);
// 保存证书
downLoadCertService.saveCertInfo(racertinfo, bill, ra.getId(), uidIdx, keySn, autoidType, autoidValue);
// 返回数字证书
retMap.put("retCode", 1);
retMap.put("certChain", racertinfo.getCertSignBufP7());
retMap.put("certSn", racertinfo.getCertSerialNumber());
retMap.put("certSignBuf", racertinfo.getCertSignBuf());
retMap.put("certKmcRep1", racertinfo.getCertKmcRep1());
retMap.put("certKmcRep2", racertinfo.getCertKmcRep2());
// 加密证书
retMap.put("encUserCert", racertinfo.getCertSignBufKmc());
// 记录日志
UserLog userlog = new UserLog();
userlog.setProject(webuserInfo.getProject());
userlog.setType("用户下载证书");
userlog.setInfo(webenterprise.getEnterpriseName() + "下载证书成功");
userlog.setHostId("未知");
userlog.setSn(null == webuserInfo.getUniqueId() ? null : webuserInfo.getUniqueId());
LogUtil.userlog(sqlSession, userlog);
} catch (Exception e) {
e.printStackTrace();
retMap.put("retMsg", e.getMessage());
// 记录日志
UserLog userlog = new UserLog();
userlog.setProject(webuserInfo.getProject());
userlog.setType("用户下载证书");
userlog.setInfo("url:downLoadCert,详细错误:" + e.getMessage());
userlog.setHostId("未知");
userlog.setSn(null == webuserInfo.getUniqueId() ? null : webuserInfo.getUniqueId());
LogUtil.userlog(sqlSession, userlog);
return retMap;
}
return retMap;
}
use of com.itrus.portal.db.UserLog in project portal by ixinportal.
the class ExtraBillWebController method sendEmailToUserByExtraBillId.
@RequestMapping("/sendemailbw")
@ResponseBody
public Map<String, Object> sendEmailToUserByExtraBillId(@RequestParam(value = "billId", required = true) Long BillId, HttpServletRequest request) {
Map<String, Object> retMap = new HashMap<>();
retMap.put("retCode", 0);
HttpSession session = request.getSession();
Enterprise webenterprise = (Enterprise) session.getAttribute("webenterprise");
UserInfo webuserInfo = (UserInfo) session.getAttribute("webuserInfo");
if (null == webenterprise || null == webuserInfo) {
retMap.put("retMsg", "登录失效");
return retMap;
}
ExtraBill bill = extraBillService.selectByPrimaryKey(BillId);
if (null == bill) {
retMap.put("errorMsg", "未找到该订单");
return retMap;
}
if (!bill.getUniqueId().equals(webuserInfo.getId())) {
retMap.put("errorMsg", "您无权操作该订单");
return retMap;
}
try {
retMap = baiWangEmailService.sendEmailToUser(bill);
retMap.put("email", webuserInfo.getEmail());
UserLog userlog = new UserLog();
userlog.setCreateTime(new Date());
userlog.setHostId("未知");
userlog.setInfo("订单号:" + bill.getBillId() + ",用户手机号:" + webuserInfo.getmPhone());
userlog.setProject(bill.getProject());
userlog.setType("发送邮件_百旺单机");
userlog.setSn(null == webuserInfo.getUniqueId() ? null : webuserInfo.getUniqueId());
LogUtil.userlog(sqlSession, userlog);
} catch (Exception e) {
UserLog userlog = new UserLog();
userlog.setCreateTime(new Date());
userlog.setHostId("未知");
userlog.setInfo("出现异常,订单号:" + bill.getBillId() + "异常信息:" + e.getMessage());
userlog.setProject(bill.getProject());
userlog.setType("发送邮件_百旺单机");
userlog.setSn(null == webuserInfo.getUniqueId() ? null : webuserInfo.getUniqueId());
LogUtil.userlog(sqlSession, userlog);
log.error(e.getMessage());
retMap.put("retMsg", "服务端出现异常,请联系系统管理员,异常信息:" + e.getMessage());
retMap.put("retCode", 0);
return retMap;
}
return retMap;
}
use of com.itrus.portal.db.UserLog in project portal by ixinportal.
the class UnlockKeyBillController method reSubmitUnlockBill.
/**
* 解锁订单重新提交授权书,注意授权书的id不能为null
* @param billId
* @param certSn
* @param keySn
* @param proxy
* @param request
* @return
*/
@RequestMapping("/reSubmitUnlockBill")
@ResponseBody
public Map<String, Object> reSubmitUnlockBill(@RequestParam("billId") Long billId, @RequestParam("certSn") String certSn, @RequestParam("keySn") String keySn, @ModelAttribute("proxy") Proxy proxy, HttpServletRequest request) {
Map<String, Object> retMap = new HashMap<String, Object>();
retMap.put("retCode", 0);
UserInfo webUserInfo = null;
Project project = null;
// 校验证书和证书所绑定的用户和企业
UserCert userCert = userCertService.getUserCertByCertSn(certSn);
if (null == userCert) {
retMap.put("retMsg", "该证书未注册,请您先注册");
return retMap;
}
// if(null == userCert.getUserinfo()){
// retMap.put("retMsg", "该证书未绑定用户,请检查您插入的key是否正确");
// return retMap;
// }
// 校验订单和证书所对应的用户与企业
Bill bill = billService.getBill(billId);
if (null == bill) {
retMap.put("retMsg", "订单不存在");
return retMap;
}
webUserInfo = userInfoService.selectByPrimaryKey(bill.getUniqueId());
if (null == webUserInfo) {
retMap.put("retMsg", "订单所对应的用户不存在,请检查");
return retMap;
}
if (!(bill.getBillStatus().equals(ComNames.BILL_STATUS_1) || bill.getBillStatus().equals(ComNames.BILL_STATUS_2) || bill.getBillStatus().equals(ComNames.BILL_STATUS_15))) {
retMap.put("errorMsg", "该订单不处于可以重新提交的状态");
return retMap;
}
if (!bill.getUnlockUserCert().equals(userCert.getId())) {
retMap.put("errorMsg", "您无权操作该订单");
return retMap;
}
Product product = productService.getProduct(bill.getProduct());
if (null == product.getKeyUnlockType()) {
retMap.put("retMsg", "您选择的产品不属于解锁产品,请重新选择");
return retMap;
}
project = projectService.selectByPrimaryKey(product.getProject());
DefaultTransactionDefinition dtd = new DefaultTransactionDefinition();
dtd.setPropagationBehavior(TransactionDefinition.PROPAGATION_REQUIRED);
TransactionStatus status = transactionManager.getTransaction(dtd);
try {
if (null != proxy && (StringUtils.isNotBlank(proxy.getImgFile()) || null != proxy.getId())) {
// 保存授权书
Proxy oldProxy = null;
if (null != proxy.getId()) {
oldProxy = new Proxy();
oldProxy.setId(proxy.getId());
proxy.setId(null);
}
proxy = proxyService.saveProxy1(bill.getEnterprise(), webUserInfo.getUniqueId(), bill.getId(), bill.getUniqueId(), proxy, oldProxy, project);
}
// 审核拒绝后的订单,重新提交,则修改订单状态和审核拒绝的短信发送
if (bill.getBillStatus().equals(ComNames.BILL_STATUS_15)) {
bill.setBillStatus(ComNames.BILL_STATUS_14);
bill.setIsSms(false);
billService.updateBill(bill);
}
transactionManager.commit(status);
LogUtil.userlog(sqlSession, project.getId(), "重新提交解锁订单", webUserInfo.getmPhone() + "重新提交解锁订单:" + bill.getBillId(), "未知", "", null == webUserInfo.getUniqueId() ? null : webUserInfo.getUniqueId());
retMap.put("retCode", 1);
return retMap;
} catch (Exception e) {
if (!status.isCompleted()) {
transactionManager.rollback(status);
}
UserLog userlog = new UserLog();
userlog.setProject(project.getId());
userlog.setType("重新提交解锁订单");
userlog.setInfo("url:reSubmitUnlockBill,详细错误:" + e.getMessage() + ",订单号" + bill.getBillId());
userlog.setHostId("未知");
userlog.setSn(null == webUserInfo.getUniqueId() ? null : webUserInfo.getUniqueId());
LogUtil.userlog(sqlSession, userlog);
retMap.put("retMsg", "服务端出现未知错误,请联系管理员");
return retMap;
} finally {
if (!status.isCompleted()) {
transactionManager.rollback(status);
}
}
}
use of com.itrus.portal.db.UserLog in project portal by ixinportal.
the class UnlockKeyBillController method submitUnlockBill.
/**
* 提交解锁订单
* @param productId,购买产品的id
* @param certSn
* @param keySn
* @param einvoice
* @param proxy
* @param request
* @return
*/
@RequestMapping("/submitUnlockBill")
@ResponseBody
public Map<String, Object> submitUnlockBill(@RequestParam("productId") Long productId, @RequestParam("certSn") String certSn, @RequestParam("keySn") String keySn, @RequestParam("keyType") String keyType, @RequestParam("enterpriseName") String enterpriseName, @RequestParam("reqCode") String reqCode, @ModelAttribute("einvoice") Einvoice einvoice, @ModelAttribute("userInfo") UserInfo userInfo, @ModelAttribute("enterprise") Enterprise enterprise, @ModelAttribute("proxy") Proxy proxy, HttpServletRequest request) {
Map<String, Object> retMap = new HashMap<String, Object>();
retMap.put("retCode", 0);
HttpSession session = request.getSession();
UserCert userCert = userCertService.getUserCertByCertSn(certSn);
if (StringUtils.isBlank(keySn)) {
retMap.put("retMsg", "key序列号不能为空");
return retMap;
}
if (StringUtils.isBlank(reqCode)) {
retMap.put("retMsg", "解锁请求码不能为空");
return retMap;
}
if (null == userCert) {
retMap.put("retMsg", "该证书未注册,请您先注册");
return retMap;
}
if (StringUtils.isBlank(userCert.getKeySn()) || !keySn.equals(userCert.getKeySn())) {
userCert.setKeySn(keySn);
userCertService.updateByPrimaryKeySelective(userCert);
}
UserInfo webUserInfo = null;
if (null == userInfo || StringUtils.isBlank(userInfo.getmPhone())) {
retMap.put("retMsg", "用户信息不完整,请重新提交");
return retMap;
} else {
webUserInfo = userInfoService.getUserInfoByMphone(userInfo.getmPhone());
}
if (null == webUserInfo) {
retMap.put("retMsg", "手机号:" + userInfo.getmPhone() + ", 尚未注册或者校验通过,请检查您输入的手机号是否正确!");
return retMap;
}
Enterprise enterpriseByName = enterpriseService.getEntByName(enterpriseName);
if (null == enterpriseByName) {
// 若新提交的企业信息为null或者信息不全,则提示
if (null == enterprise || StringUtils.isBlank(enterprise.getEnterpriseName()) || null == enterprise.getEnterpriseNature() || StringUtils.isBlank(enterprise.getEnterpriseSn())) {
retMap.put("retMsg", "企业信息不完整,请重新提交");
return retMap;
} else {
// 保存新增的企业信息
enterprise = enterpriseService.saveOrUpdateEnterprise(enterprise);
// 添加企业-代理人关联关系
UserinfoEnterprise userinfoEnterprise = userInfoEnterpriseServiceImpl.selectOne(enterprise.getId(), webUserInfo.getId());
if (null == userinfoEnterprise) {
userInfoEnterpriseServiceImpl.saveUserInfoEnterprise(webUserInfo.getId(), enterprise.getId());
}
}
} else {
enterprise = enterpriseByName;
}
Product product = productService.getProduct(productId);
if (null == product) {
retMap.put("retMsg", "您选择的产品不存在");
return retMap;
}
if (null == product.getKeyUnlockType()) {
retMap.put("retMsg", "您选择的产品不属于解锁产品,请重新选择");
return retMap;
}
if (null == userCert.getUserinfo() && product.getKeyUnlockType().equals(ComNames.KEY_UNLOCK_TYPE_1)) {
retMap.put("retMsg", "未绑定用户的证书,不能购买自助解锁产品");
return retMap;
}
Bill billOld = billService.getBillWaitingForUnlock(userCert.getId());
if (null != billOld) {
retMap.put("retMsg", "当前证书尚有未解锁的订单,请先在原订单解锁,订单号:" + billOld.getBillId());
return retMap;
}
Project project = projectService.selectByPrimaryKey(product.getProject());
DefaultTransactionDefinition dtd = new DefaultTransactionDefinition();
dtd.setPropagationBehavior(TransactionDefinition.PROPAGATION_REQUIRED);
TransactionStatus status = transactionManager.getTransaction(dtd);
try {
if (StringUtils.isNotBlank(userInfo.getEmail()) && StringUtils.isBlank(webUserInfo.getEmail())) {
webUserInfo.setEmail(userInfo.getEmail());
userInfoService.updateUserInfo(webUserInfo);
}
if (StringUtils.isNotBlank(einvoice.getName()) && null != einvoice.geteReiceipt()) {
einvoice = EinvoiceService.saveEInvoice(webUserInfo.getId(), einvoice);
}
Bill bill = null;
// 生成订单
double billSum = product.getPrice();
bill = billService.saveBill(webUserInfo.getId(), enterprise.getId(), product.getId(), null, null, null == einvoice.getId() ? null : einvoice.getId(), null, product.getProject(), 1, billSum, webUserInfo.getId(), ComNames.BILL_STATUS_1);
bill.setBillId(UniqueIDUtils.genBilUID(bill));
bill.setUnlockUserCert(userCert.getId());
sqlSession.update("com.itrus.portal.db.BillMapper.updateByPrimaryKey", bill);
keyUnlockService.insert(bill.getId(), project.getId(), keySn, certSn, enterpriseName, keyType, "ENROLL", product.getKeyUnlockType() == 1 ? 1 : 2, reqCode);
sqlSession.flushStatements();
if (null != proxy && StringUtils.isNotBlank(proxy.getImgFile())) {
// 保存授权书
proxy = proxyService.saveProxy(enterprise.getId(), webUserInfo.getUniqueId(), bill.getId(), webUserInfo.getId(), proxy, project);
}
transactionManager.commit(status);
retMap.put("billId", bill.getId());
retMap.put("retCode", 1);
// 将用户信息放入session中,避免支付出错
session.setAttribute(ComNames.WEB_USER_INFO, webUserInfo);
// 记录日志
LogUtil.userlog(sqlSession, project.getId(), "购买解锁产品", webUserInfo.getmPhone() + "购买了" + product.getName(), "未知", "", null == webUserInfo.getUniqueId() ? null : webUserInfo.getUniqueId());
return retMap;
} catch (Exception e) {
if (!status.isCompleted())
transactionManager.rollback(status);
UserLog userlog = new UserLog();
userlog.setProject(project.getId());
userlog.setType("购买解锁产品");
userlog.setInfo("url:submitUnlockBill,详细错误:" + e.getMessage());
userlog.setHostId("未知");
userlog.setSn(null == webUserInfo.getUniqueId() ? null : webUserInfo.getUniqueId());
LogUtil.userlog(sqlSession, userlog);
retMap.put("retMsg", "服务端出现未知错误,请联系管理员");
return retMap;
} finally {
if (!status.isCompleted()) {
transactionManager.rollback(status);
}
}
}
use of com.itrus.portal.db.UserLog in project portal by ixinportal.
the class APIService method entAuth.
/**
* 提交企业认证申请
*
* @param authHmac
* hmac签名值,采用HmacSHA1算法
* @param appId
* 应用标识
* @param productId
* 项目产品标识
* @param orderNumber
* 申请流水号,审核拒绝修改提交时必填 (创建申请为空,修改申请不为空)
* @param enterpriseType
* 企业类型 1.企业,2.个体工商户,3.事业单位/政府机关
* @param isThreeInOne
* 是否三证合一
* @param enterpriseName
* 企业名称,事业单位名称
* @param licenseNo
* 营业执照注册号或统一社会信用代码,事业单位法人证书编号
* @param orgCode
* 组织机构代码(三证合一时非必填)
* @param taxNo
* 税务登记证号码(三证合一时非必填,或根据业务需要选填)
* @param legalName
* 法定代表人姓名(根据业务需要选填)
* @param legalCardType
* 证件类型(1代表身份证,2护照,3其他)
* @param legalIdCardNo
* 证件号码
* @param agentName
* 代理人姓名
* @param agentPhone
* 代理人手机号
* @param agentEmail
* 代理人邮箱
* @param agentTelephone
* 代理人固定电话(非必填)
* @param agentCardType
* 证件类型(1代表身份证,2护照,3其他)
* @param agentIdCardNo
* 证件号码
* @return status 1: 表示处理正常, billId: 订单编号, orderNumber: 申请流水号 status 0:
* 表示处理失败, message: 失败原因
*/
@PostMapping(value = "/auth/entAuth")
@ResponseBody
public Map<String, Object> entAuth(@RequestHeader("Content-Signature") String authHmac, @RequestParam(value = "appId", required = true) String appId, @RequestParam(value = "productId", required = true) String productId, @RequestParam(value = "orderNumber", required = false) String orderNumber, @RequestParam(value = "enterpriseType", required = false) String enterpriseType, @RequestParam(value = "isThreeInOne", required = true) boolean isThreeInOne, @RequestParam(value = "enterpriseName", required = false) String enterpriseName, @RequestParam(value = "licenseNo", required = false) String licenseNo, @RequestParam(value = "orgCode", required = false) String orgCode, @RequestParam(value = "taxNo", required = false) String taxNo, @RequestParam(value = "legalName", required = false) String legalName, @RequestParam(value = "legalCardType", required = false) Integer legalCardType, @RequestParam(value = "legalIdCardNo", required = false) String legalIdCardNo, @RequestParam(value = "agentName", required = false) String agentName, @RequestParam(value = "agentPhone", required = false) String agentPhone, @RequestParam(value = "agentEmail", required = false) String agentEmail, @RequestParam(value = "agentTelephone", required = false) String agentTelephone, @RequestParam(value = "agentCardType", required = false) Integer agentCardType, @RequestParam(value = "agentIdCardNo", required = false) String agentIdCardNo, HttpServletRequest request) {
log.error("【APIService 提交申请日志】appId=" + appId + ",productId=" + productId + ",orderNumber=" + orderNumber + ",enterpriseType=" + enterpriseType + ",isThreeInOne=" + isThreeInOne + ",enterpriseName" + enterpriseName + ",licenseNo=" + licenseNo + ",orgCode=" + orgCode + ",taxNo=" + taxNo + ",legalName=" + legalName + ",legalCardType=" + legalCardType + ",legalIdCardNo=" + legalIdCardNo + ",agentName=" + agentName + ",agentPhone=" + agentPhone + ",agentEmail=" + agentEmail + ",agentTelephone=" + agentTelephone + ",agentCardType=" + agentCardType + ",agentIdCardNo=" + agentIdCardNo);
Map<String, Object> result = new HashMap<String, Object>();
result.put("status", 0);
// 验证参数是否完整
if (StringUtils.isEmpty(authHmac) || StringUtils.isEmpty(appId) || StringUtils.isEmpty(productId) || StringUtils.isEmpty(enterpriseType) || StringUtils.isEmpty(enterpriseName) || StringUtils.isEmpty(licenseNo) || StringUtils.isEmpty(agentName) || StringUtils.isEmpty(agentPhone) || StringUtils.isEmpty(agentEmail)) {
result.put("status", 0);
result.put("message", "提交的参数信息不完整");
return result;
}
// 得到对应产品信息
Product product = productService.getProductById(StringTools.getLong(productId)[0]);
if (product == null) {
result.put("status", 0);
result.put("message", "提交的项目产品标识有误");
return result;
}
// 得到应用信息 改成service
Map<String, ApplicationInfo> appInfoMap = CacheCustomer.getAPP_INFO_MAP();
ApplicationInfo applicationInfo = appInfoMap.get(appId);
if (applicationInfo == null) {
ApplicationInfoExample applicationInfoExample = new ApplicationInfoExample();
ApplicationInfoExample.Criteria appInfoExampleCriteria = applicationInfoExample.createCriteria();
appInfoExampleCriteria.andAppIdEqualTo(appId);
applicationInfo = sqlSession.selectOne("com.itrus.portal.db.ApplicationInfoMapper.selectByExample", applicationInfoExample);
}
if (applicationInfo == null) {
result.put("message", "应用标识不存在");
return result;
}
if (!applicationInfo.getAccessIp().contains(request.getRemoteAddr()) && "1".equals(applicationInfo.getIsIpStatus())) {
result.put("status", -1);
result.put("message", "没有此服务权限");
log.error("APIService_AccsessIp : " + request.getRemoteAddr());
return result;
}
// 验证hmac有效性
try {
String macVal = CertService.hmacSha1(applicationInfo.getSecretKey().getBytes(), (appId + productId + orderNumber + enterpriseType + isThreeInOne + enterpriseName + licenseNo + orgCode + taxNo + legalName + legalCardType + legalIdCardNo + agentName + agentPhone + agentEmail + agentTelephone + agentCardType + agentIdCardNo).getBytes("utf-8"));
// sc.getAddressKey()), false);
if (!authHmac.equals("HMAC-SHA1 " + macVal)) {
result.put("status", -2);
result.put("message", "服务密钥错误");
return result;
}
} catch (Exception e) {
result.put("status", -3);
result.put("message", "Hmac验证错误");
e.printStackTrace();
return result;
}
// orderNumber==null true:新建 , false:审核拒绝修改提交
if (StringUtils.isEmpty(orderNumber)) {
UserInfo userInfo = null;
Certification certification = null;
// 获取产品的认证等级需要认证的项
certification = certificationService.getSelectById(product.getAuthentication());
DefaultTransactionDefinition def = new DefaultTransactionDefinition();
def.setPropagationBehavior(TransactionDefinition.PROPAGATION_REQUIRED);
TransactionStatus status = transactionManager.getTransaction(def);
try {
// 判断手机号是否存在
userInfo = userInfoService.getUserInfoByMphone(agentPhone);
if (userInfo != null) {
/*
* result.put("status", 0); result.put("message",
* "该手机号已经存在关联用户"); return result;
*/
} else {
try {
int passNumber = (int) ((Math.random() * 9 + 1) * 10000000);
// 新建用户 随机密码默认
userInfo = userInfoService.registerUserInfo(agentPhone, String.valueOf(passNumber), product.getProject());
} catch (Exception e) {
result.put("status", 0);
result.put("message", "新建用户失败,请重试");
return result;
}
}
/**
* 需要认证的项:0营业执照,1组织机构代码,2税务登记证,3授权书,4法定代表人/经营者 5代理人
*/
Long[] items = StringTools.getLong(certification.getCertItems());
// 保存企业信息
Enterprise enterprise = new Enterprise();
enterprise.setEnterpriseName(enterpriseName);
enterprise.setEnterpriseNature(Integer.parseInt(enterpriseType));
enterprise.setAuthenticationLevel(product.getAuthentication());
enterprise = enterpriseService.saveOrUpdateEnterprise(enterprise);
// 保存代理人信息
userInfo.setEmail(agentEmail);
userInfo.setRealName(agentName);
userInfo = userInfoService.updateUserInfo(userInfo);
// 添加企业-代理人关联关系
userInfoEnterpriseServiceImpl.saveUserInfoEnterprise(userInfo.getId(), enterprise.getId());
// 生成订单
Bill bill = billService.saveBill(userInfo.getId(), enterprise.getId(), product.getId(), null, null, null, null, product.getProject(), 1, product.getPrice(), userInfo.getId(), ComNames.BILL_STATUS_3);
String billId = UniqueIDUtils.genBilUID(bill);
bill.setBillId(billId);
bill.setAppId(appId);
bill.setUid("{}");
bill.setUid0("{}");
bill.setOrderNumber(billId.substring(4, billId.length()));
sqlSession.update("com.itrus.portal.db.BillMapper.updateByPrimaryKey", bill);
sqlSession.flushStatements();
// 保持执照证件信息
// 是否有营业执照信息,默认false没有
boolean hasBl = false;
BusinessLicense businessLicense = new BusinessLicense();
OrgCode org = new OrgCode();
TaxRegisterCert taxregisterCert = new TaxRegisterCert();
IdentityCard identityCard = new IdentityCard();
Agent agent = new Agent();
Proxy proxy = new Proxy();
for (Long item : items) {
if (ComNames.BUSINESS_ITEM.equals(item) && !enterprise.getEnterpriseNature().equals(3)) {
// 事业单位不填写营业执照
hasBl = true;
// 设置企业唯一标识
if (enterprise.getEnterpriseNature().equals(1) || enterprise.getEnterpriseNature().equals(2)) {
// 类型为企业和个体工商户:当三证合一时,企业标识为统一社会信用代码;当非三证合一时,企业标识为营业执照注册号;
enterprise.setEnterpriseSn(licenseNo);
}
// 保存营业执照
businessLicense.setEnterpriseName(enterpriseName);
if (isThreeInOne) {
businessLicense.setBusinessType(1);
} else {
businessLicense.setBusinessType(0);
}
businessLicense.setLicenseNo(licenseNo);
businessLicense = businessService.portSaveBusiness(enterprise.getId(), enterprise.getEnterpriseSn(), bill.getId(), userInfo.getId(), businessLicense, null != businessLicense.getId() ? 2 : 1);
} else if (ComNames.ORG_CODE_ITEM.equals(item)) {
if (hasBl && businessLicense.getBusinessType().equals(1))
// 五证合一企业不用提交组织机构代码、税务登记信息
continue;
if (enterprise.getEnterpriseNature().equals(3)) {
// 类型为政府机关/事业单位:企业标识为组织机构代码
enterprise.setEnterpriseSn(orgCode);
}
// 保存组织机构代码
org.setEnterpriseName(enterpriseName);
org.setOrgCode(orgCode);
org = orgCodeService.saveOrgCode(enterprise.getId(), enterprise.getEnterpriseSn(), bill.getId(), userInfo.getId(), org, null != org.getId() ? 2 : 1);
} else if (ComNames.TAX_CERT_ITEM.equals(item)) {
if (hasBl && businessLicense.getBusinessType().equals(1))
// 五证合一企业不用提交组织机构代码、税务登记信息
continue;
// 保存税务登记证
if (enterprise.getEnterpriseNature().equals(3))
// 事业单位不填写税务登记信息
continue;
taxregisterCert.setEnterpriseName(enterpriseName);
taxregisterCert.setCertNo(taxNo);
taxregisterCert = taxCertService.saveTaxCert(enterprise.getId(), enterprise.getEnterpriseSn(), bill.getId(), userInfo.getId(), taxregisterCert, null != taxregisterCert.getId() ? 2 : 1);
} else if (ComNames.IDENTITY_CARD_ITEM.equals(item)) {
// 保存法定代表人
identityCard.setEnterpriseName(enterpriseName);
identityCard.setName(legalName);
identityCard.setCardType(legalCardType);
identityCard.setIdCode(legalIdCardNo);
identityCard = identityCardService.portSaveIdentityCard(enterprise.getId(), enterprise.getEnterpriseSn(), bill.getId(), userInfo.getId(), identityCard, null != identityCard.getId() ? 2 : 1);
} else if (ComNames.AGENT_ITEM.equals(item)) {
// 保存代理人
agent.setEnterpriseName(enterpriseName);
agent.setName(agentName);
agent.setIdCode(agentIdCardNo);
agent.setCardType(agentCardType);
agent = agentService.portSaveAgent(enterprise.getId(), enterprise.getEnterpriseSn(), bill.getId(), userInfo.getId(), agent, null != agent.getId() ? 2 : 1);
} else if (ComNames.PROXY_ITEM.equals(item)) {
// 保存授权书
proxy = proxyService.portSaveProxy(enterprise.getId(), userInfo.getUniqueId(), bill.getId(), userInfo.getId(), proxy);
}
}
// 更新企业唯一标识
enterprise = enterpriseService.updateEnterpriseSn(enterprise);
transactionManager.commit(status);
// 返回第三方数据
result.put("status", 1);
result.put("billId", bill.getBillId());
result.put("orderNumber", bill.getOrderNumber());
// 记录日志
UserLog userlog = new UserLog();
userlog.setProject(userInfo.getProject());
userlog.setType("购买产品");
userlog.setInfo(userInfo.getmPhone() + "购买了" + product.getName() + ",应用标识:" + appId);
userlog.setHostId("未知");
userlog.setSn(null == userInfo.getUniqueId() ? null : userInfo.getUniqueId());
LogUtil.userlog(sqlSession, userlog);
return result;
} catch (Exception e) {
e.printStackTrace();
if (!status.isCompleted())
transactionManager.rollback(status);
UserLog userlog = new UserLog();
userlog.setProject(product.getProject());
userlog.setType("购买产品");
userlog.setInfo("url:/api/auth/search,应用标识:" + appId + ",详细错误:" + e.getMessage());
userlog.setHostId("未知");
userlog.setSn(null == userInfo.getUniqueId() ? null : userInfo.getUniqueId());
LogUtil.userlog(sqlSession, userlog);
if (e.getMessage().contains("请提交完整") || e.getMessage().contains("请确认输入是否有误")) {
result.put("message", e.getMessage());
return result;
}
result.put("message", "服务端出现未知错误,请联系管理员");
return result;
} finally {
if (!status.isCompleted())
transactionManager.rollback(status);
}
} else {
// 提交企业认证申请(审核拒绝修改提交时)
Bill bill = billService.getBillByOrderNumber(orderNumber);
if (bill == null) {
result.put("message", "申请流水号不存在");
return result;
}
UserInfo userInfo = userInfoService.getUserInfoByBillId(bill.getId());
Enterprise enterprise = enterpriseService.getEnterpriseById(bill.getEnterprise());
if (bill.getBillStatus() != ComNames.BILL_STATUS_4) {
result.put("message", "该订单未审核拒绝");
return result;
}
// 根据订单id获取产品需要认证项,
List<String> certItems = sqlSession.selectList("com.itrus.portal.db.CertificationMapper.selectCertItemsByBillId", bill.getId());
if (null == certItems || certItems.isEmpty()) {
result.put("message", "服务端出现异常,请联系管理员");
return result;
}
// 记录旧的企业唯一标识:
String oldEnterpriseSn = enterprise.getEnterpriseSn();
// 设置企业唯一标识
if (enterpriseType.equals(1) || enterpriseType.equals(2)) {
// 类型为企业和个体工商户:当三证合一时,企业标识为统一社会信用代码;当非三证合一时,企业标识为营业执照注册号;
enterprise.setEnterpriseSn(licenseNo);
}
if (enterpriseType.equals(3)) {
// 类型为政府机关/事业单位:企业标识为组织机构代码
enterprise.setEnterpriseSn(orgCode);
}
// 修改企业名称
enterprise.setEnterpriseName(enterpriseName.replace(" ", ""));
// 修改企业性质
enterprise.setEnterpriseNature(Integer.parseInt(enterpriseType));
DefaultTransactionDefinition def = new DefaultTransactionDefinition();
def.setPropagationBehavior(TransactionDefinition.PROPAGATION_REQUIRED);
TransactionStatus status = transactionManager.getTransaction(def);
try {
// 将参数传入对象
BusinessLicense businessLicense = new BusinessLicense();
OrgCode orgCd = new OrgCode();
TaxRegisterCert taxregisterCert = new TaxRegisterCert();
IdentityCard identityCard = new IdentityCard();
Agent agent = new Agent();
Proxy proxy = new Proxy();
businessLicense.setEnterpriseName(enterpriseName);
if (isThreeInOne) {
businessLicense.setBusinessType(1);
} else {
businessLicense.setBusinessType(0);
}
businessLicense.setLicenseNo(licenseNo);
orgCd.setEnterpriseName(enterpriseName);
orgCd.setOrgCode(orgCode);
taxregisterCert.setEnterpriseName(enterpriseName);
taxregisterCert.setCertNo(taxNo);
identityCard.setEnterpriseName(enterpriseName);
identityCard.setName(legalName);
identityCard.setCardType(legalCardType);
identityCard.setIdCode(legalIdCardNo);
agent.setEnterpriseName(enterpriseName);
agent.setName(agentName);
agent.setIdCode(agentIdCardNo);
agent.setCardType(agentCardType);
// 删除订单关联的旧认证项,新增订单对应的新认证项
billWebService.portSaveBillAuthenticationItems(certItems.get(0), Integer.parseInt(enterpriseType), bill.getId(), businessLicense, orgCd, taxregisterCert, identityCard, agent, proxy, enterprise, userInfo);
// 3、判断该订单对应的企业的认证项是否为通过,若是通过,则重新设置为不通过
if (null != enterprise.getAuthenticationLevel())
enterprise.setAuthenticationLevel(product.getAuthentication());
if (null != enterprise.getHasBl())
enterprise.setHasBl(null);
if (null != enterprise.getHasOrgCode())
enterprise.setHasOrgCode(null);
if (null != enterprise.getHasTaxCert())
enterprise.setHasTaxCert(null);
if (null != enterprise.getHasIdCard())
enterprise.setHasIdCard(null);
if (null != enterprise.getHasAgent())
enterprise.setHasAgent(null);
sqlSession.update("com.itrus.portal.db.EnterpriseMapper.updateByPrimaryKey", enterprise);
bill.setBillStatus(ComNames.BILL_STATUS_3);
sqlSession.update("com.itrus.portal.db.BillMapper.updateByPrimaryKeySelective", bill);
transactionManager.commit(status);
// 企业标识改变后,将旧目录中的图片复制到新目录中
if (!oldEnterpriseSn.equals(enterprise.getEnterpriseSn())) {
CopyFile.copyFile(systemConfigService.getTrustDir().getPath() + File.separator + oldEnterpriseSn, systemConfigService.getTrustDir().getPath() + File.separator + enterprise.getEnterpriseSn());
}
// 判断代理人手机号是否存在 true:把全部订单关联到新手机号用户
UserInfo userInfo1 = userInfoService.getUserInfoByMphone(agentPhone);
if (userInfo1 != null) {
BillExample be = new BillExample();
BillExample.Criteria bec = be.createCriteria();
bec.andUniqueIdEqualTo(userInfo.getId());
List<Bill> billList = sqlSession.selectList("com.itrus.portal.db.BillMapper.selectByExample", be);
// 循环修改订单关联的用户信息
for (Bill b : billList) {
b.setUniqueId(userInfo1.getId());
sqlSession.update("com.itrus.portal.db.BillMapper.updateByPrimaryKeySelective", b);
}
userInfo1.setEnterprise(userInfo.getEnterprise());
sqlSession.update("com.itrus.portal.db.UserInfoMapper.updateByPrimaryKeySelective", userInfo1);
userInfo.setEnterprise(null);
sqlSession.update("com.itrus.portal.db.UserInfoMapper.updateByPrimaryKeySelective", userInfo);
UserinfoEnterpriseExample uee = new UserinfoEnterpriseExample();
UserinfoEnterpriseExample.Criteria ueec = uee.createCriteria();
ueec.andUserInfoEqualTo(userInfo.getId());
List<UserinfoEnterprise> ueList = sqlSession.selectList("com.itrus.portal.db.UserinfoEnterpriseMapper.selectByExample", uee);
for (UserinfoEnterprise ue : ueList) {
ue.setUserInfo(userInfo1.getId());
sqlSession.update("com.itrus.portal.db.UserinfoEnterpriseMapper.updateByPrimaryKeySelective", ue);
}
} else {
userInfo.setmPhone(agentPhone);
sqlSession.update("com.itrus.portal.db.UserInfoMapper.updateByPrimaryKeySelective", userInfo);
}
result.put("status", 1);
result.put("billId", bill.getBillId());
} catch (UserInfoServiceException e) {
if (!status.isCompleted())
transactionManager.rollback(status);
result.put("message", "服务端出现未知错误,请联系管理员");
return result;
} catch (Exception e) {
e.printStackTrace();
if (!status.isCompleted())
transactionManager.rollback(status);
UserLog userlog = new UserLog();
userlog.setType("修改订单");
userlog.setInfo("url:/api/auth/search,应用标识:" + appId + ",详细错误:" + e.getMessage());
userlog.setHostId("未知");
userlog.setProject(userInfo.getProject());
LogUtil.userlog(sqlSession, userlog);
result.put("message", "服务端出现未知错误,请联系管理员");
if (e.getMessage().contains("有误")) {
result.put("message", e.getMessage());
}
return result;
} finally {
if (!status.isCompleted())
transactionManager.rollback(status);
}
return result;
}
}
Aggregations