Commit af6e6eb8 by 王勇飞

bizopt api fix

parent 49dfdf32
......@@ -25,7 +25,7 @@ class BizoptDao extends Dao {
if (qobj.bizpath && qobj.bizpath != "") {
if (qobj.bizpath.indexOf("demandAllocation") > 0) {//从需求分配列表过来的
qw["business_status"] = {
[this.db.Op.eq]: "pending"
[this.db.Op.eq]: "received"
};
}
if (qobj.bizpath.indexOf("demandfollow") > 0) {//从需求跟进列表过来的
......@@ -35,7 +35,7 @@ class BizoptDao extends Dao {
}
if (qobj.bizpath.indexOf("distributionManagement") > 0) {//从分配记录列表过来的
qw["business_status"] = {
[this.db.Op.ne]: "pending"
[this.db.Op.ne]: "received"
};
}
}
......
......@@ -17,7 +17,7 @@ module.exports = {
},
"bizoptStatus": {//财税需求状态
"pending": "待处理",
"received": "待处理",
"beforeFollowUp": "待跟进",
"followingUp": "跟进中",
"beforeSubmission": "待确认方案",
......
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