mirror of
https://git.imnavajas.es/jjimenez/erp-imprimelibros.git
synced 2026-01-30 23:58:49 +00:00
listado de pedidos admin hecho
This commit is contained in:
@ -32,20 +32,32 @@
|
||||
|
||||
<div class="container-fluid">
|
||||
|
||||
<table id="pagos-redsys-datatable" class="table table-striped table-nowrap responsive w-100">
|
||||
<table id="pedidos-datatable" class="table table-striped table-nowrap responsive w-100">
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col" th:text="#{pedido.table.id}">Num. Pedido</th>
|
||||
<th scope="col" th:text="#{pedido.table.cliente}">Cliente</th>
|
||||
<th scope="col" th:text="#{pedido.table.fecha}">Fecha</th>
|
||||
<th scope="col" th:text="#{pedido.table.importe}">Importe</th>
|
||||
<th scope="col" th:text="#{pedido.table.acciones}">Acciones</th>
|
||||
<th class="text-start" scope="col" th:text="#{pedido.table.id}">Num. Pedido</th>
|
||||
<th class="text-start" scope="col" th:text="#{pedido.table.cliente}">Cliente</th>
|
||||
<th class="text-start" scope="col" th:text="#{pedido.table.fecha}">Fecha</th>
|
||||
<th class="text-start" scope="col" th:text="#{pedido.table.importe}">Importe</th>
|
||||
<th class="text-start" scope="col" th:text="#{pedido.table.estado}">Estado</th>
|
||||
<th class="text-start" scope="col" th:text="#{pedido.table.acciones}">Acciones</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<th><input type="text" class="form-control form-control-sm input-filter" /></th>
|
||||
<th><input type="text" class="form-control form-control-sm input-filter" /></th>
|
||||
<th><input type="text" class="form-control form-control-sm input-filter" data-col="id" /></th>
|
||||
<th><input type="text" class="form-control form-control-sm input-filter" data-col="createdBy.fullName" /></th>
|
||||
<th></th>
|
||||
<th></th>
|
||||
<th>
|
||||
<select class="form-select form-select-sm input-filter" data-col="estado">
|
||||
<option value=""></option>
|
||||
<option th:text="#{pedido.estado.aprobado}" value="aprobado"></option>
|
||||
<option th:text="#{pedido.estado.maquetacion}" value="maquetacion"></option>
|
||||
<option th:text="#{pedido.estado.haciendo_ferro}" value="haciendo_ferro"></option>
|
||||
<option th:text="#{pedido.estado.produccion}" value="produccion"></option>
|
||||
<option th:text="#{pedido.estado.terminado}" value="terminado"></option>
|
||||
<option th:text="#{pedido.estado.cancelado}" value="cancelado"></option>
|
||||
</select>
|
||||
</th>
|
||||
<th></th> <!-- Acciones (sin filtro) -->
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
Reference in New Issue
Block a user