You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

24 lines
597 B

using System.ComponentModel;
namespace CK.SCP.Models.Enums
{
public enum InvoiceState
{
[Description("新建")]
New = 0,
[Description("供应商申请")]
Apply = 1,
[Description("采购审核退回")]
CheckFail = 2,
[Description("采购审核通过")]
CheckSuccess = 3,
[Description("发票寄出")]
Mail = 4,
[Description("财务收票")]
FinanceReceive = 5,
[Description("财务退回")]
FinanceFail = 6,
[Description("发票作废")]
Reject = -1,
}
}