autofixes

This commit is contained in:
Dennis Eichhorn 2024-04-07 17:47:06 +00:00
parent c958be1f1c
commit 1dfa486463
4 changed files with 11 additions and 11 deletions

View File

@ -22,7 +22,7 @@ return [
[
'dest' => '\Modules\Finance\Controller\BackendController:viewDashboard',
'verb' => RouteVerb::GET,
'active' => true,
'active' => true,
'permission' => [
'module' => BackendController::NAME,
'type' => PermissionType::READ,
@ -34,7 +34,7 @@ return [
[
'dest' => '\Modules\Finance\Controller\BackendController:viewTaxList',
'verb' => RouteVerb::GET,
'active' => true,
'active' => true,
'permission' => [
'module' => BackendController::NAME,
'type' => PermissionType::READ,
@ -46,7 +46,7 @@ return [
[
'dest' => '\Modules\Finance\Controller\BackendController:viewTaxCode',
'verb' => RouteVerb::GET,
'active' => true,
'active' => true,
'permission' => [
'module' => BackendController::NAME,
'type' => PermissionType::READ,
@ -58,7 +58,7 @@ return [
[
'dest' => '\Modules\Finance\Controller\BackendController:viewTaxCreate',
'verb' => RouteVerb::GET,
'active' => true,
'active' => true,
'permission' => [
'module' => BackendController::NAME,
'type' => PermissionType::CREATE,

View File

@ -105,9 +105,9 @@ return ['Finance' => [
'TaxCodes' => 'Steuerkz.',
'TaxCode' => 'Steuerkz.',
'Purchase' => 'Einkauf',
'InvoicePercentage' => 'Rechnungsprozentsatz',
'OutputPercentage' => 'Umsatzsteuerprozentsatz',
'InputPercentage' => 'Vorsteuerprozentsatz',
'InvoicePercentage' => 'Rechnungsprozentsatz',
'OutputPercentage' => 'Umsatzsteuerprozentsatz',
'InputPercentage' => 'Vorsteuerprozentsatz',
'Tax1Account' => 'Steuerkonto 1',
'Tax2Account' => 'Steyerkonto 2',
]];

View File

@ -104,9 +104,9 @@ return ['Finance' => [
'TaxCodes' => 'Tax Codes',
'TaxCode' => 'Tax Code',
'Purchase' => 'Purchase',
'InvoicePercentage' => 'Invoice Percentage',
'OutputPercentage' => 'Sales Percentage',
'InputPercentage' => 'Input Percentage',
'InvoicePercentage' => 'Invoice Percentage',
'OutputPercentage' => 'Sales Percentage',
'InputPercentage' => 'Input Percentage',
'Tax1Account' => 'Tax Account 1',
'Tax2Account' => 'Tax Account 2',
]];

View File

@ -17,7 +17,7 @@ use phpOMS\Stdlib\Base\FloatInt;
use phpOMS\Uri\UriFactory;
$taxcode = $this->data['taxcode'] ?? new NullTaxCode();
$isNew = $taxcode->id === 0;
$isNew = $taxcode->id === 0;
/** @var \phpOMS\Views\View $this */
echo $this->data['nav']->render(); ?>