Commit 4a8b135c by 宋毅

tj

parent 2a61bb8a
...@@ -241,9 +241,9 @@ class OrderTmProductService extends ServiceBase { ...@@ -241,9 +241,9 @@ class OrderTmProductService extends ServiceBase {
sourceType: tm.sourceType || "00", sourceType: tm.sourceType || "00",
picUrl: tm.picUrl || null,//商标图样 picUrl: tm.picUrl || null,//商标图样
colorizedPicUrl: tm.colorizedPicUrl || null,//商标彩色图样 colorizedPicUrl: tm.colorizedPicUrl || null,//商标彩色图样
sywjUrl: tm.sywjUrl || null,//声音文件 sywjUrl: apply.sywjUrl || null,//声音文件
gzwtsUrl: tm.gzwtsUrl || null,//盖章委托书 gzwtsUrl: apply.gzwtsUrl || null,//盖章委托书
smwjUrl: tm.smwjUrl || null,//说明文件 smwjUrl: apply.smwjUrl || null,//说明文件
channelUserId: channelUser.channelUserId,// 渠道用户id channelUserId: channelUser.channelUserId,// 渠道用户id
createuser_id: user.id,// createuser_id: user.id,//
createuser: user.nickname,// createuser: user.nickname,//
...@@ -253,7 +253,7 @@ class OrderTmProductService extends ServiceBase { ...@@ -253,7 +253,7 @@ class OrderTmProductService extends ServiceBase {
}; };
var flowContent = ""; var flowContent = "";
if (apply.customerType == "person") { if (apply.customerType == "person") {
if (!apply.businessLicensePic || !apply.identityCardPic || !tm.gzwtsUrl) { if (!apply.businessLicensePic || !apply.identityCardPic || !apply.gzwtsUrl) {
orderProductObj["deliveryStatus"] = "dsccl"; orderProductObj["deliveryStatus"] = "dsccl";
flowContent = channelOrder.payStatus == "yfk" ? "订单已付款待上传材料" : "订单已创建待付款"; flowContent = channelOrder.payStatus == "yfk" ? "订单已付款待上传材料" : "订单已创建待付款";
} else { } else {
...@@ -262,7 +262,7 @@ class OrderTmProductService extends ServiceBase { ...@@ -262,7 +262,7 @@ class OrderTmProductService extends ServiceBase {
} }
} }
if (apply.customerType == "ent") { if (apply.customerType == "ent") {
if (!apply.businessLicensePic || !tm.gzwtsUrl) { if (!apply.businessLicensePic || !apply.gzwtsUrl) {
orderProductObj["deliveryStatus"] = "dsccl"; orderProductObj["deliveryStatus"] = "dsccl";
flowContent = channelOrder.payStatus == "yfk" ? "订单已付款待上传材料" : "订单已创建待付款"; flowContent = channelOrder.payStatus == "yfk" ? "订单已付款待上传材料" : "订单已创建待付款";
} else { } else {
......
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