112 lines
3.4 KiB
Text
112 lines
3.4 KiB
Text
@section ButtonOption {
|
|
|
|
<div class="btn-group">
|
|
@UltimusHelper.Button("Limpiar", "btn btn-default btn-sm", "fa fa-eraser", "Limpiar", false)
|
|
</div>
|
|
<div class="btn-group">
|
|
@UltimusHelper.Button("Insertar", "btn btn-default btn-sm", "fa fa-upload", "Insertar", false)
|
|
</div>
|
|
<div class="btn-group">
|
|
@UltimusHelper.Button("Guardar", "btn btn-default btn-sm", "fa floppy-o", "Guardar", false)
|
|
</div>
|
|
|
|
<div class="btn-group">
|
|
<button type="button" class="btn btn-primary 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>
|
|
</div>
|
|
|
|
}
|
|
|
|
<form id="formMatrizRequerimientos" class="form-horizontal" role="form">
|
|
<h3><i class="fa fa-briefcase"></i> Ingresar matriz de requerimientos</h3>
|
|
<div class="row">
|
|
|
|
<div class="col-md-6">
|
|
|
|
@*Tipo Ingreso*@
|
|
@UltimusHelper.Catalog("TipoIngreso", "Tipo de ingreso", "Buscar")
|
|
|
|
@*Tipo Categoria*@
|
|
@UltimusHelper.Catalog("TipoCategoria", "Tipo de categoría", "Buscar")
|
|
|
|
@*Tipo Cliente*@
|
|
@UltimusHelper.Catalog("TipoCliente", "Tipo de cliente", "Buscar")
|
|
|
|
@*Tipo Persona*@
|
|
@UltimusHelper.Catalog("TipoPersona", "Tipo de persona", "Buscar")
|
|
|
|
</div>
|
|
|
|
<div class="col-md-6">
|
|
|
|
@*Requerido*@
|
|
@UltimusHelper.Checkbox("Requerido", "Requerido")
|
|
|
|
@*Estado*@
|
|
@UltimusHelper.TextBox("Estado", "Estado", false, "8")
|
|
|
|
@*IdDocumento*@
|
|
@UltimusHelper.TextBox("IdDocumento", "Id documento", false, "8")
|
|
|
|
@*Nombre Machote*@
|
|
@UltimusHelper.TextBox("NombreMachote", "Nombre machote", false, "8")
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
<h3><i class="fa fa-briefcase"></i> Matrices de documentos</h3>
|
|
|
|
<table id="tableProgramaCrediticio" class="table table-responsive">
|
|
<thead>
|
|
<tr>
|
|
<th class="col-sm-1">#</th>
|
|
<th>Id Tipo Documento</th>
|
|
<th>Id Tipo Categoría</th>
|
|
<th>Id Tipo de Cliente</th>
|
|
<th>Id Tipo de Persona</th>
|
|
<th>Id Tipo de Ingreso</th>
|
|
<th>Nombre Machote</th>
|
|
<th>Requerido</th>
|
|
<th>Estado</th>
|
|
</tr>
|
|
</thead>
|
|
</table>
|
|
|
|
<div id="ucItemsIcon" style="display:none;">
|
|
<div class="text-[$state_color]">
|
|
<i class="fa [$icon] fa-2x"></i>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="ucItemsCatalogo" style="display:none;">
|
|
|
|
<div class="btn-group">
|
|
<button type="button" class="btn btn-info dropdown-toggle btn-xs" data-toggle="dropdown">
|
|
<i class="fa fa-wrench"></i> Opciones <span class="caret"></span>
|
|
</button>
|
|
<ul class="dropdown-menu" role="menu">
|
|
|
|
<li><a href="javascript: EditarItem([$CodItem]);"><i class="fa fa-wrench"></i> Editar</a></li>
|
|
<li><a href="javascript: toggleEnabledItem([$CodItem],[$value]);"><i class="fa [$icon]"></i> [$opcion]</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
@UltimusHelper.Button("Seleccionar", "btn btn-default btn-xs", "fa fa-check", "", true)
|
|
|
|
@section Modals{
|
|
|
|
@UltimusHelper.Modal()
|
|
}
|
|
|
|
@section scripts{
|
|
|
|
@*@Scripts.Render("~/Scripts/Ultimus-ProgramaCrediticioCondiciones")*@
|
|
|
|
}
|