964d0a78bf
Added Voucher Type During Printing Added Discount Report Fixed Void bill table not getting cleared error Added PAX to table Removed Itital Setup button in MainForm as it was not doing anything
28 lines
719 B
C#
28 lines
719 B
C#
using Tanshu.Accounts.Contracts;
|
|
|
|
namespace Tanshu.Accounts.Entities
|
|
{
|
|
public enum SettleOption
|
|
{
|
|
[Display("Unsettled", false, 1)]
|
|
Unsettled = 1,
|
|
[Display("Cash", true, 2)]
|
|
Cash = 2,
|
|
[Display("Credit Card", true, 2)]
|
|
CreditCard = 3,
|
|
[Display("No Charge", true, 3)]
|
|
NoCharge = 4,
|
|
[Display("Bill To Company", true, 2)]
|
|
BillToCompany = 5,
|
|
[Display("Tip", true, 2)]
|
|
Tip = 6,
|
|
[Display("Round Off", false, 1)]
|
|
RoundOff = 7,
|
|
[Display("Amount", false, 1)]
|
|
Amount = 8,
|
|
[Display("Settled", false, 1)]
|
|
Settled = 9,
|
|
[Display("Staff",true,4)]
|
|
Staff = 10
|
|
}
|
|
} |