Commit 9aceebd2 by 庄冰

tmdao

parent 2a6c99a1
...@@ -46,7 +46,12 @@ class TrademarkDao extends Dao { ...@@ -46,7 +46,12 @@ class TrademarkDao extends Dao {
} }
else { else {
//----平台的运营人员可以看全部的商标信息 //----平台的运营人员可以看全部的商标信息
w["channelPayStatus"] = "yzf"; var whereArray = [];
whereArray.push({ [this.db.Op.and]: [{ channelPayStatus: "yzf" }] });
whereArray.push({ [this.db.Op.and]: [{ channelPayStatus: "wzf" },{ tmSourceType: "32" }] });
w[this.db.Op.or] = whereArray;
//----平台的运营人员可以看全部的商标信息
// w["channelPayStatus"] = "yzf";
} }
} }
return w; return w;
......
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