Esempio n. 1
0
 public PedidoModel()
 {
     CodPedidoCompra = 0;
     Fornecedor = new FornecedorVO();
     DataEmissao = DateTime.Now;
     PrazoEntrega = new PrazoEntregaVO();
     CondicaoFornecimento = String.Empty;
     Observacao = String.Empty;
     FormaPgto = new FormaPgtoVO();
     TipoRetirada = 0;
     FuncionarioAprovador = new FuncionarioVO();
     FuncionarioComprador = new FuncionarioVO();
     DataCadastro = null;
     DataPrazoEntrega = null;
     UsuarioInc = null;
     DataAlteracao = null;
     UsuarioAlt = null;
 }
Esempio n. 2
0
    public string[] GetPrazoEntrega(string prefixText)
    {
        PrazoEntregaVO identPrazoEntregaVo = new PrazoEntregaVO();
        //Todo: Depois do tratamento na procedure, remover a linha abaixo
        identPrazoEntregaVo.Descricao = prefixText;
        List<PrazoEntregaVO> lstPrazoEntregaVo = new PrazoEntrega().ListarPorDescricao(prefixText);

        List<string> items = new List<string>();
        foreach (PrazoEntregaVO item in lstPrazoEntregaVo)
        {
            items.Add(AjaxControlToolkit.AutoCompleteExtender.CreateAutoCompleteItem(
                item.Descricao, item.CodPrazoEntrega.ToString()));
        }
        return items.ToArray();
    }
 protected void grdListaResultado_RowCommand(object sender, GridViewCommandEventArgs e)
 {
     PrazoEntregaVO identPrazoEntregaVO = new PrazoEntregaVO();
     identPrazoEntregaVO.CodPrazoEntrega = Convert.ToInt16(e.CommandArgument);
     if (e.CommandName == "Excluir")
     {
         new Business.PrazoEntrega().Excluir(identPrazoEntregaVO.CodPrazoEntrega);
         Pesquisar();
     }
     else if (e.CommandName == "Editar")
     {
         hdfTipoAcao.Value = "Editar";
         DadosPrazoEntregaVO = new Business.PrazoEntrega().ListarPorCodigo(identPrazoEntregaVO.CodPrazoEntrega);
         Master.PosicionarFoco(txtDescricao);
         mpeIncluirPrazoEntrega.Show();
     }
 }