añadido footer con los usuarios en pedidos

This commit is contained in:
2025-03-19 19:41:17 +01:00
parent 63ec2c8bf0
commit 756578a251
2 changed files with 23 additions and 2 deletions

View File

@ -36,7 +36,22 @@
<button type="button" class="btn btn-primary btn-md" id="button-pedido-to-prod" data-id="<?= $pedidoEntity->id ?>"><span> <i class="ti ti-building-factory-2 ti-xs"></i> <?= lang("Produccion.btn_pedido_produccion_accion") ?> </span></button>
</div><!-- /.card-footer -->
<?php endif; ?>
</div>
</div>
<div class="container-fluid d-flex flex-md-row flex-column justify-content-between align-items-md-center gap-1 container-p-x py-3">
<div class="col-md-6">
<p>
<strong><?= lang("Presupuestos.created_by_at") ?></strong>
<span id="created_by"><?= $pedidoEntity->created_by ?></span>,
<span id="created_at"><?= $pedidoEntity->created_at_footer ?></span>
</p>
</div>
<div class="col-md-6">
<p>
<strong><?= lang("Presupuestos.updated_by_at") ?></strong>
<span id="updated_by"><?= $pedidoEntity->updated_by ?></span>,
<span id="updated_at_footer"><?= $pedidoEntity->updated_at_footer ?></span>
</p>
</div>
</div>
</div><!-- //.card -->