Пример #1
0
 private void AprobarPresupuesto()
 {
     objPlanificacion = new PlanificacionWCFClient();
     objPlanificacion.Aprobar_MetaPresupuesto(
         ((Usuario_LoginResult)HttpContext.Current.Session["Usuario"]).idEmpresa,
         ((Usuario_LoginResult)HttpContext.Current.Session["Usuario"]).codigoUsuario,
         rmyPre.SelectedDate.Value.Year,
         rmyPre.SelectedDate.Value.Month,
         txt_idvendedor.Value.ToString(), true, Dns.GetHostName()
         );
     CargarPresupuesto(rmyPre.SelectedDate.Value.Year,
                       rmyPre.SelectedDate.Value.Month,
                       txt_idvendedor.Value.ToString());
 }