public void PesquisarObjeto() { try { PagamentoPst pagamento = new PagamentoPst(); if (!string.IsNullOrEmpty(txt_id_pedido.Text)) { DisplayData(pagamento.Pesquisar()); } else if (!string.IsNullOrEmpty(txt_id.Text)) { DisplayData(pagamento.Pesquisar("id_movimento", int.Parse(txt_id.Text))); if (table.Rows.Count > 0) { cbb_cliente.Text = table.Rows[0]["nome_cliente"].ToString(); txt_debito.Text = table.Rows[0]["valor"].ToString(); txt_id_pedido.Text = table.Rows[0]["pedido_id"].ToString(); } else { MessageBox.Show("O id informado '" + txt_id.Text + "' não existe!"); } } } catch (Exception err) { MessageBox.Show(err.Message); } }
public void Checar(string objeto) { try { PagamentoPst pagamento = new PagamentoPst(); DisplayData(pagamento.Pesquisar(int.Parse(objeto))); } catch (Exception err) { MessageBox.Show(err.Message); } }
public void PesquisarObjeto(string coluna, string objeto) { try { PagamentoPst pagamento = new PagamentoPst(); if (aux == "cliente" || string.IsNullOrEmpty(aux)) { aux = "procurar"; ClientePst cliente = new ClientePst(); DisplayData(cliente.checar(objeto)); if (table.Rows.Count > 0) { if (!string.IsNullOrEmpty(table.Rows[0]["debito"].ToString())) { cbb_cliente.Text = table.Rows[0]["nome"].ToString(); txt_debito.Text = table.Rows[0]["debito"].ToString(); cbb_id_cliente.Text = table.Rows[0]["id_cliente"].ToString(); } else { txt_debito.Text = "0"; } } aux = ""; } else if (aux == "id") { aux = ""; DisplayData(pagamento.Pesquisar(coluna, int.Parse(objeto))); if (table.Rows.Count > 0) { if (!string.IsNullOrEmpty(table.Rows[0]["id_movimento"].ToString())) { cbb_cliente.Text = table.Rows[0]["nome_cliente"].ToString(); cbb_id_cliente.Text = table.Rows[0]["id_cliente"].ToString(); } else { txt_debito.Text = "0"; } } } } catch (Exception err) { MessageBox.Show(err.Message); } }
public void Checar(string objeto) { PagamentoPst pagamento = new PagamentoPst(); DisplayData(pagamento.Pesquisar(int.Parse(objeto))); }