initial commit
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace Indotalent.Data.Enums;
|
||||
|
||||
public enum BillStatus
|
||||
{
|
||||
[Description("Draft")]
|
||||
Draft = 0,
|
||||
[Description("Cancelled")]
|
||||
Cancelled = 1,
|
||||
[Description("Confirmed")]
|
||||
Confirmed = 2,
|
||||
[Description("Partial Paid")]
|
||||
PartialPaid = 3,
|
||||
[Description("Full Paid")]
|
||||
FullPaid = 4
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace Indotalent.Data.Enums;
|
||||
|
||||
public enum BookingStatus
|
||||
{
|
||||
[Description("Cancelled")]
|
||||
Cancelled = 0,
|
||||
[Description("Draft")]
|
||||
Draft = 1,
|
||||
[Description("Confirmed")]
|
||||
Confirmed = 2,
|
||||
[Description("OnProgress")]
|
||||
OnProgress = 3,
|
||||
[Description("Done")]
|
||||
Done = 4
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace Indotalent.Data.Enums;
|
||||
|
||||
public enum InventoryTransType
|
||||
{
|
||||
[Description("In")]
|
||||
In = 1,
|
||||
[Description("Out")]
|
||||
Out = -1,
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace Indotalent.Data.Enums;
|
||||
|
||||
public enum InventoryTransactionStatus
|
||||
{
|
||||
[Description("Draft")]
|
||||
Draft = 0,
|
||||
[Description("Cancelled")]
|
||||
Cancelled = 1,
|
||||
[Description("Confirmed")]
|
||||
Confirmed = 2,
|
||||
[Description("Archived")]
|
||||
Archived = 3
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace Indotalent.Data.Enums;
|
||||
|
||||
public enum InvoiceStatus
|
||||
{
|
||||
[Description("Draft")]
|
||||
Draft = 0,
|
||||
[Description("Cancelled")]
|
||||
Cancelled = 1,
|
||||
[Description("Confirmed")]
|
||||
Confirmed = 2,
|
||||
[Description("Partial Paid")]
|
||||
PartialPaid = 3,
|
||||
[Description("Full Paid")]
|
||||
FullPaid = 4
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace Indotalent.Data.Enums;
|
||||
|
||||
public enum PaymentDisburseStatus
|
||||
{
|
||||
[Description("Draft")]
|
||||
Draft = 0,
|
||||
[Description("Cancelled")]
|
||||
Cancelled = 1,
|
||||
[Description("Confirmed")]
|
||||
Confirmed = 2,
|
||||
[Description("Archived")]
|
||||
Archived = 3
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace Indotalent.Data.Enums;
|
||||
|
||||
public enum PaymentReceiveStatus
|
||||
{
|
||||
[Description("Draft")]
|
||||
Draft = 0,
|
||||
[Description("Cancelled")]
|
||||
Cancelled = 1,
|
||||
[Description("Confirmed")]
|
||||
Confirmed = 2,
|
||||
[Description("Archived")]
|
||||
Archived = 3
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace Indotalent.Data.Enums;
|
||||
|
||||
public enum ProgramManagerPriority
|
||||
{
|
||||
[Description("Low")]
|
||||
Low = 0,
|
||||
[Description("High")]
|
||||
High = 1,
|
||||
[Description("Normal")]
|
||||
Normal = 2,
|
||||
[Description("Critical")]
|
||||
Critical = 3
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace Indotalent.Data.Enums;
|
||||
|
||||
public enum PurchaseOrderStatus
|
||||
{
|
||||
[Description("Draft")]
|
||||
Draft = 0,
|
||||
[Description("Cancelled")]
|
||||
Cancelled = 1,
|
||||
[Description("Confirmed")]
|
||||
Confirmed = 2,
|
||||
[Description("Archived")]
|
||||
Archived = 3
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace Indotalent.Data.Enums;
|
||||
|
||||
public enum SalesOrderStatus
|
||||
{
|
||||
[Description("Draft")]
|
||||
Draft = 0,
|
||||
[Description("Cancelled")]
|
||||
Cancelled = 1,
|
||||
[Description("Confirmed")]
|
||||
Confirmed = 2,
|
||||
[Description("Archived")]
|
||||
Archived = 3
|
||||
}
|
||||
Reference in New Issue
Block a user