1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-13 22:54:25 +01:00

Prevent quotes from being paid

This commit is contained in:
Hillel Coren 2017-06-18 17:09:20 +03:00
parent f1c22180f6
commit 7696ba610c

View File

@ -150,6 +150,7 @@ class ClientPortalController extends BaseController
'gatewayTypeId' => count($paymentTypes) == 1 ? $paymentTypes[0]['gatewayTypeId'] : false,
];
if ($invoice->canBePaid()) {
if ($paymentDriver = $account->paymentDriver($invitation, GATEWAY_TYPE_CREDIT_CARD)) {
$data += [
'transactionToken' => $paymentDriver->createTransactionToken(),
@ -164,6 +165,7 @@ class ClientPortalController extends BaseController
'customGatewayText' => $accountGateway->getConfigField('text'),
];
}
}
if ($account->hasFeature(FEATURE_DOCUMENTS) && $this->canCreateZip()) {
$zipDocs = $this->getInvoiceZipDocuments($invoice, $size);