/**
  * Deletes an existing Pagamento model.
  * If deletion is successful, the browser will be redirected to the 'index' page.
  * @param integer $idConta
  * @param integer $idPedido
  * @return mixed
  */
 public function actionDelete($idConta, $idPedido)
 {
     //Guarda a mensagem
     $mensagem = "";
     $transaction = \Yii::$app->db->beginTransaction();
     try {
         if ($this->findModel($idConta, $idPedido)->delete()) {
             $transaction->commit();
         }
     } catch (\Exception $exception) {
         $transaction->rollBack();
         $mensagem = "Ocorreu uma falha inesperada ao tentar salvar ";
     }
     $searchModel = new PagamentoSearch();
     $dataProvider = $searchModel->search(Yii::$app->request->queryParams);
     return $this->render('index', ['searchModel' => $searchModel, 'dataProvider' => $dataProvider, 'mensagem' => $mensagem]);
 }
 public function actionPdfpagamento($id = null)
 {
     if ($id != null) {
         $searchPagamento = new PagamentoSearch();
         $modelRelatorio = $this->findModel($id);
         $dadosPagamento = $searchPagamento->searchPagamentosContasAReceberPorPeriodo($modelRelatorio->inicio_intervalo, $modelRelatorio->fim_intervalo);
         //         Setando a data para o fuso do Brasil
         date_default_timezone_set('America/Sao_Paulo');
         $pdf = new Pdf(['mode' => Pdf::MODE_UTF8, 'content' => $this->renderPartial('pdfpagamento', ['modelRelatorio' => $modelRelatorio, 'dadosPagamento' => $dadosPagamento]), 'options' => ['title' => 'Relatório de Pagamentos'], 'methods' => ['SetHeader' => ['Gerado pelo Componente "Krajee Pdf" ||Gerado em: ' . date('d/m/Y h:m:s')], 'SetFooter' => ['|Página {PAGENO}|']]]);
         return $pdf->render();
     } else {
         $searchModel = new RelatorioSearch();
         $dataProvider = $searchModel->search(Yii::$app->request->queryParams);
         return $this->render('index', ['searchModel' => $searchModel, 'dataProvider' => $dataProvider]);
     }
 }