Commit 0af79a4a by 王昆

gsb

parent 152275f7
......@@ -568,7 +568,7 @@ class LaoActionApi extends APIBase {
} else if (obj.apply_stauts == "面试失败") {
parm.apply_stauts = 40;
} else if (obj.apply_stauts == "待签约") {
parm.apply_stauts = 50;
parm.apply_stautses = [45, 50];
} else if (obj.apply_stauts == "签约成功") {
parm.apply_stauts = 60;
}
......
......@@ -66,6 +66,9 @@ class UserlabourService extends ServiceBase {
if (obj.apply_stauts) {
where.apply_stauts = obj.apply_stauts;
}
if (obj.apply_stautses && obj.apply_stautses.length > 0) {
where.apply_stauts = { [this.db.Op.in]: obj.apply_stautses};
}
try {
var sqlwhere = {
......
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