Updated Show services to account for added show instance description field
This commit is contained in:
parent
2630d88a03
commit
0789de9392
2 changed files with 16 additions and 4 deletions
|
@ -141,9 +141,17 @@ class Application_Service_ShowService
|
|||
|
||||
$ccShowInstance->updateDbTimeFilled($con);
|
||||
$ccShowInstance->updateScheduleStatus($con);
|
||||
$ccShowInstance
|
||||
->setDbDescription($showData['add_show_instance_description'])
|
||||
->save();
|
||||
|
||||
|
||||
|
||||
//delete the edited instance from the repeating sequence
|
||||
$ccShowInstanceOrig->setDbModifiedInstance(true)->save();
|
||||
$ccShowInstanceOrig
|
||||
->setDbModifiedInstance(true)
|
||||
->setDbDescription($showData['add_show_instance_description'])
|
||||
->save();
|
||||
|
||||
$con->commit();
|
||||
Application_Model_RabbitMq::PushSchedule();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue