Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- buscarProdutoCodigo() {
- var self = this;
- this.setState({isBuscarProdutoNomeLoading: true});
- let cepAtual = this.state.cepAtual;
- let cepCad = this.state.cep;
- let dados = {
- codigoBarras: this.state.barCodeNum ? parseFloat(this.state.barCodeNum) : null,
- cep: cepAtual ? parseInt(cepAtual) : parseInt(cepCad),
- CPF: this.state.cpf != '' ? parseFloat(this.state.cpf) : 0
- }
- console.log( dados);
- axios.post(`${URL_FARMA}/produto/ConsultarCodigoBarras`, dados)
- .then(response => {
- //alert(self.state.cepAtual.toString());
- self.setState({isBuscarProdutoNomeLoading: false});
- Actions.Produto({title: 'SUA BUSCA', url: response.data.Url});
- })
- .catch(error => {
- const arrayErrors = _.values(error)[2].data;
- console.log(arrayErrors)
- alert(arrayErrors);
- self.setState({isBuscarProdutoNomeLoading: false});
- });
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement