use of com.itrus.portal.db.Product in project portal by ixinportal.
the class ThirdPartyController method customerService.
/**
* 进入常见问题页面
* @param product
* @param uiModel
* @param request
* @return
*/
@RequestMapping("/s/{product}/help")
public String customerService(@PathVariable("product") String product, Model uiModel, HttpServletRequest request) {
HttpSession session = request.getSession();
Product pro = productService.getProductByproName(product);
if (pro != null) {
// 查询企业客服
EnterpriseQqExample enterprise = new EnterpriseQqExample();
EnterpriseQqExample.Criteria qqEx = enterprise.createCriteria();
qqEx.andProjectIdEqualTo(pro.getProject());
EnterpriseQq enterpriseqq = enterpriseqqService.selectByEnterpriseQq(enterprise);
// 查询发布文件
FileIssueExample fileIssueExample = new FileIssueExample();
FileIssueExample.Criteria cec = fileIssueExample.createCriteria();
cec.andProjectEqualTo(pro.getProject());
List<FileIssue> FileIssues = configServiceImpl.getList(fileIssueExample);
Long questionId = 0L;
ServiceExample serviceExample = new ServiceExample();
ServiceExample.Criteria srCriteria = serviceExample.createCriteria();
serviceExample.clear();
serviceExample.setLimit(null);
srCriteria = serviceExample.createCriteria();
srCriteria.andProjectEqualTo(pro.getProject());
srCriteria.andTypeEqualTo(1);
Service service = questionService.getService(serviceExample);
if (null == service && (enterpriseqq == null || FileIssues.size() == 0)) {
serviceExample.clear();
srCriteria = serviceExample.createCriteria();
srCriteria.andNameEqualTo("缺省项目");
srCriteria.andTypeEqualTo(1);
Service service2 = questionService.getService(serviceExample);
questionId = service2.getId();
} else {
questionId = service.getId();
}
// 查询是否存在
Service service1 = questionService.getService(questionId);
// Service pService = sqlSession.selectOne("com.itrus.portal.db.ServiceMapper.selectByPrimaryKey", service.getParentId());
uiModel.addAttribute("service", service1);
// uiModel.addAttribute("pService", pService);
// 查询子节点
ServiceExample serviceExample2 = new ServiceExample();
ServiceExample.Criteria srCriteria2 = serviceExample2.createCriteria();
serviceExample2.clear();
serviceExample2.setLimit(null);
srCriteria2 = serviceExample2.createCriteria();
srCriteria2.andParentIdEqualTo(questionId);
Map<Long, Service> childSR = questionService.getChildSR(serviceExample2);
uiModel.addAttribute("childSR", childSR);
// 若没有子节点,直接返回
if (childSR == null || childSR.isEmpty()) {
return null;
}
Map<Integer, Long> idMap = new HashMap<>();
// 查询子节点是否包含下级节点
serviceExample2.clear();
srCriteria2 = serviceExample2.createCriteria();
srCriteria2.andParentIdIn(new ArrayList<Long>(childSR.keySet()));
Map<Long, Object> childNumMap = questionService.getChildNumMap(serviceExample2);
// 组装子节点信息
// List<Map<String,Object>> childList = new ArrayList<Map<String, Object>>();
// 对节点按照id顺序排序
List<List<Service>> childrenList = new ArrayList<List<Service>>();
List<Service> typeList = questionService.sortTypesMap(childSR);
List<Service> childList = new ArrayList<Service>();
int i = 1;
for (Service sr : typeList) {
if (childNumMap != null && childNumMap.containsKey(sr.getId())) {
serviceExample2.clear();
serviceExample2.setLimit(null);
srCriteria2 = serviceExample2.createCriteria();
srCriteria2.andParentIdEqualTo(sr.getId());
Map<Long, Service> childMap = questionService.getChildSR(serviceExample2);
childList = questionService.sortTypesMap(childMap);
childrenList.add(childList);
} else {
childrenList.add(childList);
}
idMap.put(i, sr.getId());
i++;
}
uiModel.addAttribute("childNumMap", childNumMap);
uiModel.addAttribute("childrenList", childrenList);
uiModel.addAttribute("idMap", idMap);
uiModel.addAttribute("pid", questionId);
serviceExample2.clear();
srCriteria = serviceExample2.createCriteria();
srCriteria.andTypeEqualTo(2);
srCriteria.andParentIdEqualTo(service1.getId());
List<Service> serviceList1 = questionService.getServiceList(serviceExample2);
Long sId = serviceList1.get(0).getId();
serviceExample2.clear();
srCriteria = serviceExample2.createCriteria();
srCriteria.andTypeEqualTo(3);
srCriteria.andParentIdEqualTo(sId);
List<Service> serviceList2 = questionService.getServiceList(serviceExample2);
Long gsId = serviceList2.get(0).getId();
uiModel.addAttribute("gsid", gsId);
uiModel.addAttribute("tab", "kehufuwu");
if (enterpriseqq != null && enterpriseqq.getId() != null) {
uiModel.addAttribute("eid", enterpriseqq.getId());
session.setAttribute("enterpriseqqE", enterpriseqq.getEnterpriseQqLinks());
}
return "ixinweb/kehufuwu_changjianwenti";
}
uiModel.addAttribute("tab", "kehufuwu");
return "ixinweb/kehufuwu_xuanzexiangmu";
}
use of com.itrus.portal.db.Product in project portal by ixinportal.
the class SubmitReviewServiceImpl method getAuditBill.
/**
* 根据产品list 获取需要送审的订单(状态为3已支付,待审核 的所有订单list)
*
* @param productList
* @return
*/
public Map<Long, List<Bill>> getAuditBill(List<Product> productList) {
Map<Long, List<Bill>> billListMap = new HashMap<Long, List<Bill>>();
if (null != productList && !productList.isEmpty()) {
for (Product product : productList) {
BillExample example = new BillExample();
BillExample.Criteria criteria = example.or();
criteria.andProductEqualTo(product.getId());
criteria.andBillStatusEqualTo(ComNames.BILL_STATUS_3);
// 时间逆序排列
example.setOrderByClause("create_time asc");
List<Bill> billList = sqlSession.selectList("com.itrus.portal.db.BillMapper.selectByExample", example);
if (null != billList && !billList.isEmpty()) {
billListMap.put(product.getId(), billList);
}
}
}
return billListMap;
}
use of com.itrus.portal.db.Product in project portal by ixinportal.
the class SubmitReviewServiceImpl method getProductAppsecret.
/**
* 获取产品在第三方鉴证系统生成的appsecret
*
* @param productId
* @return
*/
public String getProductAppsecret(Long productId) {
Product product = sqlSession.selectOne("com.itrus.portal.db.ProductMapper.selectByPrimaryKey", productId);
String appsecret = product.getAppsecret();
return appsecret;
}
use of com.itrus.portal.db.Product in project portal by ixinportal.
the class SubmitReviewServiceImpl method getAuditProduct.
/**
* 获取需要送审的产品
*
* @return
*/
public List<Product> getAuditProduct() {
List<Product> productList = new ArrayList<Product>();
ProductExample example = new ProductExample();
ProductExample.Criteria criteria = example.or();
criteria.andIsAuthEqualTo(true);
criteria.andAppIdIsNotNull();
criteria.andAppsecretIsNotNull();
productList = sqlSession.selectList("com.itrus.portal.db.ProductMapper.selectByExample", example);
return productList;
}
use of com.itrus.portal.db.Product in project portal by ixinportal.
the class ReviewServiceImpl method agreeBillReview.
/**
* pfx证书,当不要审核的时候,自动生成审核记录
* @param bill
*/
public void agreeBillReview(Bill bill) {
if (null == bill) {
return;
}
// 填充营业执照运营时间
Enterprise enterpriseInBill = enterpriseService.getEnterpriseByBillId(bill.getId());
String soperationStart = null;
String soperationEnd = null;
List<BusinessLicense> oldBusinessLicenses = businessService.getBusinessLicensesNews(bill.getEnterprise());
if (null != oldBusinessLicenses && !oldBusinessLicenses.isEmpty()) {
for (BusinessLicense businessLicense1 : oldBusinessLicenses) {
if (null != businessLicense1.getOperationStart() || null != businessLicense1.getOperationEnd()) {
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
if (null != businessLicense1.getOperationStart()) {
soperationStart = format.format(businessLicense1.getOperationStart());
}
if (null != businessLicense1.getOperationEnd()) {
soperationEnd = format.format(businessLicense1.getOperationEnd());
}
break;
}
}
}
Product product = sqlSession.selectOne("com.itrus.portal.db.ProductMapper.selectByPrimaryKey", bill.getProduct());
DigitalCert cert = sqlSession.selectOne("com.itrus.portal.db.DigitalCertMapper.selectByPrimaryKey", product.getCert());
Certification certification = sqlSession.selectOne("com.itrus.portal.db.CertificationMapper.selectByPrimaryKey", product.getAuthentication());
Project project = billService.getProjectByBillId(bill.getId());
BusinessLicense businessLicense = businessService.getBusinessByBillId(bill.getId(), null);
OrgCode orgCode = orgCodeService.getOrgCodeByBillId(bill.getId(), null);
TaxRegisterCert taxregisterCert = taxCertService.getTaxRegisterCertByBillId(bill.getId(), null);
IdentityCard identityCard = identityCardService.getIdentityCardByBillId(bill.getId(), null);
Agent agent = agentService.getAgentByBillId(bill.getId(), null);
Proxy proxy = proxyService.getProxyByBillId(bill.getId());
// 更新管理员提交的认证项资料信息
DefaultTransactionDefinition def = new DefaultTransactionDefinition();
def.setPropagationBehavior(TransactionDefinition.PROPAGATION_REQUIRED);
TransactionStatus status = transactionManager.getTransaction(def);
try {
Long businessId = null;
Long orgCodeId = null;
Long taxregisterId = null;
Long identityCardId = null;
Long agentId = null;
Long proxyId = null;
// 更新营业执照信息
if (null != businessLicense && null != businessLicense.getId()) {
businessLicense = businessService.updateBusinessLicense(soperationStart, soperationEnd, businessLicense, ComNames.ITEM_STATUS_2, bill.getEnterprise(), bill.getId(), bill.getUniqueId(), null);
businessId = businessLicense.getId();
}
// 更新组织机构代码
if (null != orgCode && null != orgCode.getId()) {
orgCode = orgCodeService.updateOrgCode(orgCode, ComNames.ITEM_STATUS_2, bill.getEnterprise(), bill.getId(), bill.getUniqueId(), null);
orgCodeId = orgCode.getId();
}
// 更新税务登记
if (null != taxregisterCert && null != taxregisterCert.getId()) {
taxregisterCert = taxCertService.updateTaxRegisterCert(taxregisterCert, ComNames.ITEM_STATUS_2, bill.getEnterprise(), bill.getId(), bill.getUniqueId(), null);
taxregisterId = taxregisterCert.getId();
}
// 更新法定代表人
if (null != identityCard && null != identityCard.getId()) {
identityCard = identityCardService.updateIdentityCard(identityCard, ComNames.ITEM_STATUS_2, bill.getEnterprise(), bill.getId(), bill.getUniqueId(), null);
identityCardId = identityCard.getId();
}
// 更新代理人
if (null != agent && null != agent.getId()) {
agent = agentService.updateAgent(agent, ComNames.ITEM_STATUS_2, bill.getEnterprise(), bill.getId(), bill.getUniqueId(), null);
agentId = agent.getId();
}
// 更新授权书
if (null != proxy && null != proxy.getId()) {
proxy = proxyService.updateProxy(proxy, ComNames.ITEM_STATUS_2, bill.getEnterprise(), bill.getId(), bill.getUniqueId(), null, project);
proxyId = proxy.getId();
}
// 设置第一个admin账号
AdminExample adminExample = new AdminExample();
adminExample.setOrderByClause("create_time ASC");
List<Admin> admins = sqlSession.selectList("com.itrus.portal.db.AdminMapper.selectByExample", adminExample);
// 更新企业信息
Enterprise enterprise = enterpriseService.updateEnterprise(bill.getEnterprise(), certification.getId(), businessId, orgCodeId, taxregisterId, identityCardId, agentId);
// 生成认证记录
reviewLogService.saveReviewLog(2, admins.get(0).getId(), 1, null, bill.getEnterprise(), bill.getId(), bill.getUniqueId(), businessId, orgCodeId, taxregisterId, identityCardId, agentId, proxyId);
bill.setCheckTime(new Date());
sqlSession.update("com.itrus.portal.db.BillMapper.updateByPrimaryKey", bill);
transactionManager.commit(status);
} catch (Exception e) {
e.printStackTrace();
} finally {
if (!status.isCompleted())
transactionManager.rollback(status);
}
}
Aggregations