0172fc4e01
Added Nc Option in settlement Merged Vouchers and SaleVoucher table. Need to update the Sql Schema
14 lines
217 B
C#
14 lines
217 B
C#
namespace Tanshu.Accounts.Contracts
|
|
{
|
|
public enum PaidStatus
|
|
{
|
|
Pending = 1,
|
|
Cash = 2,
|
|
CreditCard = 3,
|
|
Credit = 4,
|
|
Staff = 5,
|
|
Void = 6,
|
|
Nc = 7
|
|
}
|
|
}
|