mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-14 15:13:29 +01:00
23 lines
450 B
PHP
23 lines
450 B
PHP
<?php
|
|
|
|
namespace App\Ninja\Intents\WebApp;
|
|
|
|
use App\Ninja\Intents\InvoiceIntent;
|
|
|
|
class ListQuoteIntent extends InvoiceIntent
|
|
{
|
|
public function process()
|
|
{
|
|
$this->loadStates(ENTITY_QUOTE);
|
|
$this->loadStatuses(ENTITY_QUOTE);
|
|
|
|
if ($client = $this->requestClient()) {
|
|
$url = $client->present()->url . '#quotes';
|
|
} else {
|
|
$url = '/quotes';
|
|
}
|
|
|
|
return redirect($url);
|
|
}
|
|
}
|