mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-05-24 02:14:21 -04:00
Update readme
This commit is contained in:
parent
9698099e21
commit
0e17559a8f
@ -10,9 +10,7 @@
|
||||
|
||||
## [Hosted](https://www.invoiceninja.com) | [Self-Hosted](https://www.invoiceninja.org)
|
||||
|
||||
Join us on [Slack](http://slack.invoiceninja.com), [Discord](https://discord.gg/ZwEdtfCwXA) [Discourse](https://forum.invoiceninja.com) -
|
||||
or [StackOverflow](https://stackoverflow.com/tags/invoice-ninja/) if you like,
|
||||
just make sure to add the `invoice-ninja` tag to your question.
|
||||
Join us on [Slack](http://slack.invoiceninja.com), [Discord](https://discord.gg/ZwEdtfCwXA), [Support Forum](https://forum.invoiceninja.com)
|
||||
|
||||
## Introduction
|
||||
|
||||
@ -27,13 +25,13 @@ We offer a $30 per year white-label license to remove the Invoice Ninja branding
|
||||
* [API Documentation](https://app.swaggerhub.com/apis/invoiceninja/invoiceninja)
|
||||
* [APP Documentation](https://invoiceninja.github.io/)
|
||||
* [Support Forum](https://forum.invoiceninja.com)
|
||||
* [StackOverflow](https://stackoverflow.com/tags/invoice-ninja/)
|
||||
|
||||
## Setup
|
||||
|
||||
### Mobile Apps
|
||||
* [iPhone](https://apps.apple.com/app/id1503970375?platform=iphone)
|
||||
* [Android](https://play.google.com/store/apps/details?id=com.invoiceninja.app)
|
||||
* [F-Droid](https://f-droid.org/en/packages/com.invoiceninja.app)
|
||||
|
||||
### Desktop Apps
|
||||
* [macOS](https://apps.apple.com/app/id1503970375?platform=mac)
|
||||
|
@ -42,7 +42,7 @@ class GenericReportRequest extends Request
|
||||
{
|
||||
$input = $this->all();
|
||||
|
||||
if (! array_key_exists('date_range', $input)) {
|
||||
if (! array_key_exists('date_range', $input) || $input['date_range'] == '') {
|
||||
$input['date_range'] = 'all';
|
||||
}
|
||||
|
||||
|
@ -46,7 +46,7 @@ class ProductSalesReportRequest extends Request
|
||||
{
|
||||
$input = $this->all();
|
||||
|
||||
if (! array_key_exists('date_range', $input)) {
|
||||
if (! array_key_exists('date_range', $input) || $input['date_range'] == '') {
|
||||
$input['date_range'] = 'all';
|
||||
}
|
||||
|
||||
|
@ -42,7 +42,7 @@ class ProfitLossRequest extends Request
|
||||
{
|
||||
$input = $this->all();
|
||||
|
||||
if (! array_key_exists('date_range', $input)) {
|
||||
if (! array_key_exists('date_range', $input) || $input['date_range'] == '') {
|
||||
$input['date_range'] = 'all';
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user