Cambio en orden de columnas en tabla de unidades
This commit is contained in:
@ -11,13 +11,13 @@
|
||||
<th>Tipo</th>
|
||||
<th>Nombre</th>
|
||||
<th>Abreviación</th>
|
||||
<th>#</th>
|
||||
<th>Líneas</th>
|
||||
<th>m² Útil</th>
|
||||
<th>m² Terraza</th>
|
||||
<th>m² Vendible</th>
|
||||
<th>m² Total</th>
|
||||
<th>Descripción</th>
|
||||
<th>#</th>
|
||||
<th><a href="{{nUrl('proyectos', 'add_tipo_unidad', ['proyecto' => $proyecto->id])}}"><span class="glyphicon glyphicon-plus"></span></a></th>
|
||||
</tr>
|
||||
</thead>
|
||||
@ -33,6 +33,7 @@
|
||||
{{$tipo->abreviacion}}
|
||||
@endif
|
||||
</td>
|
||||
<td>{{count($tipo->unidades())}}</td>
|
||||
<td>{{$tipo->lineas()}}</td>
|
||||
<td>{{format('m2', $tipo->m2 + $tipo->logia)}}</td>
|
||||
<td>{{format('m2', $tipo->terraza)}}</td>
|
||||
@ -45,7 +46,6 @@
|
||||
{{$tipo->descripcion}}
|
||||
@endif
|
||||
</td>
|
||||
<td>{{count($tipo->unidades())}}</td>
|
||||
<td><a href="{{nUrl('proyecto_tipo_unidades', 'edit', ['tipo_unidad' => $tipo->id])}}"><span class="glyphicon glyphicon-edit"></span></a></td>
|
||||
</tr>
|
||||
<tr class="unidades" data-tipo="{{$tipo->id}}">
|
||||
@ -55,6 +55,7 @@
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Descripción</th>
|
||||
<th>#</th>
|
||||
<th>Piso</th>
|
||||
<th>Línea</th>
|
||||
<th>Orientación</th>
|
||||
@ -72,10 +73,10 @@
|
||||
<?php $subtipo = $unidad->subtipo; $cnt[$tipo->nombre."-".$subtipo] = 0; $pisos[$tipo->nombre."-".$subtipo] = [] ?>
|
||||
<tr data-id="{{$tipo->nombre}}-{{$subtipo}}" data-status="closed" class="subtipo">
|
||||
<th>Línea {{$subtipo}}</th>
|
||||
<th class="cantidad_subtipo" data-subtipo="{{$tipo->nombre}}-{{$subtipo}}"></th>
|
||||
<th class="pisos_subtipo" data-subtipo="{{$tipo->nombre}}-{{$subtipo}}"></th>
|
||||
<th>{{$subtipo}}</th>
|
||||
<th>{{$unidad->orientacion}}</th>
|
||||
<th class="cantidad_subtipo" data-subtipo="{{$tipo->nombre}}-{{$subtipo}}"></th>
|
||||
</tr>
|
||||
@endif
|
||||
<tr>
|
||||
|
Reference in New Issue
Block a user