mirror of
https://github.com/Karaka-Management/oms-Accounting.git
synced 2026-01-31 05:38:40 +00:00
fix const alignment
This commit is contained in:
parent
cf05ec1515
commit
4f270676f4
|
|
@ -28,9 +28,9 @@ abstract class AccountType extends Enum
|
|||
{
|
||||
public const IMPERSONAL = 0;
|
||||
|
||||
public const PERSONAL = 1;
|
||||
public const PERSONAL = 1;
|
||||
|
||||
public const CREDITOR = 2;
|
||||
public const CREDITOR = 2;
|
||||
|
||||
public const DEBITOR = 4;
|
||||
public const DEBITOR = 4;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -26,21 +26,21 @@ use phpOMS\Stdlib\Base\Enum;
|
|||
*/
|
||||
abstract class PermissionState extends Enum
|
||||
{
|
||||
public const PERSONAL = 1;
|
||||
public const PERSONAL = 1;
|
||||
|
||||
public const IMPERSONAL = 2;
|
||||
public const IMPERSONAL = 2;
|
||||
|
||||
public const JOURNAL = 3;
|
||||
public const JOURNAL = 3;
|
||||
|
||||
public const STACK = 4;
|
||||
public const STACK = 4;
|
||||
|
||||
public const GL = 5;
|
||||
public const GL = 5;
|
||||
|
||||
public const COST_CENTER = 6;
|
||||
|
||||
public const COST_OBJECT = 7;
|
||||
|
||||
public const ACCOUNT = 8;
|
||||
public const ACCOUNT = 8;
|
||||
|
||||
public const ENTRY = 9;
|
||||
public const ENTRY = 9;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -26,11 +26,11 @@ use phpOMS\Stdlib\Base\Enum;
|
|||
*/
|
||||
abstract class TimeRangeType extends Enum
|
||||
{
|
||||
public const ENTRY_DATE = 0; /* Date of when the entry happened */
|
||||
public const ENTRY_DATE = 0; /* Date of when the entry happened */
|
||||
|
||||
public const DUE_DATE = 1; /* Date of when the entry is due (only for invoices) */
|
||||
public const DUE_DATE = 1; /* Date of when the entry is due (only for invoices) */
|
||||
|
||||
public const RECEIPT_DATE = 2; /* Date of the receipt */
|
||||
public const RECEIPT_DATE = 2; /* Date of the receipt */
|
||||
|
||||
public const ASSOCIATED_DATE = 3; /* Date of the association (e.g. when did the articles arrive) */
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user