test run works
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
using System.Text.Json;
|
||||
|
||||
namespace Inspectron.Epson.PrintServer.Printers.Utils.OrderItems;
|
||||
|
||||
public class OrderItemsReceiptConverter : IReceiptConverter
|
||||
{
|
||||
private readonly int _lineWidth;
|
||||
private readonly int _bigFontLineWidth;
|
||||
|
||||
public OrderItemsReceiptConverter(int lineWidth, int bigFontLineWidth)
|
||||
{
|
||||
_lineWidth = lineWidth;
|
||||
_bigFontLineWidth = bigFontLineWidth;
|
||||
}
|
||||
|
||||
public List<PrintCommand> Convert(string jsonContent)
|
||||
{
|
||||
var receipt = JsonSerializer.Deserialize<OrderItemsReceipt>(jsonContent);
|
||||
var converter = new ReceiptConverter(_lineWidth, _bigFontLineWidth);
|
||||
return converter.ConvertToPrintCommands(receipt);
|
||||
}
|
||||
}
|
||||
@@ -159,10 +159,10 @@ public class ReceiptConverter
|
||||
}
|
||||
}
|
||||
|
||||
// Comment
|
||||
// SpecialInstruction
|
||||
if (!string.IsNullOrEmpty(item.Comment))
|
||||
{
|
||||
commands.Add(new PrintCommand($" Comment: {item.Comment}"));
|
||||
commands.Add(new PrintCommand($" SpecialInstruction: {item.Comment}"));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user