Commit 74f34c2c by linboxuan

Merge branch 'center-order' of http://gitlab.gongsibao.com/jiangyong/zhichan into center-order

parents 54f082ed 266adfa4
......@@ -1067,6 +1067,11 @@ class OrderInfoService extends ServiceBase {
sqlCount += " and channelItemName like :channelItemName";
paramWhere.channelItemName = "%" + actionBody.channelItemName.trim() + "%";
}
if (actionBody.typeCode) {
sql += " and pathCode like :typeCode";
sqlCount += " and pathCode like :typeCode";
paramWhere.typeCode = "/" + actionBody.typeCode.trim() + "/%";
}
if (actionBody.channelServiceNo) {
sql += " and channelServiceNo like :channelServiceNo";
sqlCount += " and channelServiceNo like :channelServiceNo";
......
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