mirror of
https://github.com/Karaka-Management/oms-Billing.git
synced 2026-02-02 01:38:41 +00:00
25 lines
532 B
PHP
25 lines
532 B
PHP
<?php
|
|
/**
|
|
* Orange Management
|
|
*
|
|
* PHP Version 8.0
|
|
*
|
|
* @package Modules\ClientManagement
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link https://orange-management.org
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
use phpOMS\Localization\Money;
|
|
use phpOMS\Utils\RnG\Name;
|
|
|
|
/* @todo: single month/quarter/fiscal year/calendar year */
|
|
/* @todo: time range (<= 12 month = monthly view; else annual view/comparison) */
|
|
|
|
/**
|
|
* @var \phpOMS\Views\View $this
|
|
*/
|
|
echo $this->getData('nav')->render();
|
|
?>
|