示例#1
0
 function salvar($post, $file, $tipo)
 {
     if (!empty($post['consorcio']) && !empty($post['empresa']) && !empty($post['valor'])) {
         $DAO = new AnexoItemDAO();
         $anexoItem = new AnexoItem();
         $anexoItem->setEmpresa($post['empresa']);
         $anexoItem->setIdAnexo($post['anexo']);
         $anexoItem->setIdEmpresa($post['consorcio']);
         $anexoItem->setMedicaoItem($post['item']);
         $anexoItem->setPessoa($post['pessoa']);
         $anexoItem->setProduto($post['produto']);
         $anexoItem->setDataViagem($post['data']);
         $anexoItem->setNfRecibo($post['nf']);
         $anexoItem->setValor($post['valor']);
         $anexoItem->setMoeda($post['moeda']);
         $anexoItem->setDataVolta($post['data_volta']);
         $anexoItem->setQuantidade($_POST['quantidade']);
         $anexoItem->setDataNF($post['data_nf']);
         $anexoItem->setTipo($tipo);
         $uploadDir = '../../arquivos/medicao/';
         $name = sha1(date("d-m-Y H:i:s"));
         $uploadFile = $uploadDir . $name;
         $extension = pathinfo($file['name'], PATHINFO_EXTENSION);
         $uploadFile = $uploadFile . '.' . $extension;
         $name = $name . '.' . $extension;
         $anexoItem->setFile($name);
         //Fazer o Upload do arquivo
         if (move_uploaded_file($file['tmp_name'], $uploadFile)) {
             $anexoItem->getTipo() == 'A' ? $anexoItem->setStatus('S') : $anexoItem->setStatus('N');
             $request = $DAO->Gravar($anexoItem);
             if ($request) {
                 // 					$request = $DAO->AtualizarValorAcumulado($anexoItem, TRUE); n�o est� atualizando o item da medi��o
                 connectSQL();
                 $query = mysql_query("CALL sp_alterar_item_medicao(" . $anexoItem->getMedicaoItem() . ", " . $anexoItem->getValor() . ", " . $anexoItem->getQuantidade() . ", TRUE, 0)");
                 if ($anexoItem->getTipo() == 'A') {
                     echo '<script language= "JavaScript">alert("Registro gravado com sucesso.");</script>';
                 } else {
                     $msg = utf8_encode("O comprovante foi cadastrado, por�m est� bloqueado para aprova��o de um superior..");
                     echo '<script language= "JavaScript">alert("' . $msg . '");</script>';
                 }
                 echo '<script language= "JavaScript">location.href="anexoItem.php?id=' . $post['anexo'] . '&medicao=' . $post['medicao'] . '";</script>';
             } else {
                 echo '<script language= "JavaScript">alert("Error ao salvar, entre em contato com a TI.");</script>';
             }
         } else {
             echo '<script language= "JavaScript">alert("Error so subir o arquivo");</script>';
         }
     } else {
         echo '<script language= "JavaScript">alert("Error ");</script>';
         echo '<script language= "JavaScript">location.href="anexoItem.php?id=' . $post['anexo'] . '&medicao=' . $post['medicao'] . '";</script>';
     }
 }
示例#2
0
 $anexoItem->setPessoa($_POST['pessoa']);
 $anexoItem->setProduto($_POST['produto']);
 $anexoItem->setQuantidade($_POST['quantidade']);
 $anexoItem->setValor($_POST['valor']);
 $anexoItem->setMedicaoItem($_POST['medicao_item']);
 $anexoItem->setDataNF($_POST['data_nf']);
 $anexoItem->setIdAnexo($_POST['anexo']);
 //$query = mysql_query("CALL sp_alterar_item_medicao(".$anexoItem->getMedicaoItem().", ".$anexoItem->getValor().", ".$anexoItem->getQuantidade().", TRUE, ".$anexoItem->getId().")");
 if ($_FILES['files']['error'] != UPLOAD_ERR_NO_FILE) {
     $uploadDir = '../../arquivos/medicao/';
     $name = sha1(date("d-m-Y H:i:s"));
     $uploadFile = $uploadDir . $name;
     $extension = pathinfo($_FILES['files']['name'], PATHINFO_EXTENSION);
     $uploadFile = $uploadFile . '.' . $extension;
     $name = $name . '.' . $extension;
     $anexoItem->setFile($name);
     $request = mysql_query("SELECT * FROM " . MYSQL_BASE_MEDICAO_ANEXO_ITENS . " WHERE status = 'S' AND nf_recibo = " . $anexoItem->getNfRecibo() . " AND id != " . $anexoItem->getId());
     //$num = mysql_num_rows($request);
     $num = 0;
     if ($num == 0) {
         //Fazer o Upload do arquivo
         if (move_uploaded_file($_FILES['files']['tmp_name'], $uploadFile)) {
             $arquivo_res = $DAO->Listar("SELECT * FROM " . MYSQL_BASE_MEDICAO_ANEXO_ITENS . " WHERE id = " . $anexoItem->getId());
             $nome_arquivo = "";
             foreach ($arquivo_res as $row_arquivo) {
                 $nome_arquivo = $row_arquivo['file'];
             }
             $Arquivo_res = $DAO->AtualizarArquivoItem($anexoItem);
             if ($Arquivo_res == false) {
                 unlink("../../arquivos/medicao/" . $anexoItem->getFile());
                 $msg = utf8_encode("Não foi possivel salvar essa edição, pois o sistema não conseguiu subir o arquivo, favor entrar em contato com a TI.");