|
@@ -66,7 +66,7 @@ function M.search(msg_body)
|
|
"page_size",
|
|
"page_size",
|
|
"page_number",
|
|
"page_number",
|
|
"dy_id",
|
|
"dy_id",
|
|
-"d_z","comment","collect","forward","status","signature","dy_id_1","artificial_status"},msg_body)
|
|
|
|
|
|
+"d_z","comment","collect","forward","status","signature","dy_id_1","artificial_status","machine_review_status"},msg_body)
|
|
if not isok then
|
|
if not isok then
|
|
return false,string.format("缺少字段: %s.", key)
|
|
return false,string.format("缺少字段: %s.", key)
|
|
end
|
|
end
|
|
@@ -131,6 +131,11 @@ function M.search(msg_body)
|
|
artificial_status_param = " AND artificial_status = "..msg_body.artificial_status.." "
|
|
artificial_status_param = " AND artificial_status = "..msg_body.artificial_status.." "
|
|
end
|
|
end
|
|
|
|
|
|
|
|
+ local machine_review_status_param = ""
|
|
|
|
+ if msg_body.machine_review_status~="" then
|
|
|
|
+ machine_review_status_param = " AND machine_review_status = "..msg_body.machine_review_status.." "
|
|
|
|
+ end
|
|
|
|
+
|
|
local signature_param = ""
|
|
local signature_param = ""
|
|
if msg_body.signature~="" then
|
|
if msg_body.signature~="" then
|
|
signature_param = string.format("AND signature = '%s' ",msg_body.signature)
|
|
signature_param = string.format("AND signature = '%s' ",msg_body.signature)
|
|
@@ -237,7 +242,7 @@ function M.search(msg_body)
|
|
|
|
|
|
local new_param = stat_cost_param..show_cnt_param..click_cnt_param..convert_cnt_param..cvr_param..ctr_param
|
|
local new_param = stat_cost_param..show_cnt_param..click_cnt_param..convert_cnt_param..cvr_param..ctr_param
|
|
-----
|
|
-----
|
|
- local param = date_param..product_param..oce_material_param..status_param..tg_platform_param..sync_status_param..product_name_param..is_auto_param..material_id_param..signature_param..dy_id_1_param..artificial_status_param
|
|
|
|
|
|
+ local param = date_param..product_param..oce_material_param..status_param..tg_platform_param..sync_status_param..product_name_param..is_auto_param..material_id_param..signature_param..dy_id_1_param..artificial_status_param..machine_review_status_param
|
|
|
|
|
|
local up_down_param = d_z_param..comment_param..forward_param..collect_param..new_param
|
|
local up_down_param = d_z_param..comment_param..forward_param..collect_param..new_param
|
|
|
|
|