Exemplo n.º 1
0
        private void cargar_combos_detalle(decimal IdProducto_padre = 0)
        {
            int IdEmpresa    = Convert.ToInt32(SessionFixed.IdEmpresa);
            var lst_producto = bus_producto.get_list_combo_hijo(IdEmpresa, IdProducto_padre);

            ViewBag.lst_producto      = lst_producto;
            Session["list_productos"] = lst_producto;
            in_UnidadMedida_Bus bus_unidad = new in_UnidadMedida_Bus();
            var lst_unidad = bus_unidad.get_list(false);

            ViewBag.lst_unidad = lst_unidad;
        }