mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-11-25 04:45:32 -05:00
* Working on advanced email settings * working on document storage * Email Documents if they exist * UBL invoices * UBL Invoices * Fixes for tests
50 lines
1011 B
PHP
50 lines
1011 B
PHP
<?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
|
|
*/
|
|
|
|
namespace App\Utils\Traits;
|
|
|
|
use App\Jobs\Util\UploadFile;
|
|
use App\Models\Account;
|
|
use App\Models\Company;
|
|
|
|
trait SavesDocuments
|
|
{
|
|
|
|
public function saveDocuments($document_array, $entity)
|
|
{
|
|
|
|
if($entity instanceof Company){
|
|
$account = $entity->account;
|
|
$company = $entity;
|
|
}
|
|
else{
|
|
$account = $entity->company->account;
|
|
$company = $entity->company;
|
|
}
|
|
|
|
if(!$account->hasFeature(Account::FEATURE_DOCUMENTS))
|
|
return false;
|
|
|
|
foreach($document_array as $document) {
|
|
|
|
$document = UploadFile::dispatchNow(
|
|
$document,
|
|
UploadFile::DOCUMENT,
|
|
$entity->user,
|
|
$entity->company,
|
|
$entity
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
}
|