private void cargar_combo_cbte(cl_filtros_Info model)
        {
            ct_cbtecble_tipo_Bus bus_tipo = new ct_cbtecble_tipo_Bus();
            var lst_tipo = bus_tipo.get_list(model.IdEmpresa, false);

            ViewBag.lst_tipo = lst_tipo;
        }
        private void cargar_combos(int IdEmpresa)
        {
            ct_cbtecble_tipo_Bus bus_tipo_comprobante = new ct_cbtecble_tipo_Bus();
            var lst_tipo_comprobante = bus_tipo_comprobante.get_list(IdEmpresa, false);

            ViewBag.lst_tipo_comprobante = lst_tipo_comprobante;
        }
Example #3
0
        private void cargar_combos()
        {
            ct_cbtecble_tipo_Bus bus_comprobante = new ct_cbtecble_tipo_Bus();
            var lst_parametro = bus_comprobante.get_list(Convert.ToInt32(SessionFixed.IdEmpresa), false);

            ViewBag.lst_parametrocontable = lst_parametro;
        }
        private void cargar_combos()
        {
            int IdEmpresa = Convert.ToInt32(SessionFixed.IdEmpresa);
            ct_cbtecble_tipo_Bus bus_tipo = new ct_cbtecble_tipo_Bus();
            var lst_tipo = bus_tipo.get_list(IdEmpresa, false);

            ViewBag.lst_tipo = lst_tipo;
        }
        private void cargar_combos()
        {
            int IdEmpresa = Convert.ToInt32(Session["IdEmpresa"]);
            ct_cbtecble_tipo_Bus bus_tipo_comprobante = new ct_cbtecble_tipo_Bus();
            var lst_tipo_comprobante = bus_tipo_comprobante.get_list(IdEmpresa, false);

            ViewBag.lst_tipo_comprobante = lst_tipo_comprobante;
        }
        public void UpdateRow(cp_ConciliacionAnticipoDetCXP_Info info_det, decimal IdTransaccionSession)
        {
            ct_cbtecble_tipo_Bus bus_tipocbte = new ct_cbtecble_tipo_Bus();

            cp_ConciliacionAnticipoDetCXP_Info edited_info = get_list(IdTransaccionSession).Where(m => m.Secuencia == info_det.Secuencia).FirstOrDefault();
            var info_tipocbte = bus_tipocbte.get_info(edited_info.IdTipoCbte_cxp);

            edited_info.tc_TipoCbte   = info_tipocbte.tc_TipoCbte;
            edited_info.MontoAplicado = info_det.MontoAplicado;
        }
Example #7
0
        private void cargar_combos(int IdEmpresa)
        {
            ct_cbtecble_tipo_Bus bus_tipo_comprobante = new ct_cbtecble_tipo_Bus();
            var lst_tipo_comprobante = bus_tipo_comprobante.get_list(IdEmpresa, false);

            ViewBag.lst_tipo_comprobante = lst_tipo_comprobante;

            var lst_sucursal = bus_sucursal.GetList(IdEmpresa, SessionFixed.IdUsuario, false);

            ViewBag.lst_sucursal = lst_sucursal;
        }
        private void cargar_combos(int IdEmpresa)
        {
            tb_sucursal_Bus bus_sucursal = new tb_sucursal_Bus();
            var             lst_sucursal = bus_sucursal.get_list(IdEmpresa, false);

            ViewBag.lst_sucursal = lst_sucursal;

            ct_cbtecble_tipo_Bus bus_tipo = new ct_cbtecble_tipo_Bus();
            var lst_tipo = bus_tipo.get_list(IdEmpresa, false);

            ViewBag.lst_tipo = lst_tipo;

            ct_punto_cargo_grupo_Bus bus_punto = new ct_punto_cargo_grupo_Bus();
            var lst_punto = bus_punto.GetList(IdEmpresa, false);

            ViewBag.lst_punto = lst_punto;
        }
Example #9
0
        private void cargar_filtros(int IdEmpresa)
        {
            try
            {
                var lst_sucursal = bus_sucursal.get_list(IdEmpresa, false);
                ViewBag.lst_sucursal = lst_sucursal;

                ct_cbtecble_tipo_Bus bus_tipo_comprobante = new ct_cbtecble_tipo_Bus();
                var lst_tipo_comprobante = bus_tipo_comprobante.get_list(IdEmpresa, false);
                ViewBag.lst_tipo_comprobante = lst_tipo_comprobante;

                Dictionary <string, string> lst_tipo_documento = new Dictionary <string, string>();
                lst_tipo_documento.Add("FACTURAS", "FACTURAS");
                lst_tipo_documento.Add("COBROS", "COBROS");
                lst_tipo_documento.Add("NOTADEBITO", "NOTA DE DEBITO");
                lst_tipo_documento.Add("NOTACREDITO", "NOTA DE CREDITO");
                ViewBag.lst_tipo_movimiento = lst_tipo_documento;
            }
            catch (Exception)
            {
                throw;
            }
        }