CC-4882: Scheduled item does not take into account cue_out - cue_in time

-fixed
This commit is contained in:
denise 2013-01-28 14:21:11 -05:00
parent 2ef8604c31
commit f1215c10fd
2 changed files with 13 additions and 2 deletions

View file

@ -1285,6 +1285,14 @@ SQL;
}
}
}
public function getRealClipLength($p_cuein, $p_cueout) {
$sql = "SELECT :cueout::INTERVAL - :cuein::INTERVAL";
return Application_Common_Database::prepareAndExecute($sql, array(
':cueout' => $p_cueout,
':cuein' => $p_cuein), 'column');
}
}
class DeleteScheduledFileException extends Exception {}