mirror of
https://github.com/Karaka-Management/oms-Accounting.git
synced 2026-02-16 20:38:40 +00:00
added comments and enum
This commit is contained in:
parent
2f6f634ce8
commit
47cc815686
|
|
@ -32,7 +32,19 @@ class IncomeStatement
|
||||||
*/
|
*/
|
||||||
protected int $id = 0;
|
protected int $id = 0;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Date.
|
||||||
|
*
|
||||||
|
* @var null|\DateTime
|
||||||
|
* @since 1.0.0
|
||||||
|
*/
|
||||||
private ?\DateTime $date = null;
|
private ?\DateTime $date = null;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Income statement structure.
|
||||||
|
*
|
||||||
|
* @var array
|
||||||
|
* @since 1.0.0
|
||||||
|
*/
|
||||||
private array $incomeStatement = [];
|
private array $incomeStatement = [];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -33,4 +33,8 @@ abstract class TimeRangeType extends Enum
|
||||||
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) */
|
public const ASSOCIATED_DATE = 3; /* Date of the association (e.g. when did the articles arrive) */
|
||||||
|
|
||||||
|
public const PERIOD_DATE = 4; /* Date of the period this booking is assoziated with */
|
||||||
|
|
||||||
|
public const SQUARED_DATE = 5; /* Date of when the entry got squared/balanced */
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user