|
@@ -120,10 +120,10 @@ class FilterVideos(object):
|
|
|
"FROM {}" \
|
|
|
"WHERE audit_status = 5" \
|
|
|
"AND applet_rec_status IN (1, 6)" \
|
|
|
- "-- AND open_status = 1" \
|
|
|
- "-- AND payment_status = 0" \
|
|
|
- "-- AND encryption_status != 5" \
|
|
|
- "-- AND transcoding_status = 3" \
|
|
|
+ "AND open_status = 1" \
|
|
|
+ "AND payment_status = 0" \
|
|
|
+ "AND encryption_status is null" \
|
|
|
+ "AND transcoding_status = 3" \
|
|
|
"AND video_id IN {};".format(config_.VIDEO_STATUS, tuple(video_ids))
|
|
|
hologres_helper = HologresHelper()
|
|
|
data = hologres_helper.get_data(sql=sql)
|