narsil/Tanshu.Accounts.Contracts/Data Contracts/PaidStatusBO.cs
unknown 0172fc4e01 Added Service Tax and CIN Information to the bill printout
Added Nc Option in settlement
Merged Vouchers and SaleVoucher table. Need to update the Sql Schema
2014-08-08 17:35:38 +05:30

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
}
}