2020-08-04 13:33:38 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-08-04 13:33:38 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-08-04 13:33:38 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
2020-08-07 15:58:05 +02:00
|
|
|
namespace App\Services\PdfMaker\Designs\Utilities;
|
2020-08-04 13:33:38 +02:00
|
|
|
|
2020-11-06 13:13:04 +01:00
|
|
|
use App\Utils\Traits\MakesHash;
|
2020-08-11 17:19:52 +02:00
|
|
|
use DOMDocument;
|
|
|
|
use DOMXPath;
|
2020-10-28 11:10:49 +01:00
|
|
|
use Exception;
|
2020-08-11 17:19:52 +02:00
|
|
|
|
2020-08-10 17:07:30 +02:00
|
|
|
trait DesignHelpers
|
2020-08-04 13:33:38 +02:00
|
|
|
{
|
2020-11-06 13:13:04 +01:00
|
|
|
use MakesHash;
|
|
|
|
|
2020-08-11 17:19:52 +02:00
|
|
|
public $document;
|
|
|
|
|
|
|
|
public $xpath;
|
|
|
|
|
|
|
|
public function setup(): self
|
|
|
|
{
|
|
|
|
if (isset($this->context['client'])) {
|
|
|
|
$this->client = $this->context['client'];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($this->context['entity'])) {
|
|
|
|
$this->entity = $this->context['entity'];
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->document();
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialize local dom document instance. Used for getting raw HTML out of template.
|
2020-09-06 11:38:10 +02:00
|
|
|
*
|
|
|
|
* @return $this
|
2020-08-11 17:19:52 +02:00
|
|
|
*/
|
|
|
|
public function document(): self
|
|
|
|
{
|
|
|
|
$document = new DOMDocument();
|
|
|
|
|
|
|
|
$document->validateOnParse = true;
|
|
|
|
@$document->loadHTML($this->html());
|
|
|
|
|
|
|
|
$this->document = $document;
|
|
|
|
$this->xpath = new DOMXPath($document);
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get specific section HTML.
|
2020-09-06 11:38:10 +02:00
|
|
|
*
|
|
|
|
* @param string $section
|
|
|
|
* @param bool $id
|
|
|
|
* @return null|string
|
2020-08-11 17:19:52 +02:00
|
|
|
*/
|
|
|
|
public function getSectionHTML(string $section, $id = true): ?string
|
|
|
|
{
|
|
|
|
if ($id) {
|
|
|
|
$element = $this->document->getElementById($section);
|
|
|
|
} else {
|
|
|
|
$elements = $this->document->getElementsByTagName($section);
|
|
|
|
$element = $elements[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
$document = new DOMDocument();
|
|
|
|
$document->preserveWhiteSpace = false;
|
|
|
|
$document->formatOutput = true;
|
|
|
|
|
|
|
|
if ($element) {
|
|
|
|
$document->appendChild(
|
|
|
|
$document->importNode($element, true)
|
|
|
|
);
|
|
|
|
|
2020-09-09 17:14:55 +02:00
|
|
|
$html = $document->saveHTML();
|
2020-09-09 14:47:26 +02:00
|
|
|
|
|
|
|
return str_replace('%24', '$', $html);
|
2020-08-11 17:19:52 +02:00
|
|
|
}
|
|
|
|
|
2020-08-20 17:48:10 +02:00
|
|
|
return '';
|
2020-08-11 17:19:52 +02:00
|
|
|
}
|
|
|
|
|
2020-08-04 13:33:38 +02:00
|
|
|
/**
|
|
|
|
* This method will help us decide either we show
|
|
|
|
* one "tax rate" column in the table or 3 custom tax rates.
|
2020-09-06 11:38:10 +02:00
|
|
|
*
|
2020-08-04 13:33:38 +02:00
|
|
|
* Logic below will help us calculate that & inject the result in the
|
|
|
|
* global state of the $context (design state).
|
2020-11-25 15:19:52 +01:00
|
|
|
*
|
2020-11-04 14:56:08 +01:00
|
|
|
* @param string $type "product" or "task"
|
2020-08-04 13:33:38 +02:00
|
|
|
* @return void
|
|
|
|
*/
|
2020-11-04 14:56:08 +01:00
|
|
|
public function processTaxColumns(string $type): void
|
2020-08-04 13:33:38 +02:00
|
|
|
{
|
2020-11-04 14:56:08 +01:00
|
|
|
if ($type == 'product') {
|
|
|
|
$type_id = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($type == 'task') {
|
|
|
|
$type_id = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
// At the moment we pass "task" or "product" as type.
|
|
|
|
// However, "pdf_variables" contains "$task.tax" or "$product.tax" <-- Notice the dollar sign.
|
|
|
|
// This sprintf() will help us convert "task" or "product" into "$task" or "$product" without
|
|
|
|
// evaluating the variable.
|
|
|
|
|
2021-01-05 17:48:06 +01:00
|
|
|
if (in_array(sprintf('%s%s.tax', '$', $type), (array)$this->context['pdf_variables']["{$type}_columns"])) {
|
2020-11-04 14:56:08 +01:00
|
|
|
$line_items = collect($this->entity->line_items)->filter(function ($item) use ($type_id) {
|
|
|
|
return $item->type_id = $type_id;
|
|
|
|
});
|
|
|
|
|
|
|
|
$tax1 = $line_items->where('tax_name1', '<>', '')->where('type_id', $type_id)->count();
|
|
|
|
$tax2 = $line_items->where('tax_name2', '<>', '')->where('type_id', $type_id)->count();
|
|
|
|
$tax3 = $line_items->where('tax_name3', '<>', '')->where('type_id', $type_id)->count();
|
2020-08-04 13:33:38 +02:00
|
|
|
|
|
|
|
$taxes = [];
|
|
|
|
|
|
|
|
if ($tax1 > 0) {
|
2020-11-04 14:56:08 +01:00
|
|
|
array_push($taxes, sprintf('%s%s.tax_rate1', '$', $type));
|
2020-08-04 13:33:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($tax2 > 0) {
|
2020-11-04 14:56:08 +01:00
|
|
|
array_push($taxes, sprintf('%s%s.tax_rate2', '$', $type));
|
2020-08-04 13:33:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($tax3 > 0) {
|
2020-11-04 14:56:08 +01:00
|
|
|
array_push($taxes, sprintf('%s%s.tax_rate3', '$', $type));
|
2020-08-04 13:33:38 +02:00
|
|
|
}
|
|
|
|
|
2020-11-04 14:56:08 +01:00
|
|
|
$key = array_search(sprintf('%s%s.tax', '$', $type), $this->context['pdf_variables']["{$type}_columns"], true);
|
2020-08-04 13:33:38 +02:00
|
|
|
|
|
|
|
if ($key) {
|
2020-11-04 14:56:08 +01:00
|
|
|
array_splice($this->context['pdf_variables']["{$type}_columns"], $key, 1, $taxes);
|
2020-08-04 13:33:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-08-07 15:58:05 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Calculates the remaining colspans.
|
2020-09-06 11:38:10 +02:00
|
|
|
*
|
|
|
|
* @param int $taken
|
|
|
|
* @return int
|
2020-08-07 15:58:05 +02:00
|
|
|
*/
|
|
|
|
public function calculateColspan(int $taken): int
|
|
|
|
{
|
2021-01-05 17:48:06 +01:00
|
|
|
$total = (int)count($this->context['pdf_variables']['product_columns']);
|
2020-08-07 15:58:05 +02:00
|
|
|
|
2021-01-05 17:48:06 +01:00
|
|
|
return (int)$total - $taken;
|
2020-08-07 15:58:05 +02:00
|
|
|
}
|
2020-08-07 18:30:04 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return "true" or "false" based on null or empty check.
|
|
|
|
* We need to return false as string because of HTML parsing.
|
2020-09-06 11:38:10 +02:00
|
|
|
*
|
|
|
|
* @param mixed $property
|
|
|
|
* @return string
|
2020-08-07 18:30:04 +02:00
|
|
|
*/
|
2020-08-10 12:57:53 +02:00
|
|
|
public function toggleHiddenProperty($property): string
|
2020-08-07 18:30:04 +02:00
|
|
|
{
|
|
|
|
if (is_null($property)) {
|
|
|
|
return 'false';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (empty($property)) {
|
|
|
|
return 'false';
|
|
|
|
}
|
|
|
|
|
|
|
|
return 'true';
|
|
|
|
}
|
2020-08-11 17:53:11 +02:00
|
|
|
|
|
|
|
public function sharedFooterElements()
|
|
|
|
{
|
2021-01-05 17:48:06 +01:00
|
|
|
// Unminified version, just for the reference.
|
|
|
|
// By default all table headers are hidden with HTML `hidden` property.
|
|
|
|
// This will check for table data values & if they're not empty it will remove hidden from the column itself.
|
|
|
|
|
|
|
|
/* document.querySelectorAll("tbody > tr > td").forEach(e => {
|
|
|
|
if ("" !== e.innerText) {
|
|
|
|
let t = e.getAttribute("data-ref").slice(0, -3);
|
|
|
|
document.querySelector(`th[data-ref="${t}-th"]`).removeAttribute("hidden");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
document.querySelectorAll("tbody > tr > td").forEach(e => {
|
|
|
|
let t = e.getAttribute("data-ref").slice(0, -3);
|
|
|
|
t = document.querySelector(`th[data-ref="${t}-th"]`);
|
|
|
|
|
|
|
|
if (!t.hasAttribute('hidden')) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ("" == e.innerText) {
|
|
|
|
e.setAttribute('hidden', 'true');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
*/
|
|
|
|
|
|
|
|
$javascript = 'document.querySelectorAll("tbody > tr > td").forEach(t=>{if(""!==t.innerText){let e=t.getAttribute("data-ref").slice(0,-3);document.querySelector(`th[data-ref="${e}-th"]`).removeAttribute("hidden")}}),document.querySelectorAll("tbody > tr > td").forEach(t=>{let e=t.getAttribute("data-ref").slice(0,-3);(e=document.querySelector(`th[data-ref="${e}-th"]`)).hasAttribute("hidden")&&""==t.innerText&&t.setAttribute("hidden","true")});';
|
2020-09-17 14:28:55 +02:00
|
|
|
|
2021-01-05 17:48:06 +01:00
|
|
|
return ['element' => 'div', 'elements' => [
|
|
|
|
['element' => 'script', 'content' => $javascript],
|
|
|
|
]];
|
2020-08-11 17:53:11 +02:00
|
|
|
}
|
2020-08-14 14:53:55 +02:00
|
|
|
|
|
|
|
public function entityVariableCheck(string $variable): bool
|
|
|
|
{
|
|
|
|
// Extract $invoice.date => date
|
|
|
|
// so we can append date as $entity->date and not $entity->$invoice.date;
|
|
|
|
|
2020-11-20 14:31:47 +01:00
|
|
|
// When it comes to invoice balance, we'll always show it.
|
|
|
|
if ($variable == '$invoice.total') {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-08-14 14:53:55 +02:00
|
|
|
try {
|
|
|
|
$_variable = explode('.', $variable)[1];
|
2020-10-28 11:10:49 +01:00
|
|
|
} catch (Exception $e) {
|
|
|
|
throw new Exception('Company settings seems to be broken. Missing $entity.variable type.');
|
2020-08-14 14:53:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (is_null($this->entity->{$_variable})) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (empty($this->entity->{$_variable})) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2020-09-08 13:21:07 +02:00
|
|
|
|
|
|
|
public function composeFromPartials(array $partials)
|
|
|
|
{
|
|
|
|
$html = '';
|
|
|
|
|
2020-10-07 18:42:41 +02:00
|
|
|
$html .= $partials['includes'];
|
2020-09-08 13:21:07 +02:00
|
|
|
$html .= $partials['header'];
|
|
|
|
$html .= $partials['body'];
|
|
|
|
$html .= $partials['footer'];
|
|
|
|
|
|
|
|
return $html;
|
|
|
|
}
|
2020-11-06 13:13:04 +01:00
|
|
|
|
2020-12-22 13:56:09 +01:00
|
|
|
public function processCustomColumns(string $type): void
|
|
|
|
{
|
|
|
|
$custom_columns = [];
|
|
|
|
|
2021-01-05 17:48:06 +01:00
|
|
|
foreach ((array)$this->client->company->custom_fields as $field => $value) {
|
2020-12-22 13:56:09 +01:00
|
|
|
info($field);
|
|
|
|
|
|
|
|
if (\Illuminate\Support\Str::startsWith($field, $type)) {
|
|
|
|
$custom_columns[] = '$' . $type . '.' . $field;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$key = array_search(sprintf('%s%s.description', '$', $type), $this->context['pdf_variables']["{$type}_columns"], true);
|
|
|
|
|
|
|
|
if ($key) {
|
|
|
|
array_splice($this->context['pdf_variables']["{$type}_columns"], $key + 1, 0, $custom_columns);
|
|
|
|
}
|
|
|
|
}
|
2021-03-10 16:55:49 +01:00
|
|
|
|
|
|
|
public function getCustomFieldValue(string $field): string
|
|
|
|
{
|
|
|
|
// In custom_fields column we store fields like: company1-4,
|
|
|
|
// while in settings, they're stored in custom_value1-4 format.
|
|
|
|
// That's why we need this mapping.
|
|
|
|
|
|
|
|
$fields = [
|
|
|
|
'company1' => 'custom_value1',
|
|
|
|
'company2' => 'custom_value2',
|
|
|
|
'company3' => 'custom_value3',
|
|
|
|
'company4' => 'custom_value4',
|
|
|
|
];
|
|
|
|
|
|
|
|
if (!array_key_exists($field, $fields)) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2021-03-13 09:36:00 +01:00
|
|
|
if ($this->client->company->custom_fields && !property_exists($this->client->company->custom_fields, $field)) {
|
2021-03-10 16:55:49 +01:00
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
$value = $this->client->company->getSetting($fields[$field]);
|
|
|
|
|
|
|
|
return (new \App\Utils\Helpers)->formatCustomFieldValue(
|
|
|
|
$this->client->company->custom_fields,
|
|
|
|
$field,
|
|
|
|
$value,
|
|
|
|
$this->client
|
|
|
|
);
|
|
|
|
}
|
2020-08-04 13:33:38 +02:00
|
|
|
}
|