Add Ajuste visual QuoteCreate
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 5m37s

This commit is contained in:
Leandro Hernan Rojas 2025-05-09 14:25:07 -03:00
parent 605447e18a
commit bc07220cf7

View File

@ -147,7 +147,7 @@
<InputText class="form-control" @bind-Value="_quoteModel.Observations" /> <InputText class="form-control" @bind-Value="_quoteModel.Observations" />
</div> </div>
</div> </div>
<!-- Productos Cotizados --> <!-- TABLA DETALLE: Productos Cotizados -->
<hr /> <hr />
<div class="d-flex justify-content-between align-items-center mb-2"> <div class="d-flex justify-content-between align-items-center mb-2">
<h5 class="mb-3">Productos Cotizados</h5> <h5 class="mb-3">Productos Cotizados</h5>
@ -161,11 +161,11 @@
<table class="table table-bordered table-hover align-middle"> <table class="table table-bordered table-hover align-middle">
<thead class="table-light"> <thead class="table-light">
<tr> <tr>
<th style="width: 15%;">Producto</th> <th style="width: 5%; align-items:center">Producto</th>
<th>Descripción</th> <th>Descripción</th>
<th style="width: 10%;">Cantidad</th> <th style="width: 8%; text-align:center;">Cantidad</th>
<th style="width: 15%;">Precio Unitario</th> <th style="width: 15%;text-align:center;">Precio Unitario</th>
<th style="width: 15%;">Total</th> <th style="width: 10%;text-align:center;">Total</th>
<th style="width: 5%;"></th> <th style="width: 5%;"></th>
</tr> </tr>
</thead> </thead>
@ -175,7 +175,7 @@
foreach (var item in _quoteModel.PhSQuoteDetails) foreach (var item in _quoteModel.PhSQuoteDetails)
{ {
<tr> <tr>
<td>@item.ProductId</td> <td style="text-align:center">@item.ProductId</td>
<td> <td>
<InputTextArea class="form-control" <InputTextArea class="form-control"
style="resize: vertical;" style="resize: vertical;"
@ -195,7 +195,7 @@
ValueExpression="@(() => item.Unitprice)" /> ValueExpression="@(() => item.Unitprice)" />
</td> </td>
<td>$ @($"{item.Quantity * item.Unitprice:0.00}")</td> <td>$ @($"{item.Quantity * item.Unitprice:0.00}")</td>
<td> <td style="text-align:center;">
<button class="btn btn-sm btn-danger" @onclick="() => RemoveDetail(item)">🗑</button> <button class="btn btn-sm btn-danger" @onclick="() => RemoveDetail(item)">🗑</button>
</td> </td>
</tr> </tr>