Merge remote-tracking branch 'upstream/master'

This commit is contained in:
rafael.sisweb 2015-11-16 08:21:10 -05:00
commit bd103ce6be
4 changed files with 52 additions and 46 deletions

View File

@ -11,7 +11,7 @@ If you'd like to use our code to sell your own invoicing app email us for detail
### Installation Options ### Installation Options
* [Self-Host Zip](https://www.invoiceninja.com/knowledgebase/self-host/) - Free * [Self-Host Zip](https://www.invoiceninja.com/knowledgebase/self-host/) - Free
* [Docker File](https://github.com/lalop/invoice-ninja-docker/blob/master/Dockerfile) - Free * [Docker File](https://github.com/invoiceninja/dockerfiles) - Free
* [Bitnami](https://bitnami.com/stack/invoice-ninja) - Free * [Bitnami](https://bitnami.com/stack/invoice-ninja) - Free
* [Softaculous](https://www.softaculous.com/apps/ecommerce/Invoice_Ninja) - $30 * [Softaculous](https://www.softaculous.com/apps/ecommerce/Invoice_Ninja) - $30

View File

@ -25,6 +25,7 @@
</tr> </tr>
@foreach ($invoices as $invoice) @foreach ($invoices as $invoice)
@if (!$invoice->client->is_deleted)
<tr> <tr>
<td>{{ $invoice->present()->client }}</td> <td>{{ $invoice->present()->client }}</td>
@if ($multiUser) @if ($multiUser)
@ -50,6 +51,7 @@
<td>{{ $invoice->custom_text_value2 }}</td> <td>{{ $invoice->custom_text_value2 }}</td>
@endif @endif
</tr> </tr>
@endif
@endforeach @endforeach
<tr><td></td></tr> <tr><td></td></tr>

View File

@ -11,6 +11,7 @@
</tr> </tr>
@foreach ($payments as $payment) @foreach ($payments as $payment)
@if (!$payment->client->is_deleted)
<tr> <tr>
<td>{{ $payment->present()->client }}</td> <td>{{ $payment->present()->client }}</td>
@if ($multiUser) @if ($multiUser)
@ -22,6 +23,7 @@
<td>{{ $payment->present()->method }}</td> <td>{{ $payment->present()->method }}</td>
<td>{{ $payment->transaction_reference }}</td> <td>{{ $payment->transaction_reference }}</td>
</tr> </tr>
@endif
@endforeach @endforeach
<tr><td></td></tr> <tr><td></td></tr>

View File

@ -9,6 +9,7 @@
</tr> </tr>
@foreach ($tasks as $task) @foreach ($tasks as $task)
@if (!$task->client || !$task->client->is_deleted)
<tr> <tr>
<td>{{ $task->present()->client }}</td> <td>{{ $task->present()->client }}</td>
@if ($multiUser) @if ($multiUser)
@ -18,6 +19,7 @@
<td>{{ $task->getDuration() }}</td> <td>{{ $task->getDuration() }}</td>
<td>{{ $task->description }}</td> <td>{{ $task->description }}</td>
</tr> </tr>
@endif
@endforeach @endforeach
<tr><td></td></tr> <tr><td></td></tr>