Пример #1
0
 public function actionCreate($id)
 {
     if ($good = $this->goods->get($id)) {
         $saleId = $this->sale->insert(['goods_id' => $id, 'enable' => 0, 'color' => '#333333', 'bgcolor' => '#FFFFF8', 'border' => '#FFFF33', 'start' => new \DateTime('now')]);
         $this->flashMessage('Akce k výrobku ' . $good->manufacturer->name . ' ' . $good->name . ' byla vytvořena.', 'success');
         $this->redirect('edit', $saleId);
     } else {
         $this->flashMessage('Vytvoření akce selhalo.', 'danger');
         $this->redirect('default');
     }
 }