mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-12 22:22:32 +01:00
28 lines
694 B
PHP
28 lines
694 B
PHP
<?php
|
|
|
|
namespace App\Ninja\Intents\WebApp;
|
|
|
|
use App\Ninja\Intents\BaseIntent;
|
|
|
|
class CreatePaymentIntent extends BaseIntent
|
|
{
|
|
public function process()
|
|
{
|
|
$clientPublicId = 0;
|
|
$invoicePublicId = 0;
|
|
|
|
if ($invoice = $this->requestInvoice()) {
|
|
$invoicePublicId = $invoice->public_id;
|
|
} elseif ($client = $this->requestClient()) {
|
|
$clientPublicId = $client->public_id;
|
|
}
|
|
|
|
//$invoiceItems = $this->requestInvoiceItems();
|
|
|
|
$url = sprintf('/payments/create/%s/%s', $clientPublicId, $invoicePublicId);
|
|
//$url .= $this->requestFieldsAsString(Invoice::$requestFields);
|
|
|
|
return redirect($url);
|
|
}
|
|
}
|