mirror of
https://github.com/Karaka-Management/oms-Accounting.git
synced 2026-01-15 06:58:41 +00:00
38 lines
815 B
PHP
38 lines
815 B
PHP
<?php
|
|
/**
|
|
* Orange Management
|
|
*
|
|
* PHP Version 7.2
|
|
*
|
|
* @package Modules\Accounting
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link http://website.orange-management.de
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace Modules\Accounting\Models;
|
|
|
|
use phpOMS\Stdlib\Base\Enum;
|
|
|
|
/**
|
|
* Permision state enum.
|
|
*
|
|
* @package Modules\Accounting
|
|
* @license OMS License 1.0
|
|
* @link http://website.orange-management.de
|
|
* @since 1.0.0
|
|
*/
|
|
abstract class PermissionState extends Enum
|
|
{
|
|
public const PERSONAL = 1;
|
|
public const IMPERSONAL = 2;
|
|
public const JOURNAL = 3;
|
|
public const STACK = 4;
|
|
public const GL = 5;
|
|
public const COST_CENTER = 6;
|
|
public const ACCOUNT = 7;
|
|
public const ENTRY = 8;
|
|
}
|