mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-07 15:54:31 -04:00
commit
ce726a6efc
@ -1 +1 @@
|
||||
5.8.41
|
||||
5.8.42
|
@ -380,6 +380,7 @@ class RoEInvoice extends AbstractService
|
||||
Product::PRODUCT_TYPE_DIGITAL => $code = 'S', // STANDARD_RATE =
|
||||
Product::PRODUCT_TYPE_SHIPPING => $code = 'S', // STANDARD_RATE =
|
||||
Product::PRODUCT_TYPE_OVERRIDE_TAX => $code = 'S', // STANDARD_RATE =
|
||||
default => $code = 'S',
|
||||
};
|
||||
|
||||
return $code;
|
||||
|
@ -17,8 +17,8 @@ return [
|
||||
'require_https' => env('REQUIRE_HTTPS', true),
|
||||
'app_url' => rtrim(env('APP_URL', ''), '/'),
|
||||
'app_domain' => env('APP_DOMAIN', 'invoicing.co'),
|
||||
'app_version' => env('APP_VERSION', '5.8.41'),
|
||||
'app_tag' => env('APP_TAG', '5.8.41'),
|
||||
'app_version' => env('APP_VERSION', '5.8.42'),
|
||||
'app_tag' => env('APP_TAG', '5.8.42'),
|
||||
'minimum_client_version' => '5.0.16',
|
||||
'terms_version' => '1.0.1',
|
||||
'api_secret' => env('API_SECRET', false),
|
||||
|
@ -1,31 +1 @@
|
||||
<!DOCTYPE html>
|
||||
<html data-report-errors="{{ $report_errors }}" data-rc="{{ $rc }}" data-user-agent="{{ $user_agent }}" data-login="{{ $login }}">
|
||||
<head>
|
||||
<!-- Source: https://github.com/invoiceninja/invoiceninja -->
|
||||
<!-- Version: {{ config('ninja.app_version') }} -->
|
||||
<meta charset="UTF-8">
|
||||
<title>{{ config('ninja.app_name') }}</title>
|
||||
<meta name="google-signin-client_id" content="{{ config('services.google.client_id') }}">
|
||||
|
||||
@include('react.head')
|
||||
|
||||
</head>
|
||||
|
||||
<body class="h-full">
|
||||
<noscript>You need to enable JavaScript to run this app.</noscript>
|
||||
<div id="root"></div>
|
||||
|
||||
</body>
|
||||
|
||||
<!--
|
||||
|
||||
If you are reading this, there is a fair change that the react application has not loaded for you. There are a couple of solutions:
|
||||
|
||||
1. Download the release file from https://github.com/invoiceninja/invoiceninja and overwrite your current installation.
|
||||
2. Switch back to the Flutter application by editing the database, you can do this with the following SQL
|
||||
|
||||
UPDATE accounts SET
|
||||
set_react_as_default_ap = 0;
|
||||
|
||||
-->
|
||||
</html>
|
||||
<?php include public_path('react/index.html');
|
Loading…
x
Reference in New Issue
Block a user