831ec37cda
Printed bill can no longer be changed, any changes voids the bill and prints a new one. Added option to Split Bill. Kot printed with right time. Numerous bug fixes.
14 lines
333 B
C#
14 lines
333 B
C#
using System;
|
|
using Tanshu.Accounts.Entities.Auth;
|
|
|
|
namespace Tanshu.Accounts.Entities
|
|
{
|
|
public class Reprint
|
|
{
|
|
public virtual int ReprintID { get; set; }
|
|
public virtual User User { get; set; }
|
|
public virtual DateTime Date { get; set; }
|
|
public virtual Voucher Voucher { get; set; }
|
|
}
|
|
}
|