adapt money return receipt to new refund payload schema
This commit is contained in:
@@ -1,118 +1,97 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace Inspectron.Epson.PrintServer.Printers.Utils.MoneyReturnReceipt;
|
||||
|
||||
/// <summary>
|
||||
/// Data model for a refund / credit note ("money return") receipt.
|
||||
/// Mirrors the sale receipt payload (see money_return_receipt_data.json) and adds
|
||||
/// the credit-note specific fields that reference the original invoice being refunded.
|
||||
/// Matches the refund payload (see money_return_receipt_data.json / data (1).json):
|
||||
/// restaurant header info, original transaction reference, refunded items and the
|
||||
/// per-rate VAT breakdown. Timestamps are Unix epoch milliseconds.
|
||||
/// </summary>
|
||||
public class MoneyReturnReceipt
|
||||
{
|
||||
public string CompanyName { get; set; }
|
||||
public string Address1 { get; set; }
|
||||
public string Address2 { get; set; }
|
||||
public string Phone { get; set; }
|
||||
/// <summary>Base64-encoded restaurant logo (optional). Rendered by the print pipeline, not the text converter.</summary>
|
||||
public string? RestaurantLogo { get; set; }
|
||||
|
||||
/// <summary>Credit note number (shown as "Credit note No. {ReceiptNumber}").</summary>
|
||||
public string? ReceiptNumber { get; set; }
|
||||
public string RestaurantName { get; set; }
|
||||
public string RestaurantPhoneNumber { get; set; }
|
||||
public string RestaurantAddressLine1 { get; set; }
|
||||
public string RestaurantAddressLine2 { get; set; }
|
||||
public string RestaurantWebsite { get; set; }
|
||||
|
||||
/// <summary>Date/time the credit note was issued.</summary>
|
||||
public DateTime DateTime { get; set; }
|
||||
/// <summary>VAT registration number. Note the misspelled JSON key ("Restauant...").</summary>
|
||||
[JsonPropertyName("RestauantVATNumber")]
|
||||
public string? RestaurantVatNumber { get; set; }
|
||||
|
||||
public int Guests { get; set; }
|
||||
public List<MoneyReturnReceiptItem> Items { get; set; } = new List<MoneyReturnReceiptItem>();
|
||||
public string ThanksMessage { get; set; }
|
||||
|
||||
/// <summary>Refunded amount (positive). Rendered negative on the receipt.</summary>
|
||||
public decimal Total { get; set; }
|
||||
public string Currency { get; set; }
|
||||
/// <summary>When true the sale is not subject to VAT and the tax table is replaced by a note.</summary>
|
||||
public bool NoVAT { get; set; }
|
||||
|
||||
public decimal? TotalInAlternateCurrency { get; set; }
|
||||
public string AlternateCurrency { get; set; }
|
||||
public long? RefundReceiptId { get; set; }
|
||||
|
||||
public List<MoneyReturnSplitPaymentInfo> SplitPayments { get; set; } = new List<MoneyReturnSplitPaymentInfo>();
|
||||
/// <summary>Credit note number (shown as "Credit note No. {RefundNumber}").</summary>
|
||||
public long RefundNumber { get; set; }
|
||||
|
||||
/// <summary>When the refund was issued, as Unix epoch milliseconds.</summary>
|
||||
public long RefundTimestamp { get; set; }
|
||||
|
||||
/// <summary>Number of the original transaction/invoice being refunded ("Orig. invoice No.").</summary>
|
||||
public long OriginalTransactionNumber { get; set; }
|
||||
|
||||
/// <summary>When the original payment was made, as Unix epoch milliseconds ("Orig. date").</summary>
|
||||
public long OriginalPaymentTimestamp { get; set; }
|
||||
|
||||
/// <summary>Method the original payment was made with (e.g. "Cash").</summary>
|
||||
public string PaymentMethod { get; set; }
|
||||
public decimal PaymentAmount { get; set; }
|
||||
public string OriginalPaymentMethod { get; set; }
|
||||
|
||||
public List<MoneyReturnTaxInfo> TaxBreakdown { get; set; } = new List<MoneyReturnTaxInfo>();
|
||||
public string Currency { get; set; }
|
||||
|
||||
public bool IsDebtor { get; set; } = false;
|
||||
public string WaiterName { get; set; }
|
||||
public string Terminal { get; set; }
|
||||
public string TableNumber { get; set; }
|
||||
public string VatNumber { get; set; }
|
||||
|
||||
public string ThankYouMessage { get; set; }
|
||||
public string GoodbyeMessageLine1 { get; set; }
|
||||
public string GoodbyeMessageLine2 { get; set; }
|
||||
|
||||
public List<MoneyReturnPaymentTerminalReceipt> TerminalReceipts { get; set; } = new List<MoneyReturnPaymentTerminalReceipt>();
|
||||
public MoneyReturnDiscountInfo? DiscountInfo { get; set; }
|
||||
|
||||
// --- Credit-note specific fields ---
|
||||
|
||||
/// <summary>Number of the original invoice this credit note refunds ("Orig. invoice No.").</summary>
|
||||
public string? OriginalInvoiceNumber { get; set; }
|
||||
|
||||
/// <summary>Date/time of the original invoice ("Orig. date").</summary>
|
||||
public DateTime? OriginalDateTime { get; set; }
|
||||
|
||||
/// <summary>Refund type, e.g. "Full refund" or "Partial refund" ("Type").</summary>
|
||||
public string? RefundType { get; set; }
|
||||
/// <summary>Refund type, e.g. "Full" or "Partial" (rendered as "Full refund").</summary>
|
||||
public string RefundType { get; set; }
|
||||
|
||||
/// <summary>Tip amount included in the refund. Shown as "incl. tip" when non-zero.</summary>
|
||||
public decimal Tip { get; set; }
|
||||
}
|
||||
|
||||
public class MoneyReturnReceiptItem
|
||||
{
|
||||
public int Quantity { get; set; }
|
||||
public string Description { get; set; }
|
||||
public decimal UnitPrice { get; set; }
|
||||
public decimal TotalPrice { get; set; }
|
||||
public string TaxCategory { get; set; }
|
||||
public List<string> SubItems { get; set; }
|
||||
}
|
||||
|
||||
public class MoneyReturnTaxInfo
|
||||
{
|
||||
public string Category { get; set; }
|
||||
public decimal Rate { get; set; }
|
||||
public decimal Gross { get; set; }
|
||||
public decimal Net { get; set; }
|
||||
public decimal TaxAmount { get; set; }
|
||||
public string Currency { get; set; }
|
||||
}
|
||||
|
||||
public class MoneyReturnSplitPaymentInfo
|
||||
{
|
||||
public string PaymentMethod { get; set; }
|
||||
public decimal Amount { get; set; }
|
||||
public string Currency { get; set; }
|
||||
}
|
||||
|
||||
public class MoneyReturnDiscountInfo
|
||||
{
|
||||
public string Description { get; set; }
|
||||
public decimal Amount { get; set; }
|
||||
public string Currency { get; set; }
|
||||
}
|
||||
|
||||
public class MoneyReturnPaymentTerminalReceipt
|
||||
{
|
||||
public string ReceiptType { get; set; }
|
||||
public string BookingType { get; set; }
|
||||
public string PaymentSystem { get; set; }
|
||||
public string TransactionNumber { get; set; }
|
||||
public DateTime TransactionDateTime { get; set; }
|
||||
public string TerminalId { get; set; }
|
||||
public string AID { get; set; }
|
||||
public string TransactionSeqCount { get; set; }
|
||||
public string TransactionRefNo { get; set; }
|
||||
public string AuthCode { get; set; }
|
||||
public string AcquirerId { get; set; }
|
||||
public decimal EftAmount { get; set; }
|
||||
public decimal TipAmount { get; set; }
|
||||
public decimal TotalEftAmount { get; set; }
|
||||
public string Currency { get; set; }
|
||||
|
||||
public List<RefundedItem> RefundedItems { get; set; } = new List<RefundedItem>();
|
||||
|
||||
/// <summary>Total refunded amount (positive). Rendered negative on the receipt.</summary>
|
||||
public decimal RefundedAmount { get; set; }
|
||||
|
||||
/// <summary>Standard-rate VAT bucket. Note the misspelled JSON key ("Standart...").</summary>
|
||||
[JsonPropertyName("StandartRate")]
|
||||
public TaxRateBreakdown StandardRate { get; set; }
|
||||
|
||||
public TaxRateBreakdown ReducedRate { get; set; }
|
||||
|
||||
public TaxRateBreakdown SpecialRateForAccommodation { get; set; }
|
||||
|
||||
/// <summary>Method the refund was paid out with (e.g. "Cash").</summary>
|
||||
public string RefundPaymentMethod { get; set; }
|
||||
|
||||
public string TerminalReceiptData { get; set; }
|
||||
public string WebPaymentReceiptData { get; set; }
|
||||
}
|
||||
|
||||
public class RefundedItem
|
||||
{
|
||||
public string Name { get; set; }
|
||||
public string Size { get; set; }
|
||||
public int Quantity { get; set; }
|
||||
public decimal Price { get; set; }
|
||||
public string TaxAbbr { get; set; }
|
||||
}
|
||||
|
||||
public class TaxRateBreakdown
|
||||
{
|
||||
public decimal Rate { get; set; }
|
||||
|
||||
/// <summary>Gross amount at this rate.</summary>
|
||||
public decimal TotalAmount { get; set; }
|
||||
|
||||
/// <summary>Net amount at this rate.</summary>
|
||||
public decimal TotalAmountNetto { get; set; }
|
||||
|
||||
/// <summary>Tax amount at this rate.</summary>
|
||||
public decimal TotalAmountTax { get; set; }
|
||||
}
|
||||
|
||||
@@ -2,9 +2,9 @@ namespace Inspectron.Epson.PrintServer.Printers.Utils.MoneyReturnReceipt;
|
||||
|
||||
/// <summary>
|
||||
/// Builds the print command list for a refund / credit note receipt.
|
||||
/// Layout follows money_return_receipt.jpg: company header, "Refund / Credit note"
|
||||
/// title, credit note + original invoice reference block, the negative credit total,
|
||||
/// the (negated) VAT breakdown and the goodbye footer.
|
||||
/// Layout follows money_return_receipt.jpg: restaurant header, "Refund / Credit note"
|
||||
/// title, credit note + original transaction reference block, the negative credit total,
|
||||
/// the (negated) per-rate VAT breakdown and the thank-you footer.
|
||||
/// </summary>
|
||||
public class ReceiptConverter
|
||||
{
|
||||
@@ -21,11 +21,13 @@ public class ReceiptConverter
|
||||
{
|
||||
var commands = new List<PrintCommand>();
|
||||
|
||||
// Header - Company info
|
||||
commands.Add(new PrintCommand(Center(receipt.CompanyName, false)));
|
||||
commands.Add(new PrintCommand(Center(receipt.Address1, false)));
|
||||
commands.Add(new PrintCommand(Center(receipt.Address2, false)));
|
||||
commands.Add(new PrintCommand(Center(receipt.Phone, false)));
|
||||
// Header - Restaurant info
|
||||
commands.Add(new PrintCommand(Center(receipt.RestaurantName, false)));
|
||||
commands.Add(new PrintCommand(Center(receipt.RestaurantAddressLine1, false)));
|
||||
commands.Add(new PrintCommand(Center(receipt.RestaurantAddressLine2, false)));
|
||||
commands.Add(new PrintCommand(Center(receipt.RestaurantPhoneNumber, false)));
|
||||
if (!string.IsNullOrWhiteSpace(receipt.RestaurantWebsite))
|
||||
commands.Add(new PrintCommand(Center(receipt.RestaurantWebsite, false)));
|
||||
commands.Add(new PrintCommand(""));
|
||||
commands.Add(new PrintCommand(""));
|
||||
|
||||
@@ -36,93 +38,96 @@ public class ReceiptConverter
|
||||
commands.Add(new PrintCommand(""));
|
||||
|
||||
// Credit note number + issue date
|
||||
string creditNoteLabel = receipt.ReceiptNumber != null
|
||||
? $"Credit note No. {receipt.ReceiptNumber}"
|
||||
: "Credit note";
|
||||
commands.Add(new PrintCommand(Justify(creditNoteLabel, $"{receipt.DateTime:HH:mm dd.MM.yyyy}")));
|
||||
commands.Add(new PrintCommand(Justify(
|
||||
$"Credit note No. {receipt.RefundNumber}",
|
||||
FormatTimestamp(receipt.RefundTimestamp))));
|
||||
commands.Add(new PrintCommand(""));
|
||||
|
||||
// Original invoice reference block
|
||||
commands.Add(new PrintCommand(Justify("Orig. invoice No.:", receipt.OriginalInvoiceNumber ?? "")));
|
||||
if (receipt.OriginalDateTime.HasValue)
|
||||
commands.Add(new PrintCommand(Justify("Orig. date:", $"{receipt.OriginalDateTime:HH:mm dd.MM.yyyy}")));
|
||||
commands.Add(new PrintCommand(Justify("Orig. payment method:", receipt.PaymentMethod ?? "")));
|
||||
// Original transaction reference block
|
||||
commands.Add(new PrintCommand(Justify("Orig. invoice No.:", receipt.OriginalTransactionNumber.ToString())));
|
||||
commands.Add(new PrintCommand(Justify("Orig. date:", FormatTimestamp(receipt.OriginalPaymentTimestamp))));
|
||||
commands.Add(new PrintCommand(Justify("Orig. payment method:", receipt.OriginalPaymentMethod ?? "")));
|
||||
if (!string.IsNullOrEmpty(receipt.RefundType))
|
||||
commands.Add(new PrintCommand(Justify("Type:", receipt.RefundType)));
|
||||
commands.Add(new PrintCommand(Justify("Type:", $"{receipt.RefundType} refund")));
|
||||
commands.Add(new PrintCommand(""));
|
||||
|
||||
commands.Add(new PrintCommand(new string('-', _lineWidth)));
|
||||
commands.Add(new PrintCommand(""));
|
||||
|
||||
// Included tip
|
||||
if (receipt.Tip != 0)
|
||||
if (receipt.TipAmount != 0)
|
||||
{
|
||||
commands.Add(new PrintCommand($"incl. tip {receipt.Currency}: {receipt.Tip:F2}".PadLeft(_lineWidth)));
|
||||
commands.Add(new PrintCommand($"incl. tip {receipt.Currency}: {receipt.TipAmount:F2}".PadLeft(_lineWidth)));
|
||||
commands.Add(new PrintCommand(""));
|
||||
}
|
||||
|
||||
// Credit total (refund is shown as a negative amount), big + bold, centered
|
||||
string creditLine = $"Credit: {-receipt.Total:F2} {receipt.Currency}";
|
||||
string creditLine = $"Credit: {-receipt.RefundedAmount:F2} {receipt.Currency}";
|
||||
commands.Add(new PrintCommand(Center(creditLine, true), true, true));
|
||||
commands.Add(new PrintCommand(""));
|
||||
|
||||
// Alternate currency
|
||||
if (receipt.TotalInAlternateCurrency.HasValue)
|
||||
{
|
||||
string altCurrencyLine = $"{-receipt.TotalInAlternateCurrency:F2} {receipt.AlternateCurrency}";
|
||||
commands.Add(new PrintCommand(altCurrencyLine.PadLeft(_lineWidth)));
|
||||
commands.Add(new PrintCommand(""));
|
||||
}
|
||||
|
||||
// Refund payment method line (e.g. "Cash: -20.00 CHF")
|
||||
if (receipt.SplitPayments != null && receipt.SplitPayments.Count > 0)
|
||||
{
|
||||
foreach (var split in receipt.SplitPayments)
|
||||
commands.Add(new PrintCommand($"{split.PaymentMethod}: {-split.Amount:F2} {split.Currency}".PadLeft(_lineWidth)));
|
||||
}
|
||||
else
|
||||
{
|
||||
commands.Add(new PrintCommand($"{receipt.PaymentMethod}: {-receipt.Total:F2} {receipt.Currency}".PadLeft(_lineWidth)));
|
||||
}
|
||||
// Refund payment method line (e.g. "Cash: -11.00 CHF")
|
||||
commands.Add(new PrintCommand($"{receipt.RefundPaymentMethod}: {-receipt.RefundedAmount:F2} {receipt.Currency}".PadLeft(_lineWidth)));
|
||||
commands.Add(new PrintCommand(""));
|
||||
|
||||
// Tax breakdown (amounts negated for the refund)
|
||||
foreach (var tax in receipt.TaxBreakdown)
|
||||
{
|
||||
if (receipt.TaxBreakdown.IndexOf(tax) == 0)
|
||||
{
|
||||
string taxHeader = "VAT %".PadRight(_lineWidth / 4)
|
||||
+ "Gross".PadLeft(_lineWidth / 4)
|
||||
+ "Net".PadLeft(_lineWidth / 4)
|
||||
+ "VAT".PadLeft(_lineWidth / 4);
|
||||
commands.Add(new PrintCommand(taxHeader));
|
||||
}
|
||||
|
||||
string taxDetail = ($"{tax.Category}:" + $"{tax.Rate}%".PadLeft(5)).PadRight(_lineWidth / 4)
|
||||
+ $"{-tax.Gross:F2} {tax.Currency}".PadLeft(_lineWidth / 4)
|
||||
+ $"{-tax.Net:F2} {tax.Currency}".PadLeft(_lineWidth / 4)
|
||||
+ $"{-tax.TaxAmount:F2} {tax.Currency}".PadLeft(_lineWidth / 4);
|
||||
commands.Add(new PrintCommand(taxDetail));
|
||||
}
|
||||
|
||||
commands.Add(new PrintCommand(""));
|
||||
|
||||
if (receipt.TaxBreakdown.Count(x => x.Category != null && x.Category.ToLower() != "d") == 0)
|
||||
// VAT breakdown (amounts negated for the refund)
|
||||
if (receipt.NoVAT)
|
||||
{
|
||||
commands.Add(new PrintCommand("Not subject to value added tax"));
|
||||
}
|
||||
else
|
||||
{
|
||||
var rates = new List<(string Category, TaxRateBreakdown Rate)>();
|
||||
AddIfPresent(rates, "A", receipt.StandardRate);
|
||||
AddIfPresent(rates, "B", receipt.ReducedRate);
|
||||
AddIfPresent(rates, "C", receipt.SpecialRateForAccommodation);
|
||||
|
||||
if (rates.Count > 0)
|
||||
{
|
||||
commands.Add(new PrintCommand("VAT %".PadRight(_lineWidth / 4)
|
||||
+ "Gross".PadLeft(_lineWidth / 4)
|
||||
+ "Net".PadLeft(_lineWidth / 4)
|
||||
+ "VAT".PadLeft(_lineWidth / 4)));
|
||||
|
||||
foreach (var (category, rate) in rates)
|
||||
{
|
||||
commands.Add(new PrintCommand(
|
||||
($"{category}:" + $"{rate.Rate}%".PadLeft(5)).PadRight(_lineWidth / 4)
|
||||
+ $"{-rate.TotalAmount:F2} {receipt.Currency}".PadLeft(_lineWidth / 4)
|
||||
+ $"{-rate.TotalAmountNetto:F2} {receipt.Currency}".PadLeft(_lineWidth / 4)
|
||||
+ $"{-rate.TotalAmountTax:F2} {receipt.Currency}".PadLeft(_lineWidth / 4)));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
commands.Add(new PrintCommand(""));
|
||||
|
||||
// VAT registration number (if provided)
|
||||
if (!string.IsNullOrWhiteSpace(receipt.RestaurantVatNumber))
|
||||
{
|
||||
commands.Add(new PrintCommand(Center(receipt.RestaurantVatNumber, false)));
|
||||
}
|
||||
|
||||
commands.Add(new PrintCommand(""));
|
||||
commands.Add(new PrintCommand(""));
|
||||
|
||||
// Footer / goodbye
|
||||
commands.Add(new PrintCommand(Center(receipt.ThankYouMessage, false)));
|
||||
commands.Add(new PrintCommand(Center(receipt.GoodbyeMessageLine1, false)));
|
||||
commands.Add(new PrintCommand(Center(receipt.GoodbyeMessageLine2, false)));
|
||||
// Footer
|
||||
commands.Add(new PrintCommand(Center(receipt.ThanksMessage, false)));
|
||||
|
||||
return commands;
|
||||
}
|
||||
|
||||
private static void AddIfPresent(List<(string, TaxRateBreakdown)> rates, string category, TaxRateBreakdown? rate)
|
||||
{
|
||||
if (rate != null && (rate.Rate != 0 || rate.TotalAmount != 0))
|
||||
rates.Add((category, rate));
|
||||
}
|
||||
|
||||
private static string FormatTimestamp(long unixMilliseconds)
|
||||
{
|
||||
return DateTimeOffset.FromUnixTimeMilliseconds(unixMilliseconds).LocalDateTime.ToString("HH:mm dd.MM.yyyy");
|
||||
}
|
||||
|
||||
private string Justify(string left, string right)
|
||||
{
|
||||
left ??= "";
|
||||
|
||||
Reference in New Issue
Block a user