- | ' . nl2br($quote_note) . ' |
+ ' . nl2br($quote_note) . ' |
| Subtotal: | ' . numfmt_format_currency($currency_format, $sub_total, $quote_currency_code) . ' | ';
@@ -526,7 +526,7 @@ if (isset($_GET['export_invoice_pdf'])) {
// Start TCPDF
$pdf = new TCPDF('P', 'mm', 'A4', true, 'UTF-8', false);
- $pdf->SetMargins(15, 15, 15);
+ $pdf->SetMargins(10, 10, 10);
$pdf->setPrintHeader(false);
$pdf->setPrintFooter(false);
$pdf->AddPage();
@@ -620,7 +620,7 @@ if (isset($_GET['export_invoice_pdf'])) {
// Totals
$html .= '
- | ' . nl2br($invoice_note) . ' |
+ ' . nl2br($invoice_note) . ' |
| Subtotal: | ' . numfmt_format_currency($currency_format, $sub_total, $invoice_currency_code) . ' | ';
diff --git a/user/post/invoice.php b/user/post/invoice.php
index 738e6edc..504b7f25 100644
--- a/user/post/invoice.php
+++ b/user/post/invoice.php
@@ -2232,7 +2232,7 @@ if (isset($_GET['export_invoice_pdf'])) {
// Start TCPDF
$pdf = new TCPDF('P', 'mm', 'A4', true, 'UTF-8', false);
- $pdf->SetMargins(15, 15, 15);
+ $pdf->SetMargins(10, 10, 10);
$pdf->setPrintHeader(false);
$pdf->setPrintFooter(false);
$pdf->AddPage();
@@ -2326,7 +2326,7 @@ if (isset($_GET['export_invoice_pdf'])) {
// Totals
$html .= '
- | ' . nl2br($invoice_note) . ' |
+ ' . nl2br($invoice_note) . ' |
| Subtotal: | ' . numfmt_format_currency($currency_format, $sub_total, $invoice_currency_code) . ' | ';
diff --git a/user/post/quote.php b/user/post/quote.php
index 608376ec..fcfd70fe 100644
--- a/user/post/quote.php
+++ b/user/post/quote.php
@@ -669,7 +669,7 @@ if (isset($_GET['export_quote_pdf'])) {
// Start TCPDF
$pdf = new TCPDF('P', 'mm', 'A4', true, 'UTF-8', false);
- $pdf->SetMargins(15, 15, 15);
+ $pdf->SetMargins(10, 10, 10);
$pdf->setPrintHeader(false);
$pdf->setPrintFooter(false);
$pdf->AddPage();
@@ -766,7 +766,7 @@ if (isset($_GET['export_quote_pdf'])) {
// Totals
$html .= '
- | ' . nl2br($quote_note) . ' |
+ ' . nl2br($quote_note) . ' |
| Subtotal: | ' . numfmt_format_currency($currency_format, $sub_total, $quote_currency_code) . ' | ';
| | | |