Add Ajuste visual QuoteCreate
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 5m37s
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 5m37s
This commit is contained in:
parent
605447e18a
commit
bc07220cf7
@ -147,7 +147,7 @@
|
||||
<InputText class="form-control" @bind-Value="_quoteModel.Observations" />
|
||||
</div>
|
||||
</div>
|
||||
<!-- Productos Cotizados -->
|
||||
<!-- TABLA DETALLE: Productos Cotizados -->
|
||||
<hr />
|
||||
<div class="d-flex justify-content-between align-items-center mb-2">
|
||||
<h5 class="mb-3">Productos Cotizados</h5>
|
||||
@ -161,11 +161,11 @@
|
||||
<table class="table table-bordered table-hover align-middle">
|
||||
<thead class="table-light">
|
||||
<tr>
|
||||
<th style="width: 15%;">Producto</th>
|
||||
<th style="width: 5%; align-items:center">Producto</th>
|
||||
<th>Descripción</th>
|
||||
<th style="width: 10%;">Cantidad</th>
|
||||
<th style="width: 15%;">Precio Unitario</th>
|
||||
<th style="width: 15%;">Total</th>
|
||||
<th style="width: 8%; text-align:center;">Cantidad</th>
|
||||
<th style="width: 15%;text-align:center;">Precio Unitario</th>
|
||||
<th style="width: 10%;text-align:center;">Total</th>
|
||||
<th style="width: 5%;"></th>
|
||||
</tr>
|
||||
</thead>
|
||||
@ -175,7 +175,7 @@
|
||||
foreach (var item in _quoteModel.PhSQuoteDetails)
|
||||
{
|
||||
<tr>
|
||||
<td>@item.ProductId</td>
|
||||
<td style="text-align:center">@item.ProductId</td>
|
||||
<td>
|
||||
<InputTextArea class="form-control"
|
||||
style="resize: vertical;"
|
||||
@ -195,7 +195,7 @@
|
||||
ValueExpression="@(() => item.Unitprice)" />
|
||||
</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>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user