diff --git a/AYA.SlnSynor/AYA.SlnSynor/Sinort-Scripts/PropuestaNormativa/PropuestaNormativa.js b/AYA.SlnSynor/AYA.SlnSynor/Sinort-Scripts/PropuestaNormativa/PropuestaNormativa.js index b8df38d12..5240a5109 100644 --- a/AYA.SlnSynor/AYA.SlnSynor/Sinort-Scripts/PropuestaNormativa/PropuestaNormativa.js +++ b/AYA.SlnSynor/AYA.SlnSynor/Sinort-Scripts/PropuestaNormativa/PropuestaNormativa.js @@ -295,9 +295,9 @@ this.GuardarConvocadosPropuestaNormativa = function (data) { ArrayParticipantes.push(Convocatoria); }); - var uri = CatalogosWCF + '/api/InsertarActualizarRolesPantallas'; + var uri = CatalogosWCF + '/api/GuardarConvocatoriaProyectoNormativo'; var model = { - ListaRolesPantallas: ArrayParticipantes + ListaConvocatoria: Convocatoria }; AjaxPostData(uri, model, true, true, null, null, null); diff --git a/AYA.SlnSynor/AYA.SlnSynorModel/Entidades/Json.cs b/AYA.SlnSynor/AYA.SlnSynorModel/Entidades/Json.cs index 93d097894..e16b77388 100644 --- a/AYA.SlnSynor/AYA.SlnSynorModel/Entidades/Json.cs +++ b/AYA.SlnSynor/AYA.SlnSynorModel/Entidades/Json.cs @@ -18,5 +18,6 @@ namespace AYA.SlnSinortModel.Entidades public ProyectoNormativo ProyectoNormativo { get; set; } public Convocatoria Convocado { get; set; } public List ProyectosNormativos { get; set; } + public List ListaConvocatoria { get; set; } } }