|
@@ -467,12 +467,12 @@ public class orderclue extends Controller {
|
|
|
if (logtype.contains("跟进")) {
|
|
|
updateStatus(id, "跟进中");
|
|
|
//线索跟进
|
|
|
- dbConnect.runSqlUpdate(DataContrlLog.createLog(this, "sat_orderclue", id, "跟进", "线索跟进" + enterprisename));
|
|
|
+ dbConnect.runSqlUpdate(DataContrlLog.createLog(this, "sat_orderclue", id, "跟进", "线索跟进" + enterprisename).getSQL());
|
|
|
|
|
|
} else if (logtype.contains("无效")) {
|
|
|
updateStatus(id, "已无效");
|
|
|
//线索无效
|
|
|
- dbConnect.runSqlUpdate(DataContrlLog.createLog(this, "sat_orderclue", id, "无效", "线索无效" + enterprisename));
|
|
|
+ dbConnect.runSqlUpdate(DataContrlLog.createLog(this, "sat_orderclue", id, "无效", "线索无效" + enterprisename).getSQL());
|
|
|
}
|
|
|
|
|
|
Rows rows = dbConnect.runSqlQuery("SELECT * from sat_ordercluefollowuplog WHERE sat_ordercluefollowuplogid = " + sat_ordercluefollowuplogid);
|