final receipt update
This commit is contained in:
@@ -14,6 +14,7 @@ public class FinalReceipt
|
||||
public string Currency { get; set; }
|
||||
public decimal? TotalInAlternateCurrency { get; set; }
|
||||
public string AlternateCurrency { get; set; }
|
||||
public List<SplitPaymentInfo> SplitPayments { get; set; } = new List<SplitPaymentInfo>();
|
||||
public string PaymentMethod { get; set; }
|
||||
public decimal PaymentAmount { get; set; }
|
||||
public List<TaxInfo> TaxBreakdown { get; set; } = new List<TaxInfo>();
|
||||
@@ -24,7 +25,7 @@ public class FinalReceipt
|
||||
public string ThankYouMessage { get; set; }
|
||||
public string GoodbyeMessageLine1 { get; set; }
|
||||
public string GoodbyeMessageLine2 { get; set; }
|
||||
public PaymentTerminalReceipt TerminalReceipt { get; set; }
|
||||
public List<PaymentTerminalReceipt> TerminalReceipts { get; set; } = new List<PaymentTerminalReceipt>();
|
||||
}
|
||||
|
||||
public class ReceiptItem
|
||||
@@ -46,6 +47,13 @@ public class TaxInfo
|
||||
public string Currency { get; set; }
|
||||
}
|
||||
|
||||
public class SplitPaymentInfo
|
||||
{
|
||||
public string PaymentMethod { get; set; }
|
||||
public decimal Amount { get; set; }
|
||||
public string Currency { get; set; }
|
||||
}
|
||||
|
||||
public class PaymentTerminalReceipt
|
||||
{
|
||||
public string ReceiptType { get; set; } // e.g., "*** Kundenbeleg ***"
|
||||
|
||||
Reference in New Issue
Block a user