adding an instance id to the playout history table.

This commit is contained in:
Naomi 2013-08-28 17:15:36 -04:00
parent 5fbc3867f8
commit 5aa983be36
12 changed files with 917 additions and 14 deletions

View file

@ -422,6 +422,11 @@ class Application_Service_HistoryService
"history" => $rows
);
}
public function getShowList($startDT, $endDT, $opts)
{
}
public function insertPlayedItem($schedId) {
@ -447,6 +452,7 @@ class Application_Service_HistoryService
$history->setDbFileId($fileId);
$history->setDbStarts($item->getDbStarts(null));
$history->setDbEnds($item->getDbEnds(null));
$history->setDbInstanceId($item->getDbInstanceId());
foreach ($metadata as $key => $val) {
$meta = new CcPlayoutHistoryMetaData();