2020-03-16 11:12:10 +01:00
|
|
|
<?php
|
2020-09-07 12:18:56 +02:00
|
|
|
/**
|
|
|
|
* 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-03-16 11:12:10 +01:00
|
|
|
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
|
|
|
|
use App\Models\Design;
|
|
|
|
use Illuminate\Console\Command;
|
|
|
|
|
|
|
|
class DesignUpdate extends Command
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The name and signature of the console command.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $signature = 'ninja:design-update';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The console command description.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $description = 'Update the system designs when changes are made.';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new command instance.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
parent::__construct();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Execute the console command.
|
|
|
|
*
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function handle()
|
|
|
|
{
|
2020-03-21 06:37:30 +01:00
|
|
|
foreach (Design::whereIsCustom(false)->get() as $design) {
|
2020-08-11 18:36:56 +02:00
|
|
|
$class = 'App\Services\PdfMaker\Designs\\'.$design->name;
|
2020-03-16 11:12:10 +01:00
|
|
|
$invoice_design = new $class();
|
2020-08-11 18:36:56 +02:00
|
|
|
$invoice_design->document();
|
2020-03-16 11:12:10 +01:00
|
|
|
|
|
|
|
$design_object = new \stdClass;
|
2020-10-07 18:42:41 +02:00
|
|
|
$design_object->includes = $invoice_design->getSectionHTML('style');
|
|
|
|
$design_object->header = $invoice_design->getSectionHTML('header');
|
|
|
|
$design_object->body = $invoice_design->getSectionHTML('body');
|
|
|
|
$design_object->product = '';
|
|
|
|
$design_object->task = '';
|
|
|
|
$design_object->footer = $invoice_design->getSectionHTML('footer');
|
2020-03-16 11:12:10 +01:00
|
|
|
|
|
|
|
$design->design = $design_object;
|
|
|
|
$design->save();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|