general fixes

This commit is contained in:
Dennis Eichhorn 2024-04-19 02:08:37 +00:00
parent 87edec7bfc
commit 694de69e52
3 changed files with 57 additions and 6 deletions

View File

@ -24,6 +24,7 @@ use Modules\FleetManagement\Models\Attribute\VehicleAttributeTypeMapper;
use Modules\FleetManagement\Models\Attribute\VehicleAttributeValueL11nMapper;
use Modules\FleetManagement\Models\Attribute\VehicleAttributeValueMapper;
use Modules\FleetManagement\Models\Driver\DriverInspectionMapper;
use Modules\FleetManagement\Models\Driver\DriverInspectionTypeMapper;
use Modules\FleetManagement\Models\Driver\DriverMapper;
use Modules\FleetManagement\Models\Inspection;
use Modules\FleetManagement\Models\InspectionMapper;
@ -243,7 +244,7 @@ final class BackendController extends Controller
$view->setTemplate('/Modules/FleetManagement/Theme/Backend/inspection-type-list');
$view->data['nav'] = $this->app->moduleManager->get('Navigation')->createNavigationMid(1003502001, $request, $response);
$view->data['inspections'] = InspectionTypeMapper::getAll()
$view->data['types'] = InspectionTypeMapper::getAll()
->with('l11n')
->where('l11n/language', $response->header->l11n->language)
->sort('id', 'DESC')
@ -270,7 +271,7 @@ final class BackendController extends Controller
$view->setTemplate('/Modules/FleetManagement/Theme/Backend/inspection-type-list');
$view->data['nav'] = $this->app->moduleManager->get('Navigation')->createNavigationMid(1003502001, $request, $response);
$view->data['inspections'] = InspectionTypeMapper::getAll()
$view->data['types'] = DriverInspectionTypeMapper::getAll()
->with('l11n')
->where('l11n/language', $response->header->l11n->language)
->sort('id', 'DESC')
@ -279,6 +280,28 @@ final class BackendController extends Controller
return $view;
}
/**
* Routing end-point for application behavior.
*
* @param RequestAbstract $request Request
* @param ResponseAbstract $response Response
* @param array $data Generic data
*
* @return RenderableInterface Returns a renderable object
*
* @since 1.0.0
* @codeCoverageIgnore
*/
public function viewFleetManagementInspectionCreate(RequestAbstract $request, ResponseAbstract $response, array $data = []) : RenderableInterface
{
$view = new View($this->app->l11nManager, $request, $response);
$view->setTemplate('/Modules/FleetManagement/Theme/Backend/inspection-view');
$view->data['nav'] = $this->app->moduleManager->get('Navigation')->createNavigationMid(1003502001, $request, $response);
return $view;
}
/**
* Routing end-point for application behavior.
*
@ -298,10 +321,6 @@ final class BackendController extends Controller
$view->setTemplate('/Modules/FleetManagement/Theme/Backend/inspection-view');
$view->data['nav'] = $this->app->moduleManager->get('Navigation')->createNavigationMid(1003502001, $request, $response);
$view->data['inspections'] = InspectionMapper::getAll()
->sort('id', 'DESC')
->executeGetArray();
return $view;
}
@ -514,6 +533,36 @@ final class BackendController extends Controller
$view->setTemplate('/Modules/FleetManagement/Theme/Backend/inspection-view');
$view->data['nav'] = $this->app->moduleManager->get('Navigation')->createNavigationMid(1003502001, $request, $response);
$view->data['inspections'] = InspectionMapper::getAll()
->where('id', (int) $request->getData('id'))
->executeGetArray();
return $view;
}
/**
* Routing end-point for application behavior.
*
* @param RequestAbstract $request Request
* @param ResponseAbstract $response Response
* @param array $data Generic data
*
* @return RenderableInterface Returns a renderable object
*
* @since 1.0.0
* @codeCoverageIgnore
*/
public function viewFleetManagementDriverInspectionView(RequestAbstract $request, ResponseAbstract $response, array $data = []) : RenderableInterface
{
$view = new View($this->app->l11nManager, $request, $response);
$view->setTemplate('/Modules/FleetManagement/Theme/Backend/inspection-view');
$view->data['nav'] = $this->app->moduleManager->get('Navigation')->createNavigationMid(1003502001, $request, $response);
$view->data['inspections'] = DriverInspectionMapper::getAll()
->where('id', (int) $request->getData('id'))
->executeGetArray();
return $view;
}

View File

@ -49,5 +49,6 @@ return ['FleetManagement' => [
'Type' => 'Typ',
'Upcoming' => 'Upcoming',
'Vehicles' => 'Fahrzeuge',
'Vehicle' => 'Fahrzeug',
'Vin' => 'Vin',
]];

View File

@ -49,5 +49,6 @@ return ['FleetManagement' => [
'Type' => 'Type',
'Upcoming' => 'Upcoming',
'Vehicles' => 'Vehicles',
'Vehicle' => 'Vehicle',
'Vin' => 'Vin',
]];