Update Template
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 4m10s
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 4m10s
This commit is contained in:
parent
5ec19044f2
commit
b401941fe1
@ -14,7 +14,7 @@
|
|||||||
<style>
|
<style>
|
||||||
body {
|
body {
|
||||||
font-family: 'Liberation Sans', Arial, sans-serif;
|
font-family: 'Liberation Sans', Arial, sans-serif;
|
||||||
font-size: 12px;
|
font-size: 11px;
|
||||||
color: #000;
|
color: #000;
|
||||||
margin: 30px;
|
margin: 30px;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
@ -22,6 +22,24 @@
|
|||||||
border: 1px solid #000;
|
border: 1px solid #000;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.row {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
gap: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.col {
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.izquierda {
|
||||||
|
flex-basis: 50%; /* fácil de cambiar a 40%, 30%, etc. */
|
||||||
|
}
|
||||||
|
|
||||||
|
.derecha {
|
||||||
|
flex-basis: 50%;
|
||||||
|
}
|
||||||
|
|
||||||
h1, h2, h3 {
|
h1, h2, h3 {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
@ -72,34 +90,36 @@
|
|||||||
<h2>Presupuesto Nº @Model.Quotenumber</h2>
|
<h2>Presupuesto Nº @Model.Quotenumber</h2>
|
||||||
<p>Fecha de emisión: @Model.IssueDate.ToString("dd/MM/yyyy")</p>
|
<p>Fecha de emisión: @Model.IssueDate.ToString("dd/MM/yyyy")</p>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="row">
|
||||||
<div class="section">
|
<div class="col izquierda">
|
||||||
<h3>Datos del Cliente</h3>
|
<!-- Datos del Cliente -->
|
||||||
<p><strong>Nombre:</strong> @Model.Customer.Name</p>
|
<h3>Datos del Cliente</h3>
|
||||||
<p><strong>Domicilio:</strong> @Model.Customer.Address</p>
|
<p><strong>Nombre:</strong> @Model.Customer.Name</p>
|
||||||
<p><strong>Condición IVA:</strong> @Model.Customer.IvaCondition</p>
|
<p><strong>Domicilio:</strong> @Model.Customer.Address</p>
|
||||||
@if (Model.Customer.Documents != null && Model.Customer.Documents.Any())
|
<p><strong>Condición IVA:</strong> @Model.Customer.IvaCondition</p>
|
||||||
{
|
@if (Model.Customer.Documents != null && Model.Customer.Documents.Any())
|
||||||
<p><strong>Documentos:</strong></p>
|
{
|
||||||
<ul>
|
<p><strong>Documentos:</strong></p>
|
||||||
@foreach (var doc in Model.Customer.Documents)
|
<ul>
|
||||||
{
|
@foreach (var doc in Model.Customer.Documents)
|
||||||
<li>@doc.DocumentType: @doc.Number</li>
|
{
|
||||||
}
|
<li>@doc.DocumentType: @doc.Number</li>
|
||||||
</ul>
|
}
|
||||||
}
|
</ul>
|
||||||
else
|
}
|
||||||
{
|
else
|
||||||
<p>— Sin documentos —</p>
|
{
|
||||||
}
|
<p>— Sin documentos —</p>
|
||||||
</div>
|
}
|
||||||
|
</div>
|
||||||
<div class="section">
|
<div class="col derecha">
|
||||||
<h3>Datos del Paciente y Atención</h3>
|
<!-- Datos del Paciente y Atención -->
|
||||||
<p><strong>Paciente:</strong> @Model.PatientName</p>
|
<h3>Datos del Paciente y Atención</h3>
|
||||||
<p><strong>Médico:</strong> @Model.ProfessionalName</p>
|
<p><strong>Paciente:</strong> @Model.PatientName</p>
|
||||||
<p><strong>Institución:</strong> @Model.InstitutionName</p>
|
<p><strong>Médico:</strong> @Model.ProfessionalName</p>
|
||||||
<p><strong>Fecha estimada:</strong> @(Model.EstimatedDate?.ToString("dd/MM/yyyy") ?? "—")</p>
|
<p><strong>Institución:</strong> @Model.InstitutionName</p>
|
||||||
|
<p><strong>Fecha estimada:</strong> @(Model.EstimatedDate?.ToString("dd/MM/yyyy") ?? "—")</p>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="section">
|
<div class="section">
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user