app/Controller/AviseMeController.php 1 location
|
@@ 33-48 (lines=16) @@
|
30 |
|
$this->layout = 'wadmin'; |
31 |
|
} |
32 |
|
|
33 |
|
public function excluir_cadastro($id) |
34 |
|
{ |
35 |
|
$this->loadModel('AviseMe'); |
36 |
|
$this->layout = 'ajax'; |
37 |
|
|
38 |
|
$id = $this->request->data('id'); |
39 |
|
|
40 |
|
$dados = array ('ativo' => '0'); |
41 |
|
$parametros = array ('id' => $id); |
42 |
|
|
43 |
|
if ($this->AviseMe->updateAll($dados, $parametros)) { |
44 |
|
echo json_encode(true); |
45 |
|
} else { |
46 |
|
echo json_encode(false); |
47 |
|
} |
48 |
|
} |
49 |
|
|
50 |
|
/** |
51 |
|
* @return boolean |
app/Controller/ConsultaController.php 1 location
|
@@ 18-32 (lines=15) @@
|
15 |
|
$this->layout = 'wadmin'; |
16 |
|
} |
17 |
|
|
18 |
|
function excluir_consulta() { |
19 |
|
$this->layout = 'ajax'; |
20 |
|
|
21 |
|
$id = $this->request->data('id'); |
22 |
|
$this->loadModel('Consulta'); |
23 |
|
|
24 |
|
$dados = array ('ativo' => '0'); |
25 |
|
$parametros = array ('id' => $id); |
26 |
|
|
27 |
|
if ($this->Consulta->updateAll($dados,$parametros)) { |
28 |
|
echo json_encode(true); |
29 |
|
} else { |
30 |
|
echo json_encode(false); |
31 |
|
} |
32 |
|
} |
33 |
|
|
34 |
|
} |
app/Controller/BannerController.php 1 location
|
@@ 152-165 (lines=14) @@
|
149 |
|
return array('nome' => $nameImage, 'status' => true); |
150 |
|
} |
151 |
|
|
152 |
|
public function excluir_cadastro() { |
153 |
|
$this->layout = 'ajax'; |
154 |
|
|
155 |
|
$id = $this->request->data('id'); |
156 |
|
|
157 |
|
$dados = array ('ativo' => '0'); |
158 |
|
$parametros = array ('id' => $id); |
159 |
|
|
160 |
|
if ($this->Banner->updateAll($dados, $parametros)) { |
161 |
|
echo json_encode(true); |
162 |
|
} else { |
163 |
|
echo json_encode(false); |
164 |
|
} |
165 |
|
} |
166 |
|
|
167 |
|
} |
app/Controller/VendaController.php 1 location
|
@@ 466-479 (lines=14) @@
|
463 |
|
return json_encode($resposta); |
464 |
|
} |
465 |
|
|
466 |
|
public function excluir_cadastro() { |
467 |
|
$this->layout = 'ajax'; |
468 |
|
|
469 |
|
$id = $this->request->data('id'); |
470 |
|
|
471 |
|
$dados = array('ativo' => '0'); |
472 |
|
$parametros = array('id' => $id); |
473 |
|
|
474 |
|
if ($this->Venda->updateAll($dados, $parametros)) { |
475 |
|
echo json_encode(true); |
476 |
|
} else { |
477 |
|
echo json_encode(false); |
478 |
|
} |
479 |
|
} |
480 |
|
|
481 |
|
public function imprimir_nota_nao_fiscal($id) { |
482 |
|
$this->loadModel('LancamentoVenda'); |
app/Controller/ClienteController.php 1 location
|
@@ 46-59 (lines=14) @@
|
43 |
|
} |
44 |
|
} |
45 |
|
|
46 |
|
function excluir_cliente() { |
47 |
|
$this->layout = 'ajax'; |
48 |
|
|
49 |
|
$id = $this->request->data('id'); |
50 |
|
|
51 |
|
$dados = array ('ativo' => '0'); |
52 |
|
$parametros = array ('id' => $id); |
53 |
|
|
54 |
|
if ($this->Cliente->updateAll($dados,$parametros)) { |
55 |
|
echo json_encode(true); |
56 |
|
} else { |
57 |
|
echo json_encode(false); |
58 |
|
} |
59 |
|
} |
60 |
|
|
61 |
|
function listar_cadastros() { |
62 |
|
$this->layout = 'wadmin'; |
app/Controller/ProdutoController.php 1 location
|
@@ 459-472 (lines=14) @@
|
456 |
|
} |
457 |
|
} |
458 |
|
|
459 |
|
public function excluir_cadastro() { |
460 |
|
$this->layout = 'ajax'; |
461 |
|
|
462 |
|
$id = $this->request->data('id'); |
463 |
|
|
464 |
|
$dados = array('ativo' => '0'); |
465 |
|
$parametros = array('id' => $id); |
466 |
|
|
467 |
|
if ($this->Produto->updateAll($dados, $parametros)) { |
468 |
|
echo json_encode(true); |
469 |
|
} else { |
470 |
|
echo json_encode(false); |
471 |
|
} |
472 |
|
} |
473 |
|
|
474 |
|
public function id_alias() { |
475 |
|
$id_alias = $this->Produto->find('first', array( |