public JsonResult GetListPorIngresar(decimal IdTransaccionSession = 0, int IdEmpresa = 0, int IdSucursal = 0, decimal IdResponsable = 0)
        {
            com_parametro_Info info_parametro_compra = bus_com_param.get_info(IdEmpresa);
            var lst = bus_orden_compra.get_list_x_ingresar(IdEmpresa, IdSucursal, IdResponsable);

            ListaPorIngresar.set_list(lst, IdTransaccionSession);

            return(Json("", JsonRequestBehavior.AllowGet));
        }