mirror of
https://github.com/Karaka-Management/oms-ProjectManagement.git
synced 2026-02-11 21:38:41 +00:00
fix demoSetup
This commit is contained in:
parent
7f2f2c0d5e
commit
9cfbec431e
|
|
@ -26,7 +26,7 @@ use phpOMS\Stdlib\Base\Enum;
|
||||||
*/
|
*/
|
||||||
abstract class ProjectResponsibility extends Enum
|
abstract class ProjectResponsibility extends Enum
|
||||||
{
|
{
|
||||||
public const MANAGER = 0;
|
public const MANAGER = 1;
|
||||||
|
|
||||||
public const OTHER = 1;
|
public const OTHER = 2;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -26,13 +26,13 @@ use phpOMS\Stdlib\Base\Enum;
|
||||||
*/
|
*/
|
||||||
abstract class ProjectStatus extends Enum
|
abstract class ProjectStatus extends Enum
|
||||||
{
|
{
|
||||||
public const ACTIVE = 0;
|
public const ACTIVE = 1;
|
||||||
|
|
||||||
public const INACTIVE = 1;
|
public const INACTIVE = 2;
|
||||||
|
|
||||||
public const HOLD = 2;
|
public const HOLD = 3;
|
||||||
|
|
||||||
public const CANCELED = 3;
|
public const CANCELED = 4;
|
||||||
|
|
||||||
public const FINISHED = 4;
|
public const FINISHED = 5;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user