Commit cfc2c995 authored by sandroresende's avatar sandroresende

inclusao dsc_resposta_demanda

parent cec2483e
......@@ -73,9 +73,9 @@ use App\Mod_codem\TipoInteressado;
use App\Mod_codem\RelacaoDemanda;
use App\Mod_codem\SituacaoDemanda;
use App\Mod_codem\TipoDocumento;
use App\Mod_debendures_reidi\SetorProjeto;
use App\Mod_debendures_reidi\TipoProjeto;
use App\Mod_debendures_reidi\ViewProjetosDebenduresReidi;
use App\Mod_debentures_reidi\SetorProjeto;
use App\Mod_debentures_reidi\TipoProjeto;
use App\Mod_debentures_reidi\ViewProjetosdebenturesReidi;
use App\Propostas\ViewSysRelatorioGeralDiscricionarioSistema;
use App\Setor;
use App\User;
......@@ -612,19 +612,19 @@ class ApiController extends Controller
return User::where('setor_id', $setor)->orderBy('name')->get();
}
public function buscarEstadosDebendures()
public function buscarEstadosdebentures()
{
return ViewProjetosDebenduresReidi::select('uf_id', 'sg_uf')->groupBy('uf_id', 'sg_uf')->orderBy('sg_uf')->get();
return ViewProjetosdebenturesReidi::select('uf_id', 'sg_uf')->groupBy('uf_id', 'sg_uf')->orderBy('sg_uf')->get();
}
public function buscarTipoProjetoDebendures()
public function buscarTipoProjetodebentures()
{
return TipoProjeto::orderBy('txt_tipo_projeto')->get();
}
public function buscarSetorProjetoDebendures()
public function buscarSetorProjetodebentures()
{
return SetorProjeto::orderBy('txt_setor_projeto')->get();
......
......@@ -73,6 +73,7 @@ class DemandaController extends Controller
$demanda->dte_previsao_conclusao = $dte_previsao_conclusao;
$demanda->dte_conclusao = $request->dte_conclusao;
$demanda->txt_descricao_demanda = $request->txt_descricao_demanda;
$demanda->dsc_resposta_demanda = $request->dsc_resposta_demanda;
$demanda->situacao_id = 1;
$demanda->setor_id = $request->setor;
$demanda->user_id = Auth::user()->id;
......@@ -191,6 +192,7 @@ class DemandaController extends Controller
$demanda->txt_descricao_demanda = $request->txt_descricao_demanda;
$demanda->prioridade_id = $request->prioridade;
$demanda->dte_conclusao = $request->dte_conclusao;
$demanda->dsc_resposta_demanda = $request->dsc_resposta_demanda;
if ($request->tipo_demanda == 2) {
$demanda->tipo_interessado_id = $request->tipoInteressado;
......@@ -241,7 +243,7 @@ class DemandaController extends Controller
public function pesquisarDemanda(Request $request)
{
return $request->all();
//return $request->all();
$where = [];
......
<?php
namespace App\Http\Controllers\Mod_debendures_reidi;
namespace App\Http\Controllers\Mod_debentures_reidi;
use Illuminate\Http\Request;
use App\Http\Controllers\Controller;
use App\Mod_debendures_reidi\Projetos;
use App\Mod_debendures_reidi\ViewProjetosDebenduresReidi;
use App\Mod_debentures_reidi\Projetos;
use App\Mod_debentures_reidi\ViewProjetosdebenturesReidi;
use App\User;
use DB;
......@@ -14,7 +14,7 @@ use Illuminate\Support\Facades\Auth;
class DebenduresReidiController extends Controller
class debenturesReidiController extends Controller
{
/**
* Create a new controller instance.
......@@ -36,7 +36,7 @@ class DebenduresReidiController extends Controller
public function consultarProjeto()
{
$usuario = Auth::user();
return view('modulo_debendures_reidi.Consultar_projeto', compact('usuario'));
return view('modulo_debentures_reidi.Consultar_projeto', compact('usuario'));
}
public function pesquisarProjeto(Request $request)
......@@ -58,30 +58,77 @@ class DebenduresReidiController extends Controller
if ($request->tipo_projeto) {
$where[] = ['tipo_projeto_id', $request->tipo_projeto];
}
if ($request->bln_contabilizar_valores) {
if ($request->bln_contabilizar_valores == '0') {
$where = ['bln_contabilizar_valores', false];
} else {
$where[] = ['bln_contabilizar_valores', true];
}
}
$projetos = ViewProjetosdebenturesReidi::where($where)->orderBy('sg_uf')->get();
$projetos = ViewProjetosDebenduresReidi::where($where)->orderBy('sg_uf')->get();
if (count($projetos) == 0) {
flash()->erro("Erro", "Não existe projeto para os parametros selecionados.");
return back();
}
return view('modulo_debendures_reidi.Lista_projeto', compact('usuario', 'projetos'));
return view('modulo_debentures_reidi.Lista_projeto', compact('usuario', 'projetos'));
return view('modulo_debendures_reidi.consultar_projeto', compact('usuario'));
return view('modulo_debentures_reidi.consultar_projeto', compact('usuario'));
}
public function dadosProjeto(Projetos $projeto)
{
$projeto->load('tipoProjeto', 'setorProjeto');
return view('modulo_debendures_reidi.dados_projeto', compact('projeto'));
return view('modulo_debentures_reidi.dados_projeto', compact('projeto'));
}
public function updateProjeto(Request $request)
{
return $request->all();
DB::beginTransaction();
$projeto = Projetos::find($request->projeto_id);
if ($projeto->tipo_projeto_id == 1) {
$projeto->vlr_projeto = $request->vlr_projeto;
if ($request->bln_contabilizar_valores == '0') {
$projeto->bln_contabilizar_valores = false;
} else {
$projeto->bln_contabilizar_valores = true;
}
}
if ($projeto->tipo_projeto_id == 2) {
$projeto->vlr_projeto_sem_reidi = $request->vlr_projeto_sem_reidi;
$projeto->vlr_projeto_com_reidi = $request->vlr_projeto_com_reidi;
$projeto->vlr_projeto = $request->vlr_projeto_sem_reidi + $request->vlr_projeto_com_reidi;
}
$projeto->num_portaria = $request->portaria;
$projeto->vlr_estimado = $request->vlr_estimado;
$salvoSucesso = $projeto->update();
if ($salvoSucesso) {
DB::commit();
flash()->sucesso("Sucesso", "Dados do projeto atualizados com sucesso!");
return redirect()->back();
// return redirect("/debentures_reidi/projeto/" . $projeto->id);
} else {
DB::rollBack();
flash()->erro("Erro", "Não foi possível atualizar os dados do projeto.");
return back();
}
}
}
<?php
namespace App\Mod_debendures_reidi;
namespace App\Mod_debentures_reidi;
use Illuminate\Database\Eloquent\Model;
......@@ -10,7 +10,7 @@ class Projetos extends Model
protected $connection = 'pgsql_corp';
protected $table = 'mcid_debendures_reidi.tab_projetos';
protected $table = 'mcid_debentures_reidi.tab_projetos';
public $timestamps = true; // tabela não possui coluna de data de criação/atualização
......
<?php
namespace App\Mod_debendures_reidi;
namespace App\Mod_debentures_reidi;
use Illuminate\Database\Eloquent\Model;
......@@ -10,7 +10,7 @@ class SetorProjeto extends Model
protected $connection = 'pgsql_corp';
protected $table = 'mcid_debendures_reidi.opc_setor_projeto';
protected $table = 'mcid_debentures_reidi.opc_setor_projeto';
public $timestamps = false; // tabela não possui coluna de data de criação/atualização
......
<?php
namespace App\Mod_debendures_reidi;
namespace App\Mod_debentures_reidi;
use Illuminate\Database\Eloquent\Model;
......@@ -10,7 +10,7 @@ class TipoProjeto extends Model
protected $connection = 'pgsql_corp';
protected $table = 'mcid_debendures_reidi.opc_tipo_projeto';
protected $table = 'mcid_debentures_reidi.opc_tipo_projeto';
public $timestamps = false; // tabela não possui coluna de data de criação/atualização
......
<?php
namespace App\Mod_debendures_reidi;
namespace App\Mod_debentures_reidi;
use Illuminate\Database\Eloquent\Model;
class ViewProjetosDebenduresReidi extends Model
class ViewProjetosdebenturesReidi extends Model
{
protected $connection = 'pgsql_corp';
protected $table = 'mcid_debendures_reidi.view_projetos_debendures_reidi';
protected $table = 'mcid_debentures_reidi.view_projetos_debentures_reidi';
public $timestamps = false; // tabela não possui coluna de data de criação/atualização
......
This diff is collapsed.
This diff is collapsed.
......@@ -220,6 +220,14 @@
v-model="dscDemanda"
rows="10" required></textarea>
</div>
<div class="form-group br-textarea">
<label for="dsc_resposta_demanda" class="control-label">Resposta da Demanda</label>
<textarea class="form-control"
id="dsc_resposta_demanda"
name="dsc_resposta_demanda"
v-model="dsc_resposta_demanda"
rows="10"></textarea>
</div>
<div class="form-group">
<div class="row">
<div class="col col-xs-12 col-sm-5">
......@@ -252,9 +260,11 @@
<div class="col col-xs-12 col-sm-5 br-input">
<label for="dte_conclusao" class="control-label">Data de Conclusão</label>
<input id="dte_conclusao" type="date" class="form-control" name="dte_conclusao" :value="this.dte_conclusao" :required="this.situacaoDemanda == 7">
</div>
</div>
</div>
</div>
</div>
</div>
</template>
......@@ -307,7 +317,9 @@
area: '',
areas: '',
dscDemanda:'',
bln_documento_sei:''
bln_documento_sei:'',
dsc_resposta_demanda:'',
dte_resposta_demanda:''
}
},
computed:{
......@@ -565,6 +577,9 @@
this.dte_conclusao = this.dados.dte_conclusao;
this.dsc_resposta_demanda = this.dados.dsc_resposta_demanda;
this.tipoInteressado = this.dados.tipo_interessado_id;
......
......@@ -13,7 +13,7 @@
<option v-for="estado in estados" v-text="estado.sg_uf" :value="estado.sg_uf" :key="estado.sg_uf"></option>
</select>
</div>
<div class="column col-xs-12 col-md-5">
<div class="column col-xs-12 col-md-4">
<label for="tipo_projeto">Tipo de Projeto</label>
<select
id="tipo_projeto"
......@@ -24,7 +24,7 @@
<option v-for="tipo_projeto in tipo_projetos" v-text="tipo_projeto.txt_tipo_projeto" :value="tipo_projeto.id" :key="tipo_projeto.id"></option>
</select>
</div>
<div class="column col-xs-12 col-md-5">
<div class="column col-xs-12 col-md-4">
<label for="setor_projeto">Setor de Projeto</label>
<select
id="setor_projeto"
......@@ -34,7 +34,21 @@
<option value="">Escolha um setor projeto:</option>
<option v-for="setor_projeto in setor_projetos" v-text="setor_projeto.txt_setor_projeto" :value="setor_projeto.id" :key="setor_projeto.id"></option>
</select>
</div>
</div>
<div class="column col-xs-12 col-md-2">
<label for="bln_contabilizar_valores">Contabilizar Valores</label>
<select
id="bln_contabilizar_valores"
class="form-select br-select"
name="bln_contabilizar_valores"
v-model="bln_contabilizar_valores"
>
<option value="">Escolha uma opção:</option>
<option value="1">Sim</option>
<option value="0">Não</option>
</select>
</div>
</div>
</div>
</template>
......@@ -50,6 +64,7 @@
tipo_projeto:'',
setor_projetos:'',
setor_projeto:'',
bln_contabilizar_valores:''
}
},
methods:{
......@@ -78,7 +93,7 @@
} ,
mounted() {
//console.log(this.form._token);
axios.get(this.url + '/api/debendures/ufs').then(resposta => {
axios.get(this.url + '/api/debentures/ufs').then(resposta => {
//console.log(resposta.data);
this.estados = resposta.data;
this.estado = '';
......@@ -89,7 +104,7 @@
//tipo projeto
axios.get(this.url + '/api/debendures/tipo_projeto').then(resposta => {
axios.get(this.url + '/api/debentures/tipo_projeto').then(resposta => {
//console.log(resposta.data);
this.tipo_projetos = resposta.data;
}).catch(erro => {
......@@ -97,7 +112,7 @@
})
//setor projeto
axios.get(this.url + '/api/debendures/setor_projeto').then(resposta => {
axios.get(this.url + '/api/debentures/setor_projeto').then(resposta => {
//console.log(resposta.data);
this.setor_projetos = resposta.data;
}).catch(erro => {
......
......@@ -71,7 +71,7 @@
class="form-control"
name="portaria"
v-model="portaria"
:disabled="this.dados.num_portaria">
>
</div>
<div class="col col-xs-12 col-sm-6 br-input">
<label for="data_portaria" class="control-label">Data da Portaria</label>
......@@ -84,7 +84,7 @@
</div>
</div>
<div class="row" v-if="this.tipo_projeto == 1">
<div class="col col-xs-12 col-sm-5 br-input">
<div class="col col-xs-12 col-sm-4 br-input">
<label for="vlr_projeto" class="control-label">Valor do projeto</label>
<input id="vlr_projeto"
type="text"
......@@ -92,7 +92,7 @@
name="vlr_projeto"
v-model="vlr_projeto">
</div>
<div class="col col-xs-12 col-sm-5 br-input">
<div class="col col-xs-12 col-sm-4 br-input">
<label for="vlr_estimado" class="control-label">Valor Estimado</label>
<input id="vlr_estimado"
type="text"
......@@ -100,7 +100,7 @@
name="vlr_estimado"
v-model="vlr_estimado" >
</div>
<div class="column col-xs-12 col-md-2">
<div class="column col-xs-12 col-md-4">
<label for="bln_contabilizar_valores">Contabilizar Valores</label>
<select
id="bln_contabilizar_valores"
......@@ -116,7 +116,16 @@
</div>
</div>
<div class="row" v-if="this.tipo_projeto == 2">
<div class="col col-xs-12 col-sm-6 br-input">
<div class="col col-xs-12 col-sm-4 br-input">
<label for="vlr_projeto" class="control-label">Valor do projeto</label>
<input id="vlr_projeto"
type="text"
class="form-control"
name="vlr_projeto"
disabled
:value="parseFloat(this.vlr_projeto_sem_reidi) + parseFloat(this.vlr_projeto_com_reidi)">
</div>
<div class="col col-xs-12 col-sm-4 br-input">
<label for="vlr_projeto_com_reidi" class="control-label">Valor do projeto com Reidi</label>
<input id="vlr_projeto_com_reidi"
type="text"
......@@ -124,7 +133,7 @@
name="vlr_projeto_com_reidi"
v-model="vlr_projeto_com_reidi">
</div>
<div class="col col-xs-12 col-sm-6 br-input">
<div class="col col-xs-12 col-sm-4 br-input">
<label for="vlr_projeto_sem_reidi" class="control-label">Valor do projeto sem Reidi</label>
<input id="vlr_projeto_sem_reidi"
type="text"
......@@ -183,6 +192,7 @@
this.textoEscolhaMunicipio = "Filtre o Estado"
}
},
formatarData(data) {
if (data) {
const novaData = data.toLocaleDateString('pt-BR');
......@@ -211,7 +221,7 @@
//tipo projeto
axios.get(this.url + '/api/debendures/tipo_projeto').then(resposta => {
axios.get(this.url + '/api/debentures/tipo_projeto').then(resposta => {
//console.log(resposta.data);
this.tipo_projetos = resposta.data;
}).catch(erro => {
......@@ -219,7 +229,7 @@
})
//setor projeto
axios.get(this.url + '/api/debendures/setor_projeto').then(resposta => {
axios.get(this.url + '/api/debentures/setor_projeto').then(resposta => {
//console.log(resposta.data);
this.setor_projetos = resposta.data;
}).catch(erro => {
......@@ -236,10 +246,10 @@
this.nome_projeto = this.dados.txt_nome_projeto;
this.portaria = this.dados.num_portaria;
this.data_portaria = this.dados.dte_portaria;
this.vlr_projeto = this.formatarValor(this.dados.vlr_projeto,2);
this.vlr_projeto_sem_reidi = this.formatarValor(this.dados.vlr_projeto_sem_reidi,2);
this.vlr_projeto_com_reidi = this.formatarValor(this.dados.vlr_projeto_com_reidi,2);
this.vlr_estimado = this.formatarValor(this.dados.vlr_estimado,2);
this.vlr_projeto = this.dados.vlr_projeto;
this.vlr_projeto_sem_reidi = this.dados.vlr_projeto_sem_reidi;
this.vlr_projeto_com_reidi = this.dados.vlr_projeto_com_reidi;
this.vlr_estimado = this.dados.vlr_estimado;
if(this.dados.bln_contabilizar_valores){
this.bln_contabilizar_valores = 1;
}else{
......
......@@ -46,10 +46,10 @@
<!-- inicio menu Documentos-->
<div class="menu-folder"><a class="menu-item" href="javascript: void(0)"><span class="icon">
<i class="bi bi-journal-text fa-lg"></i></span><span class="content">Debendures e Reidi</span></a>
<i class="bi bi-journal-text fa-lg"></i></span><span class="content">debentures e Reidi</span></a>
<ul>
<li><a class="menu-item" href="{{ url('/debendures_reidi/projetos/consultar') }}" title="Consultar Projeto"><span class="icon">
<li><a class="menu-item" href="{{ url('/debentures_reidi/projetos/consultar') }}" title="Consultar Projeto"><span class="icon">
<i class="bi bi-journal-arrow-up fa-lg"></i></span><span class="content">Consultar Projeto</span></a>
</li>
......
......@@ -122,10 +122,7 @@
</table>
@endif
<div class="p-3 text-right">
<button class="br-button danger mr-3" type="button" onclick="window.location.href='/codem/demanda/minhas_demandas'">Fechar
</button>
</div>
</div>
</div>
</div>
......@@ -254,7 +251,10 @@
</div>
</div>
<div class="p-3 text-right">
<button class="br-button danger mr-3" type="button" onclick="window.location.href='/codem/demanda/minhas_demandas'">Fechar
</button>
</div>
......
......@@ -5,8 +5,8 @@
<historico-navegacao
:url="'{{ url('/home') }}'"
:telanterior01="'Debendures e Reidi'"
:telatual="'Consultar Debendures e Reidi'"
:telanterior01="'debentures e Reidi'"
:telatual="'Consultar debentures e Reidi'"
>
</historico-navegacao>
......@@ -15,15 +15,15 @@
<div class="main-content pl-sm-3 mt-5 container-fluid" id="main-content">
<cabecalho-relatorios
:titulo="'Consultar Debendures e Reidi'"
:titulo="'Consultar debentures e Reidi'"
:linkcompartilhar="'{{ url("/") }}'"
:barracompartilhar="false">
</cabecalho-relatorios>
<form role="form" method="POST" action='{{ url("debendures_reidi/projetos/pesquisar") }}'>
<form role="form" method="POST" action='{{ url("debentures_reidi/projetos/pesquisar") }}'>
@csrf
<filtro-debendures-reidi :url="'{{ url('/') }}'"></filtro-debendures-reidi>
<filtro-debentures-reidi :url="'{{ url('/') }}'"></filtro-debentures-reidi>
<div class="p-3 text-right">
<button class="br-button primary mr-3" type="submit" name="Salvar Edição">Pesquisar
......
......@@ -5,9 +5,9 @@
<historico-navegacao
:url="'{{ url('/home') }}'"
:telanterior01="'Debendures e Reidi'"
:telanterior02="'Consultar Debendures e Reidi'"
:telanterior03="'Lista Debendures e Reidi'"
:telanterior01="'debentures e Reidi'"
:telanterior02="'Consultar debentures e Reidi'"
:telanterior03="'Lista debentures e Reidi'"
:telatual="'Dados do Projeto'"
>
......@@ -17,11 +17,11 @@
<div class="main-content pl-sm-3 mt-5 container-fluid" id="main-content" >
<cabecalho-relatorios
:titulo="'{{$projeto->txt_titular_projeto}}'"
titulo="{{$projeto->txt_titular_projeto}}"
:subtitulo1="'{{$projeto->tipoProjeto->txt_tipo_projeto}}'"
:subtitulo2="'{{$projeto->setorProjeto->txt_setor_projeto}}'"
:subtitulo3="'{{$projeto->sg_uf}}'"
:linkcompartilhar="'{{ url("/debendures_reidi/projeto/".$projeto->id) }}'"
:linkcompartilhar="'{{ url("/debentures_reidi/projeto/".$projeto->id) }}'"
@if($projeto->updated_at)
:dataatualizacao="'{{date('d/m/Y',strtotime($projeto->updated_at))}}'"
@elseif($projeto->created_at)
......@@ -30,20 +30,24 @@
:barracompartilhar="true">
</cabecalho-relatorios>
<form role="form" method="POST" action='{{ url("debendures_reidi/projeto/update") }}'>
<form role="form" method="POST" action='{{ url("debentures_reidi/projeto/update") }}'>
@csrf
<input type="hidden" id="projeto_id" name="projeto_id" value="{{$projeto->id}}">
<projeto-debendures-reidi
<projeto-debentures-reidi
:url="'{{ url('/') }}'"
v-bind:dados="{{json_encode($projeto)}}"
></projeto-debendures-reidi>
></projeto-debentures-reidi>
<div class="p-3 text-right">
<button class="br-button primary mr-3" type="submit">Atualizar
</button>
<button class="br-button danger mr-3" type="button" onclick="javascript:window.history.go(-1)">Voltar
</button>
<form role="form" method="POST" action='{{ url("debentures_reidi/projetos/pesquisar") }}'>
@csrf
<input type="hidden" id="request" name="request" value="">
<button class="br-button danger mr-3" type="button" onclick="javascript:window.history.go(-1)">Voltar
</button>
</form>
</div>
</form>
......
......@@ -5,9 +5,9 @@
<historico-navegacao
:url="'{{ url('/home') }}'"
:telanterior01="'Debendures e Reidi'"
:telanterior01="'Consultar Debendures e Reidi'"
:telatual="'Lista Debendures e Reidi'"
:telanterior01="'debentures e Reidi'"
:telanterior01="'Consultar debentures e Reidi'"
:telatual="'Lista debentures e Reidi'"
>
</historico-navegacao>
......@@ -16,7 +16,7 @@
<div class="main-content pl-sm-3 mt-5 container-fluid" id="main-content">
<cabecalho-relatorios
:titulo="'Lista Debendures e Reidi'"
:titulo="'Lista debentures e Reidi'"
:linkcompartilhar="'{{ url("/") }}'"
:barracompartilhar="false">
</cabecalho-relatorios>
......@@ -50,7 +50,7 @@
<tbody>
@foreach($projetos as $dados)
@if($dados->updated_at)
@if($dados->updated_at)
<tr class="text-center" >
@else
<tr class="text-center table-danger" >
......@@ -71,7 +71,7 @@
<td class="p-3 text-right">
<button type="button" class="br-button circle secondary small mr-3" aria-label="Ícone ilustrativo"
onclick='window.location.href="{{ url("debendures_reidi/projeto/$dados->id")}}"'>
onclick='window.location.href="{{ url("debentures_reidi/projeto/$dados->id")}}"'>
<i class="fas fa-eye" aria-hidden="true"></i>
</button>
......
......@@ -155,7 +155,7 @@ Route::get('/rps/situacaoPropostasAjustadas', 'ApiController@listaSituacaoPropos
//DEBENDURES
Route::get('/debendures/ufs', 'ApiController@buscarEstadosDebendures');
Route::get('/debendures/tipo_projeto', 'ApiController@buscarTipoProjetoDebendures');
Route::get('/debendures/setor_projeto', 'ApiController@buscarSetorProjetoDebendures');
//debentures
Route::get('/debentures/ufs', 'ApiController@buscarEstadosdebentures');
Route::get('/debentures/tipo_projeto', 'ApiController@buscarTipoProjetodebentures');
Route::get('/debentures/setor_projeto', 'ApiController@buscarSetorProjetodebentures');
......@@ -347,8 +347,8 @@ Route::get('/codem/demanda/observacao/excluir/{observacao}', 'Mod_codem\Observac
//////módulo CODEM
//módulo debendures e reidi
Route::get('/debendures_reidi/projetos/consultar', 'Mod_debendures_reidi\DebenduresReidiController@consultarProjeto');
Route::post('/debendures_reidi/projetos/pesquisar', 'Mod_debendures_reidi\DebenduresReidiController@pesquisarProjeto');
Route::get('/debendures_reidi/projeto/{projeto}', 'Mod_debendures_reidi\DebenduresReidiController@dadosProjeto');
Route::post('/debendures_reidi/projeto/update', 'Mod_debendures_reidi\DebenduresReidiController@updateProjeto');
\ No newline at end of file
//módulo debentures e reidi
Route::get('/debentures_reidi/projetos/consultar', 'Mod_debentures_reidi\debenturesReidiController@consultarProjeto');
Route::post('/debentures_reidi/projetos/pesquisar', 'Mod_debentures_reidi\debenturesReidiController@pesquisarProjeto');
Route::get('/debentures_reidi/projeto/{projeto}', 'Mod_debentures_reidi\debenturesReidiController@dadosProjeto');
Route::post('/debentures_reidi/projeto/update', 'Mod_debentures_reidi\debenturesReidiController@updateProjeto');
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment