@customer.Nombre
@customer.Nombre
@item.Nombre
@item.Nombre
@item.Nombre
@item.Nombre
@item.Nombre
@item.Nombre
@item.Nombre
@item.Nombre
@foreach (var unidad in _businessUnits)
{
}
Productos Cotizados
| Producto |
Descripción |
Cantidad |
Precio Unitario |
Total |
|
@if (_quoteModel.PhSQuoteDetails.Any())
{
foreach (var item in _quoteModel.PhSQuoteDetails)
{
| @item.ProductId |
|
|
|
$ @($"{item.Quantity * item.Unitprice:0.00}") |
|
}
}
else
{
| No hay productos agregados. |
}
@if (_quoteModel.PhSQuoteAdjustments.Any())
{
@foreach (var adj in _quoteModel.PhSQuoteAdjustments)
{
@adj.ReasonCode
}
}
else
{
Sin ajustes.
}
-
Subtotal
$ @_netAmount.ToString("N2")
-
Taxes
$ @_taxAmount.ToString("N2")
-
Total
$ @_grandTotal.ToString("N2")