Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Comment thread
isaiasb-etendo marked this conversation as resolved.
Original file line number Diff line number Diff line change
@@ -0,0 +1,191 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Invoice - #INV-001</title>
<style>
body {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
margin: 0;
padding: 20px;
color: #333;
}

.invoice-box {
max-width: 800px;
margin: auto;
padding: 30px;
border: 1px solid #eee;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
font-size: 16px;
line-height: 24px;
}

.header {
display: flex;
justify-content: space-between;
margin-bottom: 40px;
}

.company-info h2 {
margin: 0;
color: #2c3e50;
}

.invoice-details {
text-align: right;
}

.details-container {
display: flex;
justify-content: space-between;
margin-bottom: 40px;
}

.bill-to h3 {
margin-bottom: 10px;
border-bottom: 2px solid #eee;
display: inline-block;
}

table {
width: 100%;
line-height: inherit;
text-align: left;
border-collapse: collapse;
}

table th {
background: #f8f9fa;
border-bottom: 1px solid #ddd;
padding: 10px;
}

table td {
padding: 10px;
vertical-align: top;
border-bottom: 1px solid #eee;
}

.total-section {
margin-top: 30px;
text-align: right;
}

.total-section table {
width: 250px;
margin-left: auto;
}

.total-section td {
border-bottom: none;
}

.total-row {
font-weight: bold;
font-size: 1.2em;
color: #2c3e50;
}

.footer {
margin-top: 50px;
text-align: center;
font-size: 12px;
color: #777;
}

@media print {
.invoice-box {
box-shadow: none;
border: none;
}
}
</style>
</head>
<body>

<div class="invoice-box">
<div class="header">
<div class="company-info">
<h2>ACME SOLUTIONS LTD.</h2>
<p>123 Business Ave, Suite 100<br>
New York, NY 10001<br>
contact@acmesolutions.com</p>
</div>
<div class="invoice-details">
<h1>INVOICE</h1>
<p>
<strong>Invoice #:</strong> INV-2023-001<br>
<strong>Date:</strong> October 25, 2023<br>
<strong>Due Date:</strong> November 10, 2023
</p>
</div>
</div>

<div class="details-container">
<div class="bill-to">
<h3>Bill To:</h3>
<p><strong>John Doe</strong><br>
789 Client St.<br>
Los Angeles, CA 90001<br>
john.doe@example.com</p>
</div>
</div>

<table>
<thead>
<tr>
<th>Description</th>
<th>Quantity</th>
<th>Unit Price</th>
<th>Total</th>
</tr>
</thead>
<tbody>
<tr>
<td>Web Design Services</td>
<td>1</td>
<td>$1,200.00</td>
<td>$1,200.00</td>
</tr>
<tr>
<td>SEO Optimization</td>
<td>5 hours</td>
<td>$80.00</td>
<td>$400.00</td>
</tr>
<tr>
<td>Domain Hosting (1 Year)</td>
<td>1</td>
<td>$150.00</td>
<td>$150.00</td>
</tr>
</tbody>
</table>

<div class="total-section">
<table>
<tr>
<td>Subtotal:</td>
<td>$1,750.00</td>
</tr>
<tr>
<td>Tax (10%):</td>
<td>$175.00</td>
</tr>
<tr class="total-row">
<td>Total:</td>
<td>$1,925.00</td>
</tr>
</table>
</div>

<div class="footer">
<p>Thank you for your business!</p>
<p>Payment should be made via bank transfer or PayPal within 15 days.</p>
</div>
</div>

</body>
</html>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/assets/user-guide/etendo-copilot/setup/knowledge-tab.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading