Commit bca4d49d by 曹玉玺

调整修复截单异常有异常

parent d799ccc4
#!/bin/bash
FROM registry.cn-beijing.aliyuncs.com/hantang2/node105:v2
#FROM registry.cn-beijing.aliyuncs.com/hantang2/node105:v2
FROM registry.cn-beijing.aliyuncs.com/hantang2/imgshare:81.1.170
MAINTAINER jy "jiangyong@gongsibao.com"
ADD center-order /apps/center-order/
WORKDIR /apps/center-order/
RUN yum install gcc-c++.x86_64 -y
#RUN yum install gcc-c++.x86_64 -y
RUN npm install --unsafe-perm=true --allow-root
CMD ["node","/apps/center-order/main.js"]
......
......@@ -1235,7 +1235,7 @@ class RegCenterOrderService {
applicationStatusList = deliveryContent.applicationStatusList || [];
}
}
if (ab.consultType && ab.consultType == "QYJYTC1" || ab.consultType && ab.consultType == "QYJYTC2" || ab.consultType && ab.consultType == "QYJYTC3" || ab.consultType && ab.consultType == "QYJYTC4") {//公司注册套餐1和公司注册套餐2和公司注册套餐3和公司注册套餐4
if (ab.consultType && ab.consultType == "QYJYTC1" || ab.consultType && ab.consultType == "QYJYTC2" || ab.consultType && ab.consultType == "QYJYTC3" || ab.consultType && ab.consultType == "QYJYTC4" || ab.consultType && ab.consultType == "QYJYTC5") {//公司注册套餐1和公司注册套餐2和公司注册套餐3和公司注册套餐4注册套餐5
if (ab.productType && ab.productType == "GSZZ") {//工商执照
if (ab.ApplicationStatus == 702) {//材料收集环节
if (needsolutioninfo.solutionContent.status != "PAID") {
......@@ -1493,7 +1493,7 @@ class RegCenterOrderService {
deliveryContent.statusName = this.regSolutionStatus.SUCCESS;
}
}
if (ab.consultType && ab.consultType == "QYJYTC1" || ab.consultType && ab.consultType == "QYJYTC2" || ab.consultType && ab.consultType == "QYJYTC3" || ab.consultType && ab.consultType == "QYJYTC4") {//公司注册套餐1和公司注册套餐2和公司注册套餐3和公司注册套餐4
if (ab.consultType && ab.consultType == "QYJYTC1" || ab.consultType && ab.consultType == "QYJYTC2" || ab.consultType && ab.consultType == "QYJYTC3" || ab.consultType && ab.consultType == "QYJYTC4" || ab.consultType && ab.consultType == "QYJYTC5") {//公司注册套餐1和公司注册套餐2和公司注册套餐3和公司注册套餐4公司注册套餐5
if (ab.consultType == "QYJYTC1") {
bizTypeName = "企业经营套餐一"
}
......@@ -1506,6 +1506,9 @@ class RegCenterOrderService {
if (ab.consultType == "QYJYTC4") {
bizTypeName = "企业经营套餐四"
}
if (ab.consultType == "QYJYTC5") {
bizTypeName = "企业经营套餐五"
}
switch (productType) {
case "GSZZ":
deliveryContent['GSZZ'] = {
......@@ -1693,4 +1696,4 @@ class RegCenterOrderService {
}
}
module.exports = RegCenterOrderService;
\ No newline at end of file
module.exports = RegCenterOrderService;
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