142 lines
6 KiB
Text
142 lines
6 KiB
Text
@using Ultimus.Framework;
|
|
|
|
@section ButtonOption {
|
|
|
|
<button type="button" class="btn btn-default btn-sm" id="btnVolver" onclick="location.href = '@string.Concat(Url.Action("Index", "Mantenimiento", null), ViewBag.QueryEncripted)'">
|
|
<strong> <i class="fa fa-reply"></i> Volver al Módulo de Mantenimiento</strong>
|
|
</button>
|
|
|
|
|
|
}
|
|
|
|
<input type="hidden" id="hiddenEliminar" value="false" />
|
|
<input type="hidden" id="hiddenActualizar" value="false" />
|
|
<input type="hidden" id="hiddenId" />
|
|
|
|
|
|
<form id="formCatalogo" class="form-horizontal" role="form">
|
|
|
|
<h3><i class="fa fa-briefcase"></i> Control de Cartera para Renovación</h3>
|
|
<div class="panel panel-success">
|
|
|
|
<div class="panel-body">
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<div class="panel panel-success">
|
|
<div class="panel-heading">
|
|
<h4 class="panel-title">
|
|
<i class="fa fa-bars"></i> <label id="lbTituloAccion">Ingresar Nuevo Registro</label>
|
|
</h4>
|
|
</div>
|
|
<div class="panel-body">
|
|
|
|
<div class="well well-sm">
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
@ULA.Cathay.ModuloMantenimiento.Commons.CustomHelper.Identification("Identificacion", "Tipo de Identificación", false, "8")
|
|
@UltimusHelper.TextBox("NombreCliente", "Nombre Cliente", false, "8")
|
|
@UltimusHelper.TextBox("NumLinea", "Número de Línea", false, "8")
|
|
@UltimusHelper.TextBox("MontoLinea", "Monto Línea", false, "8")
|
|
@UltimusHelper.Catalog("Moneda", "Moneda", "Buscar")
|
|
@UltimusHelper.Calendar("FeVencimiento", "Fecha de Vencimiento")
|
|
@UltimusHelper.ButtonSwitch("ForzarRenovacion", "Forzar Renovación", new List<string>() { "No", "SI" }, false)
|
|
</div>
|
|
<div class="col-md-6">
|
|
@UltimusHelper.Catalog("CategoriaOferta", "Categoría", "Buscar")
|
|
@UltimusHelper.Catalog("ClasificacionCliente", "Clasificación del Cliente", "Buscar")
|
|
@UltimusHelper.Catalog("TipoCliente", "Tipo Cliente", "Buscar")
|
|
@UltimusHelper.Catalog("TipoIngreso", "Tipo de Ingreso", "Buscar")
|
|
@UltimusHelper.Catalog("ParticipantesTipoParticipacion", "Tipo de Participación", "Buscar")
|
|
@UltimusHelper.TextArea("Comentarios", "Comentarios", false, "8", "5")
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
|
|
@UltimusHelper.Button("Limpiar", "btn btn-default btn-sm pull-right", "fa fa-eraser", "Limpiar", false)
|
|
@UltimusHelper.Button("Insertar", "btn btn-default btn-sm pull-right", "fa fa-upload", "Insertar", false)
|
|
@UltimusHelper.Button("Guardar", "btn btn-default btn-sm pull-right", "fa fa-floppy-o", "Guardar", false)
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-md-6">
|
|
@UltimusHelper.ButtonSwitch("FiltraTipoRegistro", "", new List<string>() { "Renovaciones No Generadas", "Renovaciones Generadas" }, false)
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
|
|
|
|
|
|
|
|
<div class="col-md-12" style="overflow-x:scroll; border:1px solid silver">
|
|
<br />
|
|
<table id="TableItems" class="table table-condensed dataTable">
|
|
<thead>
|
|
<tr>
|
|
<th></th>
|
|
<th class="col-sm-1">NoLinea</th>
|
|
<th class="col-sm-1">Cliente</th>
|
|
<th class="col-sm-1">Monto Linea</th>
|
|
<th class="col-sm-1">Moneda</th>
|
|
<th class="col-sm-1">Fecha Venc</th>
|
|
<th class="col-sm-1">Comentarios</th>
|
|
<th class="col-sm-1">Usuario Registrado</th>
|
|
<th class="col-sm-1">Fecha Registro</th>
|
|
<th class="col-sm-1">Solicitu Generada?</th>
|
|
<th class="col-sm-1">Solicitud</th>
|
|
<th class="col-sm-1">Incidente</th>
|
|
<th class="col-sm-1">Categoría</th>
|
|
<th class="col-sm-1">Clasificación del Cliente</th>
|
|
<th class="col-sm-1">Tipo Cliente</th>
|
|
<th class="col-sm-1">Tipo de Ingreso</th>
|
|
<th class="col-sm-1">Tipo de Participación</th>
|
|
|
|
</tr>
|
|
</thead>
|
|
</table>
|
|
|
|
<div id="ucItemsCatalogo" style="display:none;">
|
|
<div class="btn-group">
|
|
<button type="button" class="btn btn-success btn-xs" id="btnSeleccionarVisita" onclick="javascript: $('#hiddenActualizar').val('true') ">
|
|
<i class="fa fa-check"></i>
|
|
</button>
|
|
<button type="button" class="btn btn-success btn-xs" id="btnEliminarVisita" style="display:none" onclick="javascript: $('#hiddenEliminar').val('true') ">
|
|
<i class="fa fa-close"></i>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
@UltimusHelper.Button("Seleccionar", "btn btn-success btn-sm", "fa fa-check", "", true)
|
|
|
|
@section Modals{
|
|
|
|
@UltimusHelper.Modal()
|
|
}
|
|
@section scripts{
|
|
|
|
@Scripts.Render("~/Scripts/Ultimus-ControlCartera")
|
|
|
|
}
|
|
|
|
|
|
|
|
|