Commit 668018a5 by 蒋勇

添加套餐3.4.5的处理

parent de0b900c
......@@ -1142,6 +1142,17 @@ class RegCenterOrderService {
if (ab.consultType == "QYJYTC2") {
bizTypeName = "企业经营套餐二"
}
if (ab.consultType == "QYJYTC3") {
bizTypeName = "企业经营套餐三"
}
if (ab.consultType == "QYJYTC4") {
bizTypeName = "企业经营套餐四"
}
if (ab.consultType == "QYJYTC5") {
bizTypeName = "企业经营套餐五"
}
//判断是否有交付信息
if (orderdeliveryInfo[0] && orderdeliveryInfo[0].deliveryContent) {
deliveryContent = orderdeliveryInfo[0].deliveryContent;
......@@ -1225,7 +1236,9 @@ class RegCenterOrderService {
applicationStatusList = deliveryContent.applicationStatusList || [];
}
}
if (ab.consultType && ab.consultType == "QYJYTC1" || ab.consultType && ab.consultType == "QYJYTC2") {//公司注册套餐1和公司注册套餐2
//公司注册套餐1和公司注册套餐2/3/4/5
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")
{
if (ab.productType && ab.productType == "GSZZ") {//工商执照
if (ab.ApplicationStatus == 702) {//材料收集环节
if (needsolutioninfo.solutionContent.status != "PAID") {
......@@ -1483,13 +1496,14 @@ class RegCenterOrderService {
deliveryContent.statusName = this.regSolutionStatus.SUCCESS;
}
}
if (ab.consultType && ab.consultType == "QYJYTC1" || ab.consultType && ab.consultType == "QYJYTC2") {//公司注册套餐1和公司注册套餐2
if (ab.consultType == "QYJYTC1") {
bizTypeName = "企业经营套餐一"
}
if (ab.consultType == "QYJYTC2") {
bizTypeName = "企业经营套餐二"
}
//公司注册套餐1和公司注册套餐2
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"){
// if (ab.consultType == "QYJYTC1") {
// bizTypeName = "企业经营套餐一"
// }
// if (ab.consultType == "QYJYTC2") {
// bizTypeName = "企业经营套餐二"
// }
switch (productType) {
case "GSZZ":
deliveryContent['GSZZ'] = {
......
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