mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
Bug fixes
This commit is contained in:
parent
b0942449bb
commit
213579ff34
@ -122,12 +122,10 @@ class PaymentController extends \BaseController
|
||||
$gateway->$function($val);
|
||||
}
|
||||
|
||||
/*
|
||||
if (!Utils::isProd())
|
||||
if (Utils::isNinjaDev())
|
||||
{
|
||||
$gateway->setTestMode(true);
|
||||
}
|
||||
*/
|
||||
}
|
||||
|
||||
return $gateway;
|
||||
}
|
||||
|
@ -268,13 +268,13 @@ class Activity extends Eloquent
|
||||
{
|
||||
$activity = Activity::getBlank($client);
|
||||
$activity->contact_id = $payment->contact_id;
|
||||
$activity->message = Utils::encodeActivity($payment->invitation->contact, 'entered ' . $payment->getName());
|
||||
$activity->message = Utils::encodeActivity($payment->invitation->contact, 'entered ' . $payment->getName() . ' for ', $payment->invoice);
|
||||
}
|
||||
else
|
||||
{
|
||||
$activity = Activity::getBlank();
|
||||
$message = $payment->payment_type_id == PAYMENT_TYPE_CREDIT ? 'applied credit' : 'entered ' . $payment->getName();
|
||||
$activity->message = Utils::encodeActivity(Auth::user(), $message);
|
||||
$message = $payment->payment_type_id == PAYMENT_TYPE_CREDIT ? 'applied credit for ' : 'entered ' . $payment->getName() . ' for ';
|
||||
$activity->message = Utils::encodeActivity(Auth::user(), $message, $payment->invoice);
|
||||
}
|
||||
|
||||
$activity->payment_id = $payment->id;
|
||||
|
@ -188,7 +188,7 @@ class ClientRepository
|
||||
|
||||
public function bulk($ids, $action)
|
||||
{
|
||||
$clients = Client::scope($ids)->get();
|
||||
$clients = Client::withTrashed()->scope($ids)->get();
|
||||
|
||||
foreach ($clients as $client)
|
||||
{
|
||||
|
@ -66,7 +66,7 @@ class CreditRepository
|
||||
return 0;
|
||||
}
|
||||
|
||||
$credits = Credit::scope($ids)->get();
|
||||
$credits = Credit::withTrashed()->scope($ids)->get();
|
||||
|
||||
foreach ($credits as $credit)
|
||||
{
|
||||
|
@ -435,7 +435,7 @@ class InvoiceRepository
|
||||
return 0;
|
||||
}
|
||||
|
||||
$invoices = Invoice::scope($ids)->get();
|
||||
$invoices = Invoice::withTrashed()->scope($ids)->get();
|
||||
|
||||
foreach ($invoices as $invoice)
|
||||
{
|
||||
|
@ -112,7 +112,7 @@ class PaymentRepository
|
||||
return 0;
|
||||
}
|
||||
|
||||
$payments = Payment::scope($ids)->get();
|
||||
$payments = Payment::withTrashed()->scope($ids)->get();
|
||||
|
||||
foreach ($payments as $payment)
|
||||
{
|
||||
|
@ -385,7 +385,8 @@ Want something changed? We're {{ link_to('https://github.com/hillelcoren/invoice
|
||||
|
||||
@endif
|
||||
|
||||
@if (!Utils::isNinjaProd() && !Utils::isNinjaDev())
|
||||
{{-- Per our license, please do not remove or modify this link. --}}
|
||||
@if (!Utils::isNinja())
|
||||
<div class="container">{{ trans('texts.powered_by') }} <a href="https://www.invoiceninja.com/?utm_source=powered_by" target="_blank">InvoiceNinja.com</a></div>
|
||||
@endif
|
||||
|
||||
|
@ -93,7 +93,6 @@
|
||||
|
||||
@yield('body')
|
||||
|
||||
|
||||
<script type="text/javascript">
|
||||
NINJA.formIsChanged = false;
|
||||
$(function() {
|
||||
|
@ -121,6 +121,7 @@
|
||||
<div class="navbar" style="margin-bottom:0px">
|
||||
<div class="container">
|
||||
<div class="navbar-header">
|
||||
{{-- Per our license, please do not remove or modify this link. --}}
|
||||
<a class="navbar-brand" href="https://www.invoiceninja.com/"><img src="{{ asset('images/invoiceninja-logo.png') }}"></a>
|
||||
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
|
||||
<span class="sr-only">Toggle navigation</span>
|
||||
|
Loading…
Reference in New Issue
Block a user