Commit e5cb0c90 by 兰国旗

添加银行开户和税务报道逻辑判断

parent 4575dae7
...@@ -1471,6 +1471,13 @@ class RegCenterOrderService { ...@@ -1471,6 +1471,13 @@ class RegCenterOrderService {
} }
} }
} }
if (ab.productType && ab.productType == "YHKH" || ab.productType == "SWBD") {//银行开户、税务报道:有已接单,已完成状态
if (ab.ApplicationStatus == 705) {//服务中
if (deliveryContent[ab.productType].channelStatus == "SUCCESS") {
return system.getResultFail(-707, "该方案已完成,不可更改");
}
}
}
if (ab.productType && ab.productType == "DLJZ") {//代理记账:有已接单,服务中,已完成状态 if (ab.productType && ab.productType == "DLJZ") {//代理记账:有已接单,服务中,已完成状态
if (ab.ApplicationStatus == 706) {//服务中 if (ab.ApplicationStatus == 706) {//服务中
if (deliveryContent[ab.productType].channelStatus == "SUCCESS") { if (deliveryContent[ab.productType].channelStatus == "SUCCESS") {
......
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