private static function updateRoughcutEntry($roughcut_id, $roughcut_version, $roughcut_kshow_id, $entry_id, $op_type)
 {
     $roughcut_entry = new roughcutEntry();
     $roughcut_entry->setRoughcutId($roughcut_id);
     $roughcut_entry->setRoughcutVersion($roughcut_version);
     $roughcut_entry->setRoughcutKshowId($roughcut_kshow_id);
     $roughcut_entry->setEntryId($entry_id);
     $roughcut_entry->setOpType($op_type);
     $roughcut_entry->save();
 }