Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
sistema_mcid
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
marcio neto
sistema_mcid
Commits
1b033b41
Commit
1b033b41
authored
Jul 24, 2023
by
sandroresende
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
alteracao config .env
parent
9c9325e4
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
25 additions
and
19 deletions
+25
-19
.env
.env
+1
-1
.gitignore
.gitignore
+1
-1
PropostaController.php
app/Http/Controllers/Propostas/PropostaController.php
+1
-1
app.js
public/js/app.js
+12
-14
CadastrarPropostaSemob.vue
...components/mod_propostas/semob/CadastrarPropostaSemob.vue
+5
-1
CadastrarPropostaSnsa.vue
...s/components/mod_propostas/snsa/CadastrarPropostaSnsa.vue
+5
-1
No files found.
.env
View file @
1b033b41
APP_NAME=Laravel
APP_ENV=local
APP_KEY=base64:JwQP7STcY2peIVdTKZVUKw2zgAUdGRWf8OLkSFMcSBQ=
APP_DEBUG=
tru
e
APP_DEBUG=
fals
e
APP_URL=http://localhost
LOG_CHANNEL=stack
...
...
.gitignore
View file @
1b033b41
...
...
@@ -10,4 +10,4 @@ Homestead.json
Homestead.yaml
npm-debug.log
yarn-error.log
.env
app/Http/Controllers/Propostas/PropostaController.php
View file @
1b033b41
...
...
@@ -199,7 +199,7 @@ class PropostaController extends Controller
$usuario
=
User
::
where
(
$where
)
->
firstOrFail
();
$ente_publico
=
EntePublico
::
find
(
$entePublicoId
);
//
$ente_publico = EntePublico::find($entePublicoId);
DB
::
beginTransaction
();
...
...
public/js/app.js
View file @
1b033b41
...
...
@@ -52334,7 +52334,6 @@ Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
methods: {
checkForm: function checkForm() {
var _this = this;
this.errors.item_financiavel = false;
this.bln_erros = false;
...
...
@@ -52406,7 +52405,7 @@ Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
confirmButtonText: 'OK',
cancelButtonText: 'Cancelar'
}).then(function (result) {
console.log('Com erros: ' + _this.bln_valor_incorreto + ' - ' + _this.bln_erros);
if (result.value) {} else {}
});
} else {
console.log('Sem erros: ' + this.bln_valor_incorreto + ' - ' + this.bln_erros);
...
...
@@ -52414,7 +52413,7 @@ Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
}
},
onChangeEstado: function onChangeEstado() {
var _this
2
= this;
var _this = this;
this.textoEscolhaMunicipio = "Buscando...";
this.municipio = '';
...
...
@@ -52422,9 +52421,9 @@ Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
if (this.estado != '') {
//busca dados no banco de dados para carregar no componente
axios.get(this.url + '/api/municipios/' + this.estado).then(function (resposta) {
_this
2
.textoEscolhaMunicipio = "Escolha um municipio:";
_this
2
.buscando = false;
_this
2
.municipios = resposta.data;
_this.textoEscolhaMunicipio = "Escolha um municipio:";
_this.buscando = false;
_this.municipios = resposta.data;
}).catch(function (error) {
console.log(error);
});
...
...
@@ -52436,14 +52435,14 @@ Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
}
},
mounted: function mounted() {
var _this
3
= this;
var _this
2
= this;
console.log(this.itens);
//console.log(this.form._token);
axios.get(this.url + '/api/ufs').then(function (resposta) {
//console.log(resposta.data);
_this
3
.estados = resposta.data;
_this
2
.estados = resposta.data;
}).catch(function (erro) {
console.log(erro);
});
...
...
@@ -55869,7 +55868,6 @@ Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
methods: {
checkForm: function checkForm() {
var _this = this;
this.errors.item_financiavel = false;
this.bln_erros = false;
...
...
@@ -55951,7 +55949,7 @@ Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
confirmButtonText: 'OK',
cancelButtonText: 'Cancelar'
}).then(function (result) {
console.log('Com erros: ' + _this.bln_valor_incorreto + ' - ' + _this.bln_erros);
if (result.value) {} else {}
});
} else {
console.log('Sem erros: ' + this.bln_valor_incorreto + ' - ' + this.bln_erros);
...
...
@@ -55959,7 +55957,7 @@ Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
}
},
onChangeEstado: function onChangeEstado() {
var _this
2
= this;
var _this = this;
this.textoEscolhaMunicipio = "Buscando...";
this.municipio = '';
...
...
@@ -55967,9 +55965,9 @@ Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
if (this.estado != '') {
//busca dados no banco de dados para carregar no componente
axios.get(this.url + '/api/municipios/' + this.estado).then(function (resposta) {
_this
2
.textoEscolhaMunicipio = "Escolha um municipio:";
_this
2
.buscando = false;
_this
2
.municipios = resposta.data;
_this.textoEscolhaMunicipio = "Escolha um municipio:";
_this.buscando = false;
_this.municipios = resposta.data;
}).catch(function (error) {
console.log(error);
});
resources/assets/js/components/mod_propostas/semob/CadastrarPropostaSemob.vue
View file @
1b033b41
...
...
@@ -718,7 +718,11 @@
confirmButtonText
:
'OK'
,
cancelButtonText
:
'Cancelar'
,
}).
then
((
result
)
=>
{
console
.
log
(
'Com erros: '
+
this
.
bln_valor_incorreto
+
' - '
+
this
.
bln_erros
);
if
(
result
.
value
)
{
}
else
{
}
})
}
else
{
console
.
log
(
'Sem erros: '
+
this
.
bln_valor_incorreto
+
' - '
+
this
.
bln_erros
);
...
...
resources/assets/js/components/mod_propostas/snsa/CadastrarPropostaSnsa.vue
View file @
1b033b41
...
...
@@ -333,7 +333,11 @@
confirmButtonText
:
'OK'
,
cancelButtonText
:
'Cancelar'
,
}).
then
((
result
)
=>
{
console
.
log
(
'Com erros: '
+
this
.
bln_valor_incorreto
+
' - '
+
this
.
bln_erros
);
if
(
result
.
value
)
{
}
else
{
}
})
}
else
{
console
.
log
(
'Sem erros: '
+
this
.
bln_valor_incorreto
+
' - '
+
this
.
bln_erros
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment