initial commit
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace Indotalent.Data.Enums;
|
||||
|
||||
public enum AdjustmentStatus
|
||||
{
|
||||
[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 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,15 @@
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace Indotalent.Data.Enums;
|
||||
|
||||
public enum BudgetStatus
|
||||
{
|
||||
[Description("Draft")]
|
||||
Draft = 0,
|
||||
[Description("Cancelled")]
|
||||
Cancelled = 1,
|
||||
[Description("Confirmed")]
|
||||
Confirmed = 2,
|
||||
[Description("Archived")]
|
||||
Archived = 3
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace Indotalent.Data.Enums;
|
||||
|
||||
public enum CampaignStatus
|
||||
{
|
||||
[Description("Draft")]
|
||||
Draft = 0,
|
||||
[Description("Cancelled")]
|
||||
Cancelled = 1,
|
||||
[Description("Confirmed")]
|
||||
Confirmed = 2,
|
||||
[Description("OnProgress")]
|
||||
OnProgress = 3,
|
||||
[Description("OnHold")]
|
||||
OnHold = 4,
|
||||
[Description("Finished")]
|
||||
Finished = 5,
|
||||
[Description("Archived")]
|
||||
Archived = 6
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace Indotalent.Data.Enums;
|
||||
|
||||
public enum ClosingStatus
|
||||
{
|
||||
[Description("ClosedLost")]
|
||||
ClosedLost = 0,
|
||||
[Description("ClosedWon")]
|
||||
ClosedWon = 1,
|
||||
[Description("OnProgress")]
|
||||
OnProgress = 2
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace Indotalent.Data.Enums;
|
||||
|
||||
|
||||
public enum CreditNoteStatus
|
||||
{
|
||||
[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 DebitNoteStatus
|
||||
{
|
||||
[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 DeliveryOrderStatus
|
||||
{
|
||||
[Description("Draft")]
|
||||
Draft = 0,
|
||||
[Description("Cancelled")]
|
||||
Cancelled = 1,
|
||||
[Description("Confirmed")]
|
||||
Confirmed = 2,
|
||||
[Description("Archived")]
|
||||
Archived = 3
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace Indotalent.Data.Enums;
|
||||
|
||||
public enum ExpenseStatus
|
||||
{
|
||||
[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 GoodsReceiveStatus
|
||||
{
|
||||
[Description("Draft")]
|
||||
Draft = 0,
|
||||
[Description("Cancelled")]
|
||||
Cancelled = 1,
|
||||
[Description("Confirmed")]
|
||||
Confirmed = 2,
|
||||
[Description("Archived")]
|
||||
Archived = 3
|
||||
}
|
||||
@@ -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,19 @@
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace Indotalent.Data.Enums;
|
||||
|
||||
public enum LeadActivityType
|
||||
{
|
||||
[Description("Other")]
|
||||
Other = 0,
|
||||
[Description("Phone")]
|
||||
Phone = 1,
|
||||
[Description("Email")]
|
||||
Email = 2,
|
||||
[Description("Social Media")]
|
||||
SocialMedia = 3,
|
||||
[Description("Meeting")]
|
||||
Meeting = 4,
|
||||
[Description("Event")]
|
||||
Event = 5
|
||||
}
|
||||
@@ -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,21 @@
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace Indotalent.Data.Enums;
|
||||
|
||||
public enum PipelineStage
|
||||
{
|
||||
[Description("1. Prospecting")]
|
||||
Prospecting = 0,
|
||||
[Description("2. Qualification")]
|
||||
Qualification = 1,
|
||||
[Description("3. NeedAnalysis")]
|
||||
NeedAnalysis = 2,
|
||||
[Description("4. Proposal")]
|
||||
Proposal = 3,
|
||||
[Description("5. Negotiation")]
|
||||
Negotiation = 4,
|
||||
[Description("6. DecisionMaking")]
|
||||
DecisionMaking = 5,
|
||||
[Description("7. Closed")]
|
||||
Closed = 6
|
||||
}
|
||||
@@ -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,17 @@
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace Indotalent.Data.Enums;
|
||||
|
||||
public enum ProgramManagerStatus
|
||||
{
|
||||
[Description("Cancelled")]
|
||||
Cancelled = 0,
|
||||
[Description("Draft")]
|
||||
Draft = 1,
|
||||
[Description("Confirmed")]
|
||||
Confirmed = 2,
|
||||
[Description("OnProgress")]
|
||||
OnProgress = 3,
|
||||
[Description("Done")]
|
||||
Done = 4
|
||||
}
|
||||
@@ -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 PurchaseRequisitionStatus
|
||||
{
|
||||
[Description("Draft")]
|
||||
Draft = 0,
|
||||
[Description("Cancelled")]
|
||||
Cancelled = 1,
|
||||
[Description("Confirmed")]
|
||||
Confirmed = 2,
|
||||
[Description("Ordered")]
|
||||
Ordered = 3
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace Indotalent.Data.Enums;
|
||||
|
||||
public enum PurchaseReturnStatus
|
||||
{
|
||||
[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
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace Indotalent.Data.Enums;
|
||||
|
||||
public enum SalesQuotationStatus
|
||||
{
|
||||
[Description("Draft")]
|
||||
Draft = 0,
|
||||
[Description("Cancelled")]
|
||||
Cancelled = 1,
|
||||
[Description("Confirmed")]
|
||||
Confirmed = 2,
|
||||
[Description("Ordered")]
|
||||
Ordered = 3
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace Indotalent.Data.Enums;
|
||||
|
||||
public enum SalesReturnStatus
|
||||
{
|
||||
[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 ScrappingStatus
|
||||
{
|
||||
[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 StockCountStatus
|
||||
{
|
||||
[Description("Draft")]
|
||||
Draft = 0,
|
||||
[Description("Cancelled")]
|
||||
Cancelled = 1,
|
||||
[Description("Confirmed")]
|
||||
Confirmed = 2,
|
||||
[Description("Archived")]
|
||||
Archived = 3
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace Indotalent.Data.Enums;
|
||||
|
||||
public enum TransferStatus
|
||||
{
|
||||
[Description("Draft")]
|
||||
Draft = 0,
|
||||
[Description("Cancelled")]
|
||||
Cancelled = 1,
|
||||
[Description("Confirmed")]
|
||||
Confirmed = 2,
|
||||
[Description("Archived")]
|
||||
Archived = 3
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user