mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-07 10:24:31 -04:00
Add history as available include for recurring invoices
This commit is contained in:
parent
f0d2e82d0c
commit
6aa576a342
@ -12,11 +12,13 @@
|
|||||||
namespace App\Transformers;
|
namespace App\Transformers;
|
||||||
|
|
||||||
use App\Models\Activity;
|
use App\Models\Activity;
|
||||||
|
use App\Models\Backup;
|
||||||
use App\Models\Document;
|
use App\Models\Document;
|
||||||
use App\Models\Invoice;
|
use App\Models\Invoice;
|
||||||
use App\Models\RecurringInvoice;
|
use App\Models\RecurringInvoice;
|
||||||
use App\Models\RecurringInvoiceInvitation;
|
use App\Models\RecurringInvoiceInvitation;
|
||||||
use App\Transformers\ActivityTransformer;
|
use App\Transformers\ActivityTransformer;
|
||||||
|
use App\Transformers\InvoiceHistoryTransformer;
|
||||||
use App\Utils\Traits\MakesHash;
|
use App\Utils\Traits\MakesHash;
|
||||||
|
|
||||||
class RecurringInvoiceTransformer extends EntityTransformer
|
class RecurringInvoiceTransformer extends EntityTransformer
|
||||||
@ -32,7 +34,7 @@ class RecurringInvoiceTransformer extends EntityTransformer
|
|||||||
'invitations',
|
'invitations',
|
||||||
'documents',
|
'documents',
|
||||||
'activities',
|
'activities',
|
||||||
// 'payments',
|
'history',
|
||||||
// 'client',
|
// 'client',
|
||||||
];
|
];
|
||||||
|
|
||||||
@ -65,6 +67,14 @@ class RecurringInvoiceTransformer extends EntityTransformer
|
|||||||
return $this->includeItem($invoice->client, $transformer, ENTITY_CLIENT);
|
return $this->includeItem($invoice->client, $transformer, ENTITY_CLIENT);
|
||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
public function includeHistory(RecurringInvoice $invoice)
|
||||||
|
{
|
||||||
|
$transformer = new InvoiceHistoryTransformer($this->serializer);
|
||||||
|
|
||||||
|
return $this->includeCollection($invoice->history, $transformer, Backup::class);
|
||||||
|
}
|
||||||
|
|
||||||
public function includeActivities(RecurringInvoice $invoice)
|
public function includeActivities(RecurringInvoice $invoice)
|
||||||
{
|
{
|
||||||
$transformer = new ActivityTransformer($this->serializer);
|
$transformer = new ActivityTransformer($this->serializer);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user