diff --git a/README.md b/README.md index aea3ac5e748f..6c47deb6a6f4 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,7 @@ We're often asked to recommend Laravel/PHP developers to help setup our app and * Integrates with 50+ payment providers with [Omnipay](https://github.com/thephpleague/omnipay) * Recurring invoices with auto-billing * Expenses and vendors +* Import bank statements with [OFX](http://www.ofxhome.com/) * Tasks with time-tracking * File Attachments * Multi-user/multi-company support diff --git a/app/Http/Controllers/ExportController.php b/app/Http/Controllers/ExportController.php index c4467b4ac3d0..3f840bb5bb62 100644 --- a/app/Http/Controllers/ExportController.php +++ b/app/Http/Controllers/ExportController.php @@ -128,6 +128,7 @@ class ExportController extends BaseController if ($key === 'quotes') { $key = 'invoices'; $data['entityType'] = ENTITY_QUOTE; + $data['invoices'] = $data['quotes']; } $sheet->loadView("export.{$key}", $data); }); diff --git a/resources/views/clients/edit.blade.php b/resources/views/clients/edit.blade.php index afdc6fd0c32f..894b8dfa9758 100644 --- a/resources/views/clients/edit.blade.php +++ b/resources/views/clients/edit.blade.php @@ -1,6 +1,5 @@ @extends('header') - @section('onReady') $('input#name').focus(); @stop @@ -19,7 +18,7 @@ ['email' => 'email'] )->addClass('col-md-12 warn-on-exit') ->method($method) !!} - + @include('partials.autocomplete_fix') @if ($client) @@ -31,18 +30,18 @@