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
25 lines
784 B
C#
25 lines
784 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Tanshu.Accounts.Contracts;
|
|
using System.Windows.Forms;
|
|
using Tanshu.Accounts.Entities;
|
|
using Tanshu.Common;
|
|
|
|
namespace Tanshu.Accounts.PointOfSale
|
|
{
|
|
public interface ISaleForm
|
|
{
|
|
void ClearBill(List<BillItemValue> bill);
|
|
void SetCustomerDisplay(string name);
|
|
void SetWaiterDisplay(string p);
|
|
void CloseWindow();
|
|
void ShowAmount(decimal discountAmount, decimal grossAmount, decimal serviceChargeAmount, decimal taxAmount, decimal valueAmount, List<BillItemValue> bill);
|
|
void ShowInfo(Voucher voucher);
|
|
void SetUserName(string name);
|
|
BindingSource BindingSource { get; }
|
|
SaleFormState FormState { set; }
|
|
}
|
|
}
|