mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
commit
e1bec4f30a
@ -1 +1 @@
|
|||||||
5.3.89
|
5.3.90
|
@ -138,6 +138,27 @@ class InvoiceFilters extends QueryFilters
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function upcoming()
|
||||||
|
{
|
||||||
|
return $this->builder
|
||||||
|
->where(function ($query) {
|
||||||
|
$query->whereNull('due_date')
|
||||||
|
->orWhere('due_date', '>', now());
|
||||||
|
})
|
||||||
|
->orderBy('due_date', 'ASC');
|
||||||
|
}
|
||||||
|
|
||||||
|
public function overdue()
|
||||||
|
{
|
||||||
|
$this->builder->whereIn('status_id', [Invoice::STATUS_SENT, Invoice::STATUS_PARTIAL])
|
||||||
|
->where('is_deleted', 0)
|
||||||
|
->where(function ($query) {
|
||||||
|
$query->where('due_date', '<', now())
|
||||||
|
->orWhere('partial_due_date', '<', now());
|
||||||
|
})
|
||||||
|
->orderBy('due_date', 'ASC');
|
||||||
|
}
|
||||||
|
|
||||||
public function payable(string $client_id)
|
public function payable(string $client_id)
|
||||||
{
|
{
|
||||||
if (strlen($client_id) == 0) {
|
if (strlen($client_id) == 0) {
|
||||||
|
@ -54,7 +54,7 @@ return [
|
|||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'asset_url' => env('ASSET_URL', null),
|
'asset_url' => null,
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
|
@ -14,8 +14,8 @@ return [
|
|||||||
'require_https' => env('REQUIRE_HTTPS', true),
|
'require_https' => env('REQUIRE_HTTPS', true),
|
||||||
'app_url' => rtrim(env('APP_URL', ''), '/'),
|
'app_url' => rtrim(env('APP_URL', ''), '/'),
|
||||||
'app_domain' => env('APP_DOMAIN', 'invoicing.co'),
|
'app_domain' => env('APP_DOMAIN', 'invoicing.co'),
|
||||||
'app_version' => '5.3.89',
|
'app_version' => '5.3.90',
|
||||||
'app_tag' => '5.3.89',
|
'app_tag' => '5.3.90',
|
||||||
'minimum_client_version' => '5.0.16',
|
'minimum_client_version' => '5.0.16',
|
||||||
'terms_version' => '1.0.1',
|
'terms_version' => '1.0.1',
|
||||||
'api_secret' => env('API_SECRET', ''),
|
'api_secret' => env('API_SECRET', ''),
|
||||||
|
2
public/vendor/livewire/livewire.js
vendored
2
public/vendor/livewire/livewire.js
vendored
File diff suppressed because one or more lines are too long
2
public/vendor/livewire/livewire.js.map
vendored
2
public/vendor/livewire/livewire.js.map
vendored
File diff suppressed because one or more lines are too long
2
public/vendor/livewire/manifest.json
vendored
2
public/vendor/livewire/manifest.json
vendored
@ -1 +1 @@
|
|||||||
{"/livewire.js":"/livewire.js?id=940557fc56b15ccb9a2d"}
|
{"/livewire.js":"/livewire.js?id=c69d0f2801c01fcf8166"}
|
Loading…
x
Reference in New Issue
Block a user