Commit ca858126 by sxy

fix: 商机推送添加限制

parent bea7828a
......@@ -25,6 +25,9 @@ class UtilsFgbusinesschancService extends AppServiceBase {
if (!Array.isArray(actionBody.businessData)) {
return system.getResult(null, "actionBody.businessData should be Array,100290");
}
if (actionBody.businessType === "关联推荐" && !actionBody.customerType) {
return system.getResult(null, "关联推荐时,customerType不能为空");
}
var self = this;
var reqUrl = this.centerOrderUrl + "action/fgbusinesschance/springBoard";
......
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