2020-08-04 13:33:38 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @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-08-11 17:19:52 +02:00
|
|
|
use DOMDocument;
|
|
|
|
use DOMXPath;
|
|
|
|
|
2020-08-10 17:07:30 +02:00
|
|
|
trait DesignHelpers
|
2020-08-04 13:33:38 +02:00
|
|
|
{
|
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.
|
|
|
|
*
|
|
|
|
* @return $this
|
|
|
|
*/
|
|
|
|
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.
|
|
|
|
*
|
|
|
|
* @param string $section
|
|
|
|
* @param bool $id
|
|
|
|
* @return null|string
|
|
|
|
*/
|
|
|
|
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)
|
|
|
|
);
|
|
|
|
|
|
|
|
return $document->saveHTML();
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
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.
|
|
|
|
*
|
|
|
|
* Logic below will help us calculate that & inject the result in the
|
|
|
|
* global state of the $context (design state).
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function processTaxColumns(): void
|
|
|
|
{
|
2020-08-04 16:41:18 +02:00
|
|
|
if (in_array('$product.tax', $this->context['product-table-columns'])) {
|
2020-08-05 11:52:01 +02:00
|
|
|
$line_items = collect($this->entity->line_items);
|
2020-08-04 13:33:38 +02:00
|
|
|
|
|
|
|
$tax1 = $line_items->where('tax_name1', '<>', '')->where('type_id', 1)->count();
|
|
|
|
$tax2 = $line_items->where('tax_name2', '<>', '')->where('type_id', 1)->count();
|
|
|
|
$tax3 = $line_items->where('tax_name3', '<>', '')->where('type_id', 1)->count();
|
|
|
|
$taxes = [];
|
|
|
|
|
|
|
|
if ($tax1 > 0) {
|
|
|
|
array_push($taxes, '$product.tax_rate1');
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($tax2 > 0) {
|
|
|
|
array_push($taxes, '$product.tax_rate2');
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($tax3 > 0) {
|
|
|
|
array_push($taxes, '$product.tax_rate3');
|
|
|
|
}
|
|
|
|
|
|
|
|
$key = array_search('$product.tax', $this->context['product-table-columns'], true);
|
|
|
|
|
|
|
|
if ($key) {
|
|
|
|
array_splice($this->context['product-table-columns'], $key, 1, $taxes);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-08-07 15:58:05 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Calculates the remaining colspans.
|
|
|
|
*
|
|
|
|
* @param int $taken
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function calculateColspan(int $taken): int
|
|
|
|
{
|
|
|
|
$total = (int) count($this->context['product-table-columns']);
|
|
|
|
|
|
|
|
return (int)$total - $taken;
|
|
|
|
}
|
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-08-10 12:57:53 +02:00
|
|
|
* @param mixed $property
|
2020-08-07 18:30:04 +02:00
|
|
|
* @return string
|
|
|
|
*/
|
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()
|
|
|
|
{
|
|
|
|
return ['element' => 'div', 'properties' => ['class' => 'flex items-center justify-between mt-10'], 'content' => '', 'elements' => [
|
2020-08-13 13:46:53 +02:00
|
|
|
['element' => 'img', 'content' => '', 'properties' => ['src' => '$contact.signature', 'class' => 'h-32']],
|
|
|
|
['element' => 'img', 'content' => '', 'properties' => ['src' => '$app_url/images/created-by-invoiceninja-new.png', 'class' => 'h-24', 'hidden' => $this->entity->user->account->isPaid() ? 'true' : 'false']],
|
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;
|
|
|
|
|
|
|
|
try {
|
|
|
|
$_variable = explode('.', $variable)[1];
|
|
|
|
} catch (\Exception $e) {
|
|
|
|
throw new \Exception('Company settings seems to be broken. Missing $entity.variable type.');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_null($this->entity->{$_variable})) {
|
2020-08-17 00:58:52 +02:00
|
|
|
// info("{$this->entity->id} $_variable is null!");
|
2020-08-14 14:53:55 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (empty($this->entity->{$_variable})) {
|
2020-08-17 00:58:52 +02:00
|
|
|
// info("{$this->entity->id} $_variable is empty!");
|
2020-08-14 14:53:55 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-08-17 00:58:52 +02:00
|
|
|
// info("{$this->entity->id} $_variable ALL GOOD!!");
|
2020-08-14 14:53:55 +02:00
|
|
|
return false;
|
|
|
|
}
|
2020-08-04 13:33:38 +02:00
|
|
|
}
|