Advertisement
rodrigofbm

Untitled

Jun 14th, 2018
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. buscarProdutoCodigo() {
  2.         var self = this;
  3.         this.setState({isBuscarProdutoNomeLoading: true});
  4.         let cepAtual = this.state.cepAtual;
  5.         let cepCad = this.state.cep;
  6.  
  7.         let dados = {
  8.             codigoBarras: this.state.barCodeNum ? parseFloat(this.state.barCodeNum) : null,
  9.             cep: cepAtual ? parseInt(cepAtual) : parseInt(cepCad),
  10.             CPF: this.state.cpf != '' ? parseFloat(this.state.cpf) : 0
  11.         }
  12.  
  13.         console.log( dados);
  14.        
  15.         axios.post(`${URL_FARMA}/produto/ConsultarCodigoBarras`, dados)
  16.             .then(response => {
  17.                 //alert(self.state.cepAtual.toString());
  18.                 self.setState({isBuscarProdutoNomeLoading: false});
  19.                 Actions.Produto({title: 'SUA BUSCA', url: response.data.Url});
  20.                
  21.             })
  22.             .catch(error => {
  23.                 const arrayErrors = _.values(error)[2].data;
  24.                 console.log(arrayErrors)
  25.                 alert(arrayErrors);
  26.                 self.setState({isBuscarProdutoNomeLoading: false});
  27.             });
  28.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement