Commit 6746452c by 任晓松

update

parent e8fc4e82
...@@ -314,7 +314,7 @@ class NeedinfoService extends ServiceBase { ...@@ -314,7 +314,7 @@ class NeedinfoService extends ServiceBase {
} }
let tag = actionBody.tag; let tag = actionBody.tag;
//需求列表 //需求列表
let needSql = `select b.app_name,DISTINCT(a.needNo),a.channelNeedNo,a.typeName,a.province,a.city,a.publishContent,a.publishName,a.publishMobile,a.statusName,a.created_at from center_order.n_need_info a left join center_app.p_app b on a.uapp_id = b.uapp_id where a.deleted_at is null`; let needSql = `select DISTINCT(a.needNo),b.app_name,a.channelNeedNo,a.typeName,a.province,a.city,a.publishContent,a.publishName,a.publishMobile,a.statusName,a.created_at from center_order.n_need_info a left join center_app.p_app b on a.uapp_id = b.uapp_id where a.deleted_at is null`;
//需求总数 //需求总数
let needTotalSql = `select count(DISTINCT(a.needNo)) count from center_order.n_need_info a left join center_app.p_app b on a.uapp_id = b.uapp_id where a.deleted_at is null`; let needTotalSql = `select count(DISTINCT(a.needNo)) count from center_order.n_need_info a left join center_app.p_app b on a.uapp_id = b.uapp_id where a.deleted_at is null`;
//需求成单 //需求成单
......
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