diff --git a/Mapp.BusinessLogic.Invoices.Tests/IntegrationTests.cs b/Mapp.BusinessLogic.Invoices.Tests/IntegrationTests.cs index 9ace5ec..7499504 100644 --- a/Mapp.BusinessLogic.Invoices.Tests/IntegrationTests.cs +++ b/Mapp.BusinessLogic.Invoices.Tests/IntegrationTests.cs @@ -8,10 +8,12 @@ using Moq; using VerifyXunit; using Xunit; +using Xunit.Categories; namespace Mapp.BusinessLogic.Invoices.Tests { [UsesVerify] + [IntegrationTest] public class IntegrationTests: VerifyBase { // TODO add multi-file import test @@ -82,7 +84,7 @@ private async Task IntegrationTestBase(string testCaseDataDirName, int startingO ApplicationConstants.Rounding = 2; // TODO solve by intoducing settings context - var jsonManager = new JsonManager(); + var jsonManager = new JsonManager(configMock.Object, new FileManager()); var invoiceXmlXmlManager = new InvoicesXmlManager(Mock.Of(), configMock.Object) ; var currencyLoader = new CsvLoader(configMock.Object); var autocompleteDataLoader = new AutocompleteDataLoader(jsonManager, configMock.Object); @@ -114,6 +116,6 @@ private async Task IntegrationTestBase(string testCaseDataDirName, int startingO //Assert.Equal(expectedResult, result); } - public IntegrationTests(): base(){ } + public IntegrationTests() : base() { } } } diff --git a/Mapp.BusinessLogic.Invoices.Tests/Mapp.BusinessLogic.Invoices.Tests.csproj b/Mapp.BusinessLogic.Invoices.Tests/Mapp.BusinessLogic.Invoices.Tests.csproj index 1fd5cdc..88f67b5 100644 --- a/Mapp.BusinessLogic.Invoices.Tests/Mapp.BusinessLogic.Invoices.Tests.csproj +++ b/Mapp.BusinessLogic.Invoices.Tests/Mapp.BusinessLogic.Invoices.Tests.csproj @@ -1,4 +1,4 @@ - + net6.0 @@ -16,6 +16,7 @@ + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/Mapp.BusinessLogic.Invoices.Tests/TestData/multi-item order/converted.xml b/Mapp.BusinessLogic.Invoices.Tests/TestData/multi-item order/converted.xml index 0e856ca..954fe6f 100644 --- a/Mapp.BusinessLogic.Invoices.Tests/TestData/multi-item order/converted.xml +++ b/Mapp.BusinessLogic.Invoices.Tests/TestData/multi-item order/converted.xml @@ -12,7 +12,7 @@ 2021-10-20 2021-10-25 2021-10-20 - 2021-10-23 + 2022-10-23 3Fv diff --git a/Mapp.BusinessLogic.Invoices/Transactions/GpcGenerator.cs b/Mapp.BusinessLogic.Invoices/Transactions/GpcGenerator.cs index d45b8d2..0574e1f 100644 --- a/Mapp.BusinessLogic.Invoices/Transactions/GpcGenerator.cs +++ b/Mapp.BusinessLogic.Invoices/Transactions/GpcGenerator.cs @@ -1,7 +1,9 @@ using System; using System.Collections.Generic; using System.Linq; +using System.Text; using Mapp.Common; +using Mapp.DataAccess; namespace Mapp.BusinessLogic.Transactions { @@ -16,6 +18,14 @@ public class GpcGenerator : IGpcGenerator "0740000002001353907Czech Goods s.r.o. 01111900000013280900+00000016514842+000000461730770000000494070190011{0}FIO "; private string _transactionBase = "07500000020013539{0}000000000000000000000000000000000{1}{2}{3}00000000000000000000000000{4}000124{5}"; + private readonly IFileManager _fileManager; + private readonly IDateTimeManager _dateTimeManager; + + public GpcGenerator(IFileManager fileManager, IDateTimeManager dateTimeManager) + { + _fileManager = fileManager; + _dateTimeManager = dateTimeManager; + } public void SaveTransactions(IEnumerable transactions, string fileName) { @@ -23,38 +33,29 @@ public void SaveTransactions(IEnumerable transactions, string fileN string firstLine = string.Format(_intitialLine, endOfCurrentMonth.ToString("ddMMyy")); - using (System.IO.StreamWriter file = new System.IO.StreamWriter(fileName)) + var outputText = new StringBuilder(); + + outputText.AppendLine(firstLine); + foreach (var transaction in transactions.Where(t => !t.Type.Equals(TransactionTypes.ServiceFee))) { - file.WriteLine(firstLine); - foreach (var transaction in transactions.Where(t => !t.Type.Equals(TransactionTypes.ServiceFee))) - { - file.WriteLine(GetTransactionLine(transaction)); - } + outputText.AppendLine(GetTransactionLine(transaction)); } - } - - private string GetShortVariableCodeForRefund(string fullVariableCode) // TODO remove repetition - { - // refunds are filled manually in pohoda, so there is no need to care about invoice symVar - string filteredCode = fullVariableCode.RemoveAll("-"); - filteredCode = filteredCode.Substring(0, 10); - return filteredCode; + _fileManager.WriteAllTextToFile(fileName, outputText.ToString()); } private string GetTransactionLine(Transaction transaction) { - var shortVariableCode = Invoice.GetShortVariableCode(transaction.OrderId, out var zerosRemoved); + var shortVariableCode = VariableCode.GetShortVariableCode(transaction.OrderId); if (transaction.Type == TransactionTypes.Refund) // Refunds have short variable codes from first 10 symbols { - shortVariableCode = GetShortVariableCodeForRefund(transaction.OrderId); - zerosRemoved = 0; + shortVariableCode = VariableCode.GetShortVariableCode(transaction.OrderId); } - string type = ((int) transaction.Type).ToString(); - // in case that order ID contained zeros at the beginning - type = type.PadRight(type.Length + zerosRemoved, '0'); + shortVariableCode = shortVariableCode.PadLeft(VariableCode.ShortVariableCodeLength, '0'); + + string type = ((int)transaction.Type).ToString(); - string marketPlace = transaction.MarketplaceId.ToString().PadLeft(2, '0'); + string marketPlace = transaction.MarketplaceId.ToString().PadLeft(2, '0'); // max 2 string orderId = transaction.OrderId.PadRight(19, '0'); @@ -65,7 +66,7 @@ private string GetTransactionLine(Transaction transaction) string formatted = string.Format(_transactionBase, marketPlace, price, - type, + type, shortVariableCode, orderId, date); @@ -78,13 +79,13 @@ private string GetTransactionLine(Transaction transaction) private string FormatPrice(decimal price) { - string priceFormatted = Math.Abs(price).ToString("N2").RemoveAll(".").RemoveAll(",").PadLeft(8,'0'); + string priceFormatted = Math.Abs(price).ToString("N2").RemoveAll(".").RemoveAll(",").PadLeft(8, '0'); return priceFormatted; } - private static DateTime GetEndOfCurrentMonth() + private DateTime GetEndOfCurrentMonth() { - var today = DateTime.Today; + var today = _dateTimeManager.Today; return today.AddDays(1 - today.Day).AddMonths(1).AddDays(-1).Date; } diff --git a/Mapp.BusinessLogic.Invoices/Transactions/MarketPlaceTransactionsConfig.cs b/Mapp.BusinessLogic.Invoices/Transactions/MarketPlaceTransactionsConfig.cs index 3819885..c958af5 100644 --- a/Mapp.BusinessLogic.Invoices/Transactions/MarketPlaceTransactionsConfig.cs +++ b/Mapp.BusinessLogic.Invoices/Transactions/MarketPlaceTransactionsConfig.cs @@ -1,10 +1,14 @@ using System.Collections.Generic; +using System.Diagnostics; using System.Globalization; namespace Mapp.BusinessLogic.Transactions { + [DebuggerDisplay("{Name}")] public class MarketPlaceTransactionsConfig { + public string Name { get; set; } + public MarketPlaceTransactionsConfig(string dateCultureInfoName, string dateSubstring, int marketPlaceId) { DateCultureInfoName = dateCultureInfoName; @@ -48,7 +52,7 @@ public CultureInfo DateCultureInfo } // it is decided to use this phrase because parameter Market place can be unavailable (no transactions) - public string DistinctionPhrase { get; set; } + public IEnumerable DistinctionPhrases { get; set; } public string DateSubstring { get; } diff --git a/Mapp.BusinessLogic.Invoices/Transactions/TransactionsReader.cs b/Mapp.BusinessLogic.Invoices/Transactions/TransactionsReader.cs index c00a632..b928dda 100644 --- a/Mapp.BusinessLogic.Invoices/Transactions/TransactionsReader.cs +++ b/Mapp.BusinessLogic.Invoices/Transactions/TransactionsReader.cs @@ -1,6 +1,7 @@ using System; using System.Collections.Generic; using System.Linq; +using System.Numerics; using System.Text; using System.Text.RegularExpressions; using AutoMapper; @@ -14,9 +15,6 @@ namespace Mapp.BusinessLogic.Transactions public interface ITransactionsReader { IEnumerable ReadTransactionsFromMultipleFiles(IEnumerable fileNames); - DateTime ParseDate(string dateString, MarketPlaceTransactionsConfig settings); - IEnumerable ReadTransactions(string fileName); - TransactionTypes ParseTransactionType(string transactionType, MarketPlaceTransactionsConfig settings); } public class TransactionsReader : ITransactionsReader @@ -45,20 +43,20 @@ private IEnumerable GetAvailableMarketplaceConfig { // TODO load only once var mapperConfiguration = new MapperConfiguration(cfg => { - cfg.CreateMap(); + cfg.CreateMap(); }); IMapper mapper = mapperConfiguration.CreateMapper(); - var configDtos = _jsonManager.LoadTransactionsConfigs(); + var configsData = _jsonManager.LoadTransactionsConfigs(); - var configs = configDtos.Select(dto => - mapper.Map(dto)); + var configs = configsData.Select(data => + mapper.Map(data)); var marketPlaceIds = configs.Select(s => s.MarketPlaceId).ToList(); - if (marketPlaceIds.Distinct().Count() != marketPlaceIds.Count()) - { - throw new ArgumentException($"Chyba, duplicitni hodnota {nameof(marketPlaceIds)} v JSON konfiguracich!"); - } + //if (marketPlaceIds.Distinct().Count() != marketPlaceIds.Count()) // commented because we now have PaypalCZ and paypal + //{ + // throw new ArgumentException($"Chyba, duplicitni hodnota {nameof(marketPlaceIds)} v JSON konfiguracich!"); + //} return configs; } @@ -84,13 +82,13 @@ private IReadOnlyList GetFileLines(string fileName, string encodingCod return lineItems; } - public DateTime ParseDate(string dateString, MarketPlaceTransactionsConfig settings) + private DateTime ParseDate(string dateString, MarketPlaceTransactionsConfig config) { - var match = Regex.Match(dateString, settings.DateSubstring); - return DateTime.Parse(match.Groups[1].Value, settings.DateCultureInfo); + var match = Regex.Match(dateString, config.DateSubstring); + return DateTime.Parse(match.Groups[1].Value, config.DateCultureInfo); } - public IEnumerable ReadTransactions(string fileName) + private IEnumerable ReadTransactions(string fileName) { var lines = GetFileLines(fileName); @@ -117,12 +115,13 @@ public IEnumerable ReadTransactions(string fileName) { string columnNameKey = validLines[0][columnIndex].Trim(); //tolower? transactionsDict.Add(columnNameKey, validLines.Skip(1).Select(l => l[columnIndex]).ToArray()); - } + } var transactions = new List(); for (int index = 0; index < transactionsDict.First().Value.Count(); index++) { string orderId = transactionsDict[marketPlaceSetting.OrderIdColumnName][index]; + orderId = new string(orderId.ToCharArray().Where(c => char.IsDigit(c) || c == '-').ToArray()); // we only need to take numbers, since for Shoppify order is smth like #3214, however '-' should be ok if (string.IsNullOrEmpty(orderId)) orderId = "0000000000000000000"; @@ -131,7 +130,8 @@ public IEnumerable ReadTransactions(string fileName) decimal transactionTotalValue = 0; foreach (var compColumnName in marketPlaceSetting.ValueComponentsColumnName) { - transactionTotalValue += decimal.Parse(transactionsDict[compColumnName][index], marketPlaceSetting.DateCultureInfo); + string val = transactionsDict[compColumnName][index]; + transactionTotalValue += decimal.Parse(val, marketPlaceSetting.DateCultureInfo); } var transactionType = ParseTransactionType(transactionsDict[marketPlaceSetting.TransactionTypeColumnName][index], marketPlaceSetting); @@ -142,7 +142,7 @@ public IEnumerable ReadTransactions(string fileName) } // DATE - string dateComplete = String.Empty; + string dateComplete = string.Empty; foreach (var columnName in marketPlaceSetting.DateTimeColumnNames) { dateComplete += transactionsDict[columnName][index] + " "; @@ -174,7 +174,7 @@ public IEnumerable ReadTransactions(string fileName) return transactions; } - public TransactionTypes ParseTransactionType(string transactionType, MarketPlaceTransactionsConfig settings) + private TransactionTypes ParseTransactionType(string transactionType, MarketPlaceTransactionsConfig settings) { // TODO refactoring AWFUL CODE if (settings.OrderTypeNames.Any(n => n.EqualsIgnoreCase(transactionType))) @@ -195,13 +195,18 @@ private MarketPlaceTransactionsConfig GetMarketPlaceSetting(IReadOnlyList l.First().EqualsIgnoreCase(marketPlace.DistinctionPhrase)); - if (found != null) + var isFound = IsFirstLineCorrespondToConfig(dataLines, marketPlace); + if (isFound) { return marketPlace; } } throw new ArgumentException("Nerozpoznany typ souboru"); } + + private static bool IsFirstLineCorrespondToConfig(IReadOnlyList dataLines, MarketPlaceTransactionsConfig marketPlace) + { + return dataLines.Any(l => !marketPlace.DistinctionPhrases.Except(l).Any()); + } } } diff --git a/Mapp.BusinessLogic.Transactions.Tests/IntegrationTests.ConvertTransactions_ParsesAndConvertsTransactions.verified.txt b/Mapp.BusinessLogic.Transactions.Tests/IntegrationTests.ConvertTransactions_ParsesAndConvertsTransactions.verified.txt new file mode 100644 index 0000000..ad7bd22 --- /dev/null +++ b/Mapp.BusinessLogic.Transactions.Tests/IntegrationTests.ConvertTransactions_ParsesAndConvertsTransactions.verified.txt @@ -0,0 +1,101 @@ +0740000002001353907Czech Goods s.r.o. 01111900000013280900+00000016514842+000000461730770000000494070190011290224FIO +075000000200135392100000000000000000000000000000000000014425242Y551701G000000000000000000000000006CP060942Y551701G00000124011020 +07500000020013539210000000000000000000000000000000000000119424UJ3001204000000000000000000000000008AP69374UJ300120400000124011020 +07500000020013539210000000000000000000000000000000000000839528VN8497449000000000000000000000000009RT47188VN849744900000124011020 +07500000020013539210000000000000000000000000000000000000249823HJ517381C000000000000000000000000002Y211373HJ517381C00000124011020 +07500000020013539210000000000000000000000000000000000000559927504385014000000000000000000000000007VT1356750438501400000124011020 +07500000020013539210000000000000000000000000000000000000459920WX12197490000000000000000000000000079024140WX121974900000124011020 +07500000020013539210000000000000000000000000000000000000169824A1688552K000000000000000000000000002NN29244A1688552K00000124011020 +0750000002001353921000000000000000000000000000000000000036982755718351K000000000000000000000000009N72286755718351K00000124021020 +07500000020013539210000000000000000000000000000000000000612225FF607034E000000000000000000000000008T503315FF607034E00000124031020 +075000000200135392100000000000000000000000000000000000001298202C46474190000000000000000000000000084T074302C464741900000124031020 +07500000020013539210000000000000000000000000000000000000229825NK95330220000000000000000000000000081545465NK953302200000124031020 +07500000020013539210000000000000000000000000000000000000169824DD2731031000000000000000000000000006L605564DD273103100000124051020 +07500000020013539210000000000000000000000000000000000000449822GC0089022000000000000000000000000003PW83902GC008902200000124061020 +07500000020013539210000000000000000000000000000000000000399522SU609073A0000000000000000000000000037N43472SU609073A00000124061020 +0750000002001353921000000000000000000000000000000000000026982333959202M000000000000000000000000009V13608333959202M00000124061020 +07500000020013539210000000000000000000000000000000000000119822TT5814520000000000000000000000000004H220082TT581452000000124071020 +075000000200135392100000000000000000000000000000000000002825290M235144R000000000000000000000000001CY846590M235144R00000124071020 +07500000020013539210000000000000000000000000000000000000589722YG543352E0000000000000000000000000050422352YG543352E00000124081020 +07500000020013539210000000000000000000000000000000000000319421TK592734R0000000000000000000000000077S52531TK592734R00000124081020 +07500000020013539210000000000000000000000000000000000000149829AK965794U0000000000000000000000000066912449AK965794U00000124081020 +07500000020013539210000000000000000000000000000000000000449422D70480125000000000000000000000000004BW62712D7048012500000124091020 +07500000020013539210000000000000000000000000000000000000149422HP916203T0000000000000000000000000066K48502HP916203T00000124091020 +075000000200135392100000000000000000000000000000000000014889285R910193R000000000000000000000000005YP101385R910193R00000124091020 +075000000200135392100000000000000000000000000000000000001298294K233273A000000000000000000000000004LF224794K233273A00000124091020 +07500000020013539210000000000000000000000000000000000000822524W1411463T000000000000000000000000000MB45834W1411463T00000124101020 +075000000200135392100000000000000000000000000000000000002698223R7444142000000000000000000000000008SG722023R744414200000124101020 +07500000020013539210000000000000000000000000000000000000749824XW8390227000000000000000000000000006WP82034XW839022700000124101020 +0750000002001353921000000000000000000000000000000000000084942149410494W000000000000000000000000000KR7058149410494W00000124101020 +07500000020013539210000000000000000000000000000000000000199422XH516461K000000000000000000000000002BD20212XH516461K00000124101020 +07500000020013539210000000000000000000000000000000000000869826UH36698150000000000000000000000000056K20516UH366981500000124111020 +07500000020013539210000000000000000000000000000000000000354727DW207394B000000000000000000000000009F308517DW207394B00000124111020 +075000000200135392100000000000000000000000000000000000008698282U566753U000000000000000000000000001A3041582U566753U00000124111020 +07500000020013539210000000000000000000000000000000000001299627LN0389033000000000000000000000000003MA72627LN038903300000124121020 +07500000020013539210000000000000000000000000000000000000179829G3994664H0000000000000000000000000081J89919G3994664H00000124121020 +07500000020013539210000000000000000000000000000000000000249427RH10139300000000000000000000000000045873677RH101393000000124121020 +07500000020013539210000000000000000000000000000000000000269829R9825445C000000000000000000000000007UM76759R9825445C00000124131020 +07500000020013539210000000000000000000000000000000000000439827Y0556035D000000000000000000000000003B829587Y0556035D00000124131020 +07500000020013539210000000000000000000000000000000000000139823MN8928616000000000000000000000000002NF49223MN892861600000124141020 +07500000020013539210000000000000000000000000000000000000159920X47242239000000000000000000000000009BE54030X4724223900000124141020 +07500000020013539210000000000000000000000000000000000000149827UA512954H0000000000000000000000000083K36707UA512954H00000124141020 +07500000020013539210000000000000000000000000000000000000299421UF385230F000000000000000000000000002J110681UF385230F00000124141020 +07500000020013539210000000000000000000000000000000000000209824KL998432F000000000000000000000000008J930784KL998432F00000124151020 +07500000020013539210000000000000000000000000000000000000583826V41518125000000000000000000000000008R874306V4151812500000124151020 +075000000200135392100000000000000000000000000000000000001598279U367520S000000000000000000000000001DN568579U367520S00000124151020 +0750000002001353921000000000000000000000000000000000000011982185080614D000000000000000000000000006AS0831185080614D00000124151020 +075000000200135392100000000000000000000000000000000000001994227L667673R000000000000000000000000003M8098627L667673R00000124161020 +07500000020013539210000000000000000000000000000000000000439821HE928425K000000000000000000000000008L043871HE928425K00000124171020 +07500000020013539210000000000000000000000000000000000000388823CY6803207000000000000000000000000000AC53123CY680320700000124171020 +0750000002001353921000000000000000000000000000000000000031982703688980W000000000000000000000000007SA5008703688980W00000124171020 +07500000020013539210000000000000000000000000000000000000599825CV156153F000000000000000000000000002W937165CV156153F00000124171020 +07500000020013539210000000000000000000000000000000000000319426E65407840000000000000000000000000007JK65746E6540784000000124201020 +07500000020013539210000000000000000000000000000000000000249821TN8071153000000000000000000000000009E606631TN807115300000124201020 +075000000200135392100000000000000000000000000000000000001198212332081290000000000000000000000000078G0043123320812900000124201020 +07500000020013539210000000000000000000000000000000000000119826AP327382X000000000000000000000000001KL66416AP327382X00000124201020 +075000000200135392100000000000000000000000000000000000001194241P4190247000000000000000000000000000FG059041P419024700000124201020 +07500000020013539210000000000000000000000000000000000000119821NS656594Y000000000000000000000000003LN61591NS656594Y00000124201020 +07500000020013539210000000000000000000000000000000000000498623F65871243000000000000000000000000001PX34283F6587124300000124201020 +07500000020013539210000000000000000000000000000000000000639625SJ64388120000000000000000000000000034G07905SJ643881200000124201020 +07500000020013539210000000000000000000000000000000000000199828WU784374F0000000000000000000000000093P69468WU784374F00000124201020 +07500000020013539210000000000000000000000000000000000000159829GN75445470000000000000000000000000045U86179GN754454700000124211020 +07500000020013539210000000000000000000000000000000000000319825CK126662Y000000000000000000000000003L781225CK126662Y00000124211020 +075000000200135392100000000000000000000000000000000000001198559F7949000000000000000000000000000000VJ260959F794900000000124211020 +075000000200135392100000000000000000000000000000000000001194509E015160N000000000000000000000000006J3466509E015160N00000124211020 +07500000020013539210000000000000000000000000000000000000498650NA496815N000000000000000000000000009N520550NA496815N00000124211020 +07500000020013539210000000000000000000000000000000000000169827S6138574Y000000000000000000000000000HP29347S6138574Y00000124211020 +07500000020013539210000000000000000000000000000000000000199828FU514750V0000000000000000000000000043M64148FU514750V00000124221020 +07500000020013539210000000000000000000000000000000000000029956P770867330000000000000000000000000085761656P7708673300000124231020 +0750000002001353921000000000000000000000000000000000000044972774501892A000000000000000000000000003DY2838774501892A00000124241020 +07500000020013539210000000000000000000000000000000000000469829CA050844Y000000000000000000000000009BV30159CA050844Y00000124241020 +07500000020013539210000000000000000000000000000000000000169825D0311970H000000000000000000000000005BR79205D0311970H00000124241020 +07500000020013539210000000000000000000000000000000000000829627AL480913T000000000000000000000000002NN14347AL480913T00000124251020 +07500000020013539210000000000000000000000000000000000000219927YG706092H000000000000000000000000003JW98407YG706092H00000124251020 +07500000020013539210000000000000000000000000000000000000199425LW336935E000000000000000000000000008TX77515LW336935E00000124251020 +07500000020013539210000000000000000000000000000000000000389720J62129722000000000000000000000000000HM48880J6212972200000124251020 +07500000020013539210000000000000000000000000000000000000269827XT105182X000000000000000000000000003M241697XT105182X00000124261020 +07500000020013539210000000000000000000000000000000000000199420NF250473D000000000000000000000000004J820530NF250473D00000124261020 +07500000020013539210000000000000000000000000000000000000239821V54463510000000000000000000000000001RX84871V5446351000000124261020 +075000000200135392100000000000000000000000000000000000001598211N0993722000000000000000000000000000S9148711N099372200000124261020 +07500000020013539210000000000000000000000000000000000000119424PE840762K000000000000000000000000007BN83854PE840762K00000124261020 +07500000020013539210000000000000000000000000000000000000239828AN578801M000000000000000000000000009WC25248AN578801M00000124271020 +075000000200135392100000000000000000000000000000000000001394233J229372S000000000000000000000000003BF616933J229372S00000124271020 +07500000020013539210000000000000000000000000000000000001069628BN801441K000000000000000000000000001L629368BN801441K00000124271020 +075000000200135392100000000000000000000000000000000000001198277L302043Y000000000000000000000000006CS017077L302043Y00000124271020 +075000000200135392100000000000000000000000000000000000009599248A3025838000000000000000000000000006LU355448A302583800000124281020 +0750000002001353921000000000000000000000000000000000000013982447645583L000000000000000000000000005N56377447645583L00000124281020 +075000000200135392100000000000000000000000000000000000001394289P037201S000000000000000000000000003PH188589P037201S00000124281020 +07500000020013539210000000000000000000000000000000000000119823XU1110155000000000000000000000000001EB97053XU111015500000124281020 +07500000020013539210000000000000000000000000000000000000974424UN26545090000000000000000000000000000K64824UN265450900000124291020 +07500000020013539210000000000000000000000000000000000000260721YP116343G000000000000000000000000004DY07971YP116343G00000124291020 +0750000002001353921000000000000000000000000000000000000024982212750654C000000000000000000000000001L98986212750654C00000124291020 +075000000200135392100000000000000000000000000000000000001398214F839961V000000000000000000000000008KL681914F839961V00000124291020 +07500000020013539210000000000000000000000000000000000000199425PN7725504000000000000000000000000009CU32565PN772550400000124291020 +075000000200135392100000000000000000000000000000000000003596254Y540044L000000000000000000000000008X3804854Y540044L00000124301020 +075000000200135392100000000000000000000000000000000000001594294J935192X000000000000000000000000001EN189794J935192X00000124301020 +07500000020013539210000000000000000000000000000000000000179820R7939084S000000000000000000000000001B462750R7939084S00000124311020 +07500000020013539210000000000000000000000000000000000000798723P08362422000000000000000000000000005KB62533P0836242200000124311020 +075000000200135392100000000000000000000000000000000000001494287L111862W000000000000000000000000008KD755987L111862W00000124311020 +07500000020013539210000000000000000000000000000000000000199322PU6874029000000000000000000000000005KD66052PU687402900000124311020 +075000000200135392100000000000000000000000000000000007055800287L867660W000000000000000000000000004JU453787L867660W00000124121020 +07500000020013539210000000000000000000000000000000000143820051AV244180T000000000000000000000000000X517161AV244180T00000124261020 \ No newline at end of file diff --git a/Mapp.BusinessLogic.Transactions.Tests/IntegrationTests.ConvertTransactions_ParsesAndConvertsTransactions_AmazonCA.verified.txt b/Mapp.BusinessLogic.Transactions.Tests/IntegrationTests.ConvertTransactions_ParsesAndConvertsTransactions_AmazonCA.verified.txt new file mode 100644 index 0000000..6a13cc9 --- /dev/null +++ b/Mapp.BusinessLogic.Transactions.Tests/IntegrationTests.ConvertTransactions_ParsesAndConvertsTransactions_AmazonCA.verified.txt @@ -0,0 +1,102 @@ +0740000002001353907Czech Goods s.r.o. 01111900000013280900+00000016514842+000000461730770000000494070190011300424FIO +0750000002001353901000000000000000000000000000000000000033982932698264000000000000000000000000000701-9484932-6982640000124011120 +0750000002001353901000000000000000000000000000000000000015992301597542600000000000000000000000000702-4317301-5975426000124011120 +0750000002001353901000000000000000000000000000000000000033982788492181000000000000000000000000000701-3242788-4921810000124011120 +0750000002001353901000000000000000000000000000000000000037812764196980100000000000000000000000000701-6768764-1969801000124011120 +0750000002001353901000000000000000000000000000000000000033982053853702400000000000000000000000000701-9065053-8537024000124011120 +0750000002001353901000000000000000000000000000000000000032992053853702400000000000000000000000000701-9065053-8537024000124011120 +0750000002001353901000000000000000000000000000000000000036982848966743500000000000000000000000000701-9827848-9667435000124011120 +0750000002001353901000000000000000000000000000000000000016772810181700400000000000000000000000000701-7514810-1817004000124011120 +0750000002001353901000000000000000000000000000000000000019282810181700400000000000000000000000000701-7514810-1817004000124011120 +0750000002001353901000000000000000000000000000000000000009762810181700400000000000000000000000000701-7514810-1817004000124011120 +0750000002001353901000000000000000000000000000000000000019972810181700400000000000000000000000000701-7514810-1817004000124011120 +0750000002001353901000000000000000000000000000000000000009762810181700400000000000000000000000000701-7514810-1817004000124011120 +0750000002001353901000000000000000000000000000000000000033982967516740500000000000000000000000000702-9963967-5167405000124011120 +0750000002001353901000000000000000000000000000000000000042992371180980200000000000000000000000000701-4321371-1809802000124011120 +0750000002001353901000000000000000000000000000000000000021992257416582200000000000000000000000000701-6240257-4165822000124011120 +0750000002001353901000000000000000000000000000000000000033982835830425700000000000000000000000000701-2083835-8304257000124011120 +0750000002001353901000000000000000000000000000000000000027992158204104100000000000000000000000000701-0535158-2041041000124031120 +0750000002001353901000000000000000000000000000000000000033982955293301200000000000000000000000000702-0921955-2933012000124031120 +0750000002001353901000000000000000000000000000000000000087972597423225500000000000000000000000000701-5447597-4232255000124031120 +0750000002001353901000000000000000000000000000000000000087972745444585800000000000000000000000000701-6345745-4445858000124031120 +0750000002001353901000000000000000000000000000000000000085992786674985400000000000000000000000000702-5128786-6749854000124031120 +0750000002001353901000000000000000000000000000000000000019992783350340800000000000000000000000000702-1609783-3503408000124031120 +0750000002001353901000000000000000000000000000000000000036992734506743100000000000000000000000000701-1621734-5067431000124031120 +0750000002001353901000000000000000000000000000000000000033982104931783400000000000000000000000000702-8569104-9317834000124031120 +0750000002001353901000000000000000000000000000000000000031982119552826300000000000000000000000000701-7101119-5528263000124031120 +0750000002001353901000000000000000000000000000000000000028982494156504100000000000000000000000000702-5435494-1565041000124051120 +0750000002001353901000000000000000000000000000000000000030992856981702900000000000000000000000000702-3317856-9817029000124051120 +0750000002001353901000000000000000000000000000000000000093992102096984800000000000000000000000000702-6103102-0969848000124051120 +0750000002001353901000000000000000000000000000000000000011992339771786300000000000000000000000000702-2152339-7717863000124051120 +0750000002001353901000000000000000000000000000000000000016992050158744500000000000000000000000000701-0291050-1587445000124051120 +07500000020013539010000000000000000000000000000000000016554910000000000000000000000000000000000000000000000000000000000124061120 +0750000002001353901000000000000000000000000000000000000014992448934586300000000000000000000000000701-9611448-9345863000124081120 +0750000002001353901000000000000000000000000000000000000082792959963623400000000000000000000000000702-2431959-9636234000124081120 +0750000002001353901000000000000000000000000000000000000030992717457385500000000000000000000000000701-3194717-4573855000124081120 +0750000002001353901000000000000000000000000000000000000031982174477783000000000000000000000000000701-4541174-4777830000124081120 +0750000002001353901000000000000000000000000000000000000073992430940820500000000000000000000000000701-2913430-9408205000124081120 +0750000002001353901000000000000000000000000000000000000019992303476745500000000000000000000000000701-8472303-4767455000124081120 +0750000002001353901000000000000000000000000000000000000031982837115626800000000000000000000000000701-9651837-1156268000124081120 +0750000002001353901000000000000000000000000000000000000033982717971460900000000000000000000000000702-5563717-9714609000124081120 +0750000002001353901000000000000000000000000000000000000016992117230026000000000000000000000000000701-6203117-2300260000124081120 +0750000002001353901000000000000000000000000000000000000033982372574822700000000000000000000000000702-2713372-5748227000124101120 +0750000002001353901000000000000000000000000000000000000044982370863864100000000000000000000000000701-5971370-8638641000124101120 +0750000002001353901000000000000000000000000000000000000016992734231860300000000000000000000000000702-7681734-2318603000124101120 +0750000002001353901000000000000000000000000000000000000034982239042264900000000000000000000000000701-5290239-0422649000124121120 +0750000002001353901000000000000000000000000000000000000034982334552421500000000000000000000000000701-5914334-5524215000124121120 +0750000002001353901000000000000000000000000000000000000033992189954983000000000000000000000000000701-2776189-9549830000124121120 +0750000002001353901000000000000000000000000000000000000033982217518181900000000000000000000000000701-0342217-5181819000124121120 +0750000002001353901000000000000000000000000000000000000020992290878346000000000000000000000000000701-2551290-8783460000124151120 +0750000002001353901000000000000000000000000000000000000037512171676262000000000000000000000000000702-2688171-6762620000124151120 +0750000002001353901000000000000000000000000000000000000073992438807300300000000000000000000000000701-3661438-8073003000124151120 +0750000002001353901000000000000000000000000000000000000042992298310583200000000000000000000000000702-0649298-3105832000124151120 +0750000002001353901000000000000000000000000000000000000045992134490582300000000000000000000000000702-5606134-4905823000124151120 +0750000002001353901000000000000000000000000000000000000021982904003781200000000000000000000000000702-0866904-0037812000124151120 +0750000002001353901000000000000000000000000000000000000059982311140180500000000000000000000000000702-8566311-1401805000124151120 +0750000002001353901000000000000000000000000000000000000063992983765704200000000000000000000000000701-1528983-7657042000124171120 +0750000002001353901000000000000000000000000000000000000010802571263380800000000000000000000000000701-0860571-2633808000124171120 +0750000002001353901000000000000000000000000000000000000018662571263380800000000000000000000000000701-0860571-2633808000124171120 +0750000002001353901000000000000000000000000000000000000020822571263380800000000000000000000000000701-0860571-2633808000124171120 +0750000002001353901000000000000000000000000000000000000057972640399383400000000000000000000000000702-1539640-3993834000124171120 +0750000002001353901000000000000000000000000000000000000042992272727622500000000000000000000000000702-2917272-7276225000124171120 +0750000002001353901000000000000000000000000000000000000010702917792585700000000000000000000000000701-5901917-7925857000124171120 +0750000002001353901000000000000000000000000000000000000013562323931386300000000000000000000000000702-4897323-9313863000124171120 +0750000002001353901000000000000000000000000000000000000044982018707541900000000000000000000000000702-7170018-7075419000124171120 +0750000002001353901000000000000000000000000000000000000030992987532102300000000000000000000000000701-8613987-5321023000124171120 +0750000002001353901000000000000000000000000000000000000030992619745303500000000000000000000000000702-6815619-7453035000124191120 +0750000002001353901000000000000000000000000000000000000034982996546823600000000000000000000000000701-0714996-5468236000124191120 +0750000002001353901000000000000000000000000000000000000039982232086341400000000000000000000000000701-0539232-0863414000124191120 +0750000002001353901000000000000000000000000000000000000033992991419066500000000000000000000000000701-6736991-4190665000124191120 +0750000002001353901000000000000000000000000000000000000044982649169943900000000000000000000000000702-2186649-1699439000124191120 +07500000020013539010000000000000000000000000000000000011745510000000000000000000000000000000000000000000000000000000000124201120 +0750000002001353901000000000000000000000000000000000000021222810434822700000000000000000000000000701-0042810-4348227000124231120 +0750000002001353901000000000000000000000000000000000000092992967199302300000000000000000000000000701-3956967-1993023000124231120 +0750000002001353901000000000000000000000000000000000000059972818926426900000000000000000000000000702-3157818-9264269000124231120 +0750000002001353901000000000000000000000000000000000000198992913386424300000000000000000000000000702-9932913-3864243000124231120 +0750000002001353901000000000000000000000000000000000000096982644906824800000000000000000000000000702-7236644-9068248000124231120 +0750000002001353901000000000000000000000000000000000000013992829473544600000000000000000000000000702-8490829-4735446000124231120 +0750000002001353901000000000000000000000000000000000000042992668733223700000000000000000000000000702-1075668-7332237000124241120 +0750000002001353901000000000000000000000000000000000000034982869780745000000000000000000000000000702-1809869-7807450000124241120 +0750000002001353901000000000000000000000000000000000000039992837423223700000000000000000000000000701-9600837-4232237000124241120 +0750000002001353901000000000000000000000000000000000000029982026215543900000000000000000000000000702-5685026-2155439000124241120 +0750000002001353901000000000000000000000000000000000000020992737255144000000000000000000000000000702-6599737-2551440000124241120 +0750000002001353901000000000000000000000000000000000000013992115553782600000000000000000000000000702-4837115-5537826000124241120 +0750000002001353901000000000000000000000000000000000000028982969862741600000000000000000000000000701-7162969-8627416000124241120 +0750000002001353901000000000000000000000000000000000000025982340996906300000000000000000000000000701-1868340-9969063000124241120 +0750000002001353901000000000000000000000000000000000000023992247372101400000000000000000000000000701-9703247-3721014000124261120 +0750000002001353901000000000000000000000000000000000000017982432102665800000000000000000000000000702-9030432-1026658000124261120 +0750000002001353901000000000000000000000000000000000000020992475618426800000000000000000000000000702-3822475-6184268000124261120 +0750000002001353901000000000000000000000000000000000000028982690853546100000000000000000000000000701-8000690-8535461000124301120 +0750000002001353901000000000000000000000000000000000000033582888288505900000000000000000000000000701-1826888-2885059000124301120 +0750000002001353901000000000000000000000000000000000000096982859157381400000000000000000000000000702-1543859-1573814000124301120 +0750000002001353901000000000000000000000000000000000000031982637768500600000000000000000000000000702-3626637-7685006000124301120 +0750000002001353901000000000000000000000000000000000000022142801798504100000000000000000000000000701-7599801-7985041000124301120 +0750000002001353901000000000000000000000000000000000000036982256474180600000000000000000000000000701-7242256-4741806000124301120 +0750000002001353901000000000000000000000000000000000000022142347857700100000000000000000000000000701-6795347-8577001000124301120 +0750000002001353901000000000000000000000000000000000000023992723506586700000000000000000000000000701-7004723-5065867000124301120 +0750000002001353901000000000000000000000000000000000000022272361898746300000000000000000000000000702-5296361-8987463000124301120 +0750000002001353901000000000000000000000000000000000000013992463866343000000000000000000000000000702-3002463-8663430000124301120 +0750000002001353901000000000000000000000000000000000000028982825710105500000000000000000000000000701-4435825-7101055000124301120 +0750000002001353901000000000000000000000000000000000000029992936677544000000000000000000000000000701-6836936-6775440000124301120 +0750000002001353901000000000000000000000000000000000000026982550782665500000000000000000000000000701-1649550-7826655000124301120 +0750000002001353901000000000000000000000000000000000000023992769225625800000000000000000000000000701-6623769-2256258000124301120 \ No newline at end of file diff --git a/Mapp.BusinessLogic.Transactions.Tests/IntegrationTests.ConvertTransactions_ParsesAndConvertsTransactions_AmazonDE.verified.txt b/Mapp.BusinessLogic.Transactions.Tests/IntegrationTests.ConvertTransactions_ParsesAndConvertsTransactions_AmazonDE.verified.txt new file mode 100644 index 0000000..bc69e5c --- /dev/null +++ b/Mapp.BusinessLogic.Transactions.Tests/IntegrationTests.ConvertTransactions_ParsesAndConvertsTransactions_AmazonDE.verified.txt @@ -0,0 +1,216 @@ +0740000002001353907Czech Goods s.r.o. 01111900000013280900+00000016514842+000000461730770000000494070190011300424FIO +0750000002001353906000000000000000000000000000000000000024992689358832400000000000000000000000000306-6333689-3588324000124021120 +0750000002001353906000000000000000000000000000000000000032562103390750200000000000000000000000000028-6611103-3907502000124021120 +0750000002001353906000000000000000000000000000000000000014202408479954400000000000000000000000000304-5495408-4799544000124021120 +0750000002001353906000000000000000000000000000000000000017482544459632100000000000000000000000000028-0546544-4596321000124021120 +0750000002001353906000000000000000000000000000000000000015142070440516200000000000000000000000000304-9293070-4405162000124021120 +0750000002001353906000000000000000000000000000000000000035882780763236300000000000000000000000000303-8965780-7632363000124021120 +0750000002001353906000000000000000000000000000000000000013992098443793600000000000000000000000000302-3482098-4437936000124021120 +0750000002001353906000000000000000000000000000000000000029562389851077600000000000000000000000000304-0185389-8510776000124021120 +0750000002001353906000000000000000000000000000000000000028902389851077600000000000000000000000000304-0185389-8510776000124021120 +0750000002001353906000000000000000000000000000000000000009452893261710500000000000000000000000000303-0530893-2617105000124021120 +0750000002001353906000000000000000000000000000000000000037202830526590400000000000000000000000000028-2829830-5265904000124021120 +0750000002001353906000000000000000000000000000000000000029902199992273000000000000000000000000000304-5348199-9922730000124021120 +0750000002001353906000000000000000000000000000000000000034602005604671400000000000000000000000000028-2213005-6046714000124021120 +0750000002001353906000000000000000000000000000000000000015142081492675900000000000000000000000000304-3708081-4926759000124021120 +0750000002001353906000000000000000000000000000000000000006902500346753600000000000000000000000000303-7992500-3467536000124041120 +0750000002001353906000000000000000000000000000000000000006902520713713800000000000000000000000000302-4384520-7137138000124041120 +0750000002001353906000000000000000000000000000000000000035992140946913300000000000000000000000000305-0902140-9469133000124041120 +0750000002001353906000000000000000000000000000000000000006902043382033000000000000000000000000000028-1040043-3820330000124061120 +0750000002001353906000000000000000000000000000000000000033002434921230600000000000000000000000000304-5436434-9212306000124061120 +0750000002001353906000000000000000000000000000000000000015992192328591800000000000000000000000000302-5257192-3285918000124061120 +0750000002001353906000000000000000000000000000000000000017992110482831000000000000000000000000000305-8822110-4828310000124061120 +0750000002001353906000000000000000000000000000000000000026992325226674800000000000000000000000000306-5724325-2266748000124061120 +0750000002001353906000000000000000000000000000000000000012992726728114800000000000000000000000000304-0752726-7281148000124061120 +0750000002001353906000000000000000000000000000000000000021002405294356100000000000000000000000000028-7169405-2943561000124061120 +0750000002001353906000000000000000000000000000000000000015992774793474900000000000000000000000000304-5175774-7934749000124061120 +0750000002001353906000000000000000000000000000000000000016482355339955200000000000000000000000000303-0156355-3399552000124061120 +0750000002001353906000000000000000000000000000000000000016992924496670100000000000000000000000000306-1137924-4966701000124061120 +0750000002001353906000000000000000000000000000000000000034982478445715400000000000000000000000000302-5596478-4457154000124061120 +0750000002001353906000000000000000000000000000000000000011992245635874600000000000000000000000000305-8620245-6358746000124091120 +0750000002001353906000000000000000000000000000000000000029322169089315500000000000000000000000000302-2912169-0893155000124091120 +0750000002001353906000000000000000000000000000000000000025992280078354100000000000000000000000000028-8301280-0783541000124091120 +0750000002001353906000000000000000000000000000000000000028992311081871100000000000000000000000000305-3202311-0818711000124091120 +0750000002001353906000000000000000000000000000000000000023992539640753600000000000000000000000000302-8172539-6407536000124091120 +0750000002001353906000000000000000000000000000000000000015992050806830500000000000000000000000000305-8722050-8068305000124091120 +0750000002001353906000000000000000000000000000000000000029032288473951400000000000000000000000000305-1929288-4739514000124091120 +0750000002001353906000000000000000000000000000000000000015992709109231100000000000000000000000000028-1928709-1092311000124091120 +0750000002001353906000000000000000000000000000000000000027992860532996100000000000000000000000000028-4171860-5329961000124091120 +07500000020013539060000000000000000000000000000000000007298410000000000000000000000000000000000000000000000000000000000124101120 +0750000002001353906000000000000000000000000000000000000022802445350833900000000000000000000000000302-1934445-3508339000124111120 +0750000002001353906000000000000000000000000000000000000031422232400750200000000000000000000000000303-3978232-4007502000124111120 +0750000002001353906000000000000000000000000000000000000027992977118274800000000000000000000000000305-2190977-1182748000124111120 +0750000002001353906000000000000000000000000000000000000035992142563951900000000000000000000000000028-3354142-5639519000124111120 +0750000002001353906000000000000000000000000000000000000034002431779632300000000000000000000000000303-7083431-7796323000124111120 +0750000002001353906000000000000000000000000000000000000034982544838751400000000000000000000000000305-7788544-8387514000124131120 +0750000002001353906000000000000000000000000000000000000011542086435635000000000000000000000000000028-8682086-4356350000124131120 +0750000002001353906000000000000000000000000000000000000026682103070034900000000000000000000000000028-3278103-0700349000124131120 +0750000002001353906000000000000000000000000000000000000014202675373874300000000000000000000000000028-4763675-3738743000124131120 +0750000002001353906000000000000000000000000000000000000022402927854751300000000000000000000000000303-9483927-8547513000124131120 +0750000002001353906000000000000000000000000000000000000006902649030431500000000000000000000000000305-0605649-0304315000124131120 +0750000002001353906000000000000000000000000000000000000028982192157872500000000000000000000000000306-1251192-1578725000124131120 +0750000002001353906000000000000000000000000000000000000033002279299072100000000000000000000000000304-5892279-2990721000124131120 +0750000002001353906000000000000000000000000000000000000006902600021393500000000000000000000000000028-3468600-0213935000124131120 +0750000002001353906000000000000000000000000000000000000024382859081075900000000000000000000000000302-2080859-0810759000124131120 +0750000002001353906000000000000000000000000000000000000020992630595231200000000000000000000000000305-5415630-5952312000124161120 +0750000002001353906000000000000000000000000000000000000015992336129635200000000000000000000000000306-3713336-1296352000124161120 +0750000002001353906000000000000000000000000000000000000019992118239875600000000000000000000000000303-7156118-2398756000124161120 +0750000002001353906000000000000000000000000000000000000045002042661955900000000000000000000000000304-5320042-6619559000124161120 +0750000002001353906000000000000000000000000000000000000019992372399952100000000000000000000000000304-7535372-3999521000124161120 +0750000002001353906000000000000000000000000000000000000025992679402271300000000000000000000000000305-4200679-4022713000124161120 +0750000002001353906000000000000000000000000000000000000020992809052593300000000000000000000000000302-7556809-0525933000124161120 +0750000002001353906000000000000000000000000000000000000022232105998991600000000000000000000000000028-1724105-9989916000124161120 +0750000002001353906000000000000000000000000000000000000013992478869474300000000000000000000000000305-1167478-8694743000124161120 +0750000002001353906000000000000000000000000000000000000017992735584592200000000000000000000000000304-2729735-5845922000124161120 +0750000002001353906000000000000000000000000000000000000020992553701075600000000000000000000000000305-5874553-7010756000124161120 +0750000002001353906000000000000000000000000000000000000020992952646991900000000000000000000000000303-8399952-6469919000124161120 +0750000002001353906000000000000000000000000000000000000011992856886994300000000000000000000000000306-9881856-8869943000124161120 +0750000002001353906000000000000000000000000000000000000019232856886994300000000000000000000000000306-9881856-8869943000124161120 +0750000002001353906000000000000000000000000000000000000019232856886994300000000000000000000000000306-9881856-8869943000124161120 +0750000002001353906000000000000000000000000000000000000009942856886994300000000000000000000000000306-9881856-8869943000124161120 +0750000002001353906000000000000000000000000000000000000006542856886994300000000000000000000000000306-9881856-8869943000124161120 +0750000002001353906000000000000000000000000000000000000015992916569956600000000000000000000000000303-8206916-5699566000124161120 +0750000002001353906000000000000000000000000000000000000040472832166911100000000000000000000000000306-8742832-1669111000124161120 +0750000002001353906000000000000000000000000000000000000009802053256990200000000000000000000000000028-4066053-2569902000124161120 +0750000002001353906000000000000000000000000000000000000029982131595395900000000000000000000000000304-1419131-5953959000124161120 +0750000002001353906000000000000000000000000000000000000020932290222351700000000000000000000000000305-1678290-2223517000124171120 +0750000002001353906000000000000000000000000000000000000019992090479315500000000000000000000000000306-6336090-4793155000124181120 +0750000002001353906000000000000000000000000000000000000057972292836916900000000000000000000000000304-5334292-8369169000124181120 +0750000002001353906000000000000000000000000000000000000020982068565715800000000000000000000000000306-8931068-5657158000124181120 +0750000002001353906000000000000000000000000000000000000014992547854191900000000000000000000000000306-1361547-8541919000124181120 +0750000002001353906000000000000000000000000000000000000045992296225953800000000000000000000000000028-4624296-2259538000124181120 +0750000002001353906000000000000000000000000000000000000034982492583312000000000000000000000000000306-2763492-5833120000124181120 +0750000002001353906000000000000000000000000000000000000021762377948036600000000000000000000000000304-0617377-9480366000124181120 +0750000002001353906000000000000000000000000000000000000015992283854116100000000000000000000000000304-2766283-8541161000124181120 +0750000002001353906000000000000000000000000000000000000016492734516193100000000000000000000000000305-7970734-5161931000124181120 +0750000002001353906000000000000000000000000000000000000011992427466116800000000000000000000000000305-5893427-4661168000124181120 +0750000002001353906000000000000000000000000000000000000006902820816116300000000000000000000000000306-6640820-8161163000124181120 +0750000002001353906000000000000000000000000000000000000032592952399075200000000000000000000000000302-8488952-3990752000124181120 +0750000002001353906000000000000000000000000000000000000027992379666995200000000000000000000000000306-4196379-6669952000124181120 +0750000002001353906000000000000000000000000000000000000008002925713155800000000000000000000000000303-2951925-7131558000124181120 +0750000002001353906000000000000000000000000000000000000037992019062353400000000000000000000000000306-8119019-0623534000124181120 +0750000002001353906000000000000000000000000000000000000034742443213872900000000000000000000000000302-0253443-2138729000124181120 +0750000002001353906000000000000000000000000000000000000091062496449390700000000000000000000000000302-6048496-4493907000124181120 +0750000002001353906000000000000000000000000000000000000022102218204517600000000000000000000000000303-0186218-2045176000124201120 +0750000002001353906000000000000000000000000000000000000017482039736276800000000000000000000000000306-9336039-7362768000124201120 +0750000002001353906000000000000000000000000000000000000034982645756355000000000000000000000000000302-5151645-7563550000124201120 +0750000002001353906000000000000000000000000000000000000021802423941070100000000000000000000000000305-0913423-9410701000124201120 +0750000002001353906000000000000000000000000000000000000020992728723714000000000000000000000000000303-4576728-7237140000124201120 +0750000002001353906000000000000000000000000000000000000018932978638031500000000000000000000000000303-2794978-6380315000124201120 +0750000002001353906000000000000000000000000000000000000023992978638031500000000000000000000000000303-2794978-6380315000124201120 +0750000002001353906000000000000000000000000000000000000013052183784750600000000000000000000000000304-8389183-7847506000124201120 +0750000002001353906000000000000000000000000000000000000013052436598913700000000000000000000000000306-0492436-5989137000124201120 +0750000002001353906000000000000000000000000000000000000022992044288592400000000000000000000000000306-9321044-2885924000124201120 +0750000002001353906000000000000000000000000000000000000010992044288592400000000000000000000000000306-9321044-2885924000124201120 +0750000002001353906000000000000000000000000000000000000013052564657791700000000000000000000000000305-4969564-6577917000124201120 +0750000002001353906000000000000000000000000000000000000035992017934515500000000000000000000000000302-9580017-9345155000124201120 +0750000002001353906000000000000000000000000000000000000010542305772193800000000000000000000000000305-0085305-7721938000124201120 +0750000002001353906000000000000000000000000000000000000006902467595715800000000000000000000000000302-6877467-5957158000124201120 +0750000002001353906000000000000000000000000000000000000006902674310114500000000000000000000000000303-5321674-3101145000124231120 +0750000002001353906000000000000000000000000000000000000013052323099393200000000000000000000000000306-3743323-0993932000124231120 +0750000002001353906000000000000000000000000000000000000023392864833470200000000000000000000000000304-9851864-8334702000124231120 +0750000002001353906000000000000000000000000000000000000025992980772435100000000000000000000000000304-1294980-7724351000124231120 +0750000002001353906000000000000000000000000000000000000013052670895476100000000000000000000000000304-6537670-8954761000124231120 +0750000002001353906000000000000000000000000000000000000015602895273315400000000000000000000000000302-9323895-2733154000124231120 +0750000002001353906000000000000000000000000000000000000009802555368353800000000000000000000000000304-2962555-3683538000124231120 +0750000002001353906000000000000000000000000000000000000013052887465633200000000000000000000000000306-0427887-4656332000124231120 +0750000002001353906000000000000000000000000000000000000013052536816036400000000000000000000000000305-7575536-8160364000124231120 +0750000002001353906000000000000000000000000000000000000025992482274995800000000000000000000000000302-9890482-2749958000124231120 +0750000002001353906000000000000000000000000000000000000036002102137635200000000000000000000000000028-3347102-1376352000124231120 +0750000002001353906000000000000000000000000000000000000020992145925074700000000000000000000000000305-1719145-9250747000124231120 +0750000002001353906000000000000000000000000000000000000015992877775796100000000000000000000000000304-7143877-7757961000124231120 +0750000002001353906000000000000000000000000000000000000027002896031714800000000000000000000000000305-6222896-0317148000124231120 +0750000002001353906000000000000000000000000000000000000076992501259475100000000000000000000000000303-2655501-2594751000124231120 +0750000002001353906000000000000000000000000000000000000006902503200992400000000000000000000000000306-6495503-2009924000124231120 +0750000002001353906000000000000000000000000000000000000013052017207716300000000000000000000000000304-7432017-2077163000124231120 +0750000002001353906000000000000000000000000000000000000013052158099874800000000000000000000000000028-3400158-0998748000124231120 +0750000002001353906000000000000000000000000000000000000012992894227236300000000000000000000000000303-2979894-2272363000124231120 +0750000002001353906000000000000000000000000000000000000023992894227236300000000000000000000000000303-2979894-2272363000124231120 +0750000002001353906000000000000000000000000000000000000013052960952352500000000000000000000000000305-3789960-9523525000124231120 +0750000002001353906000000000000000000000000000000000000034982894239713700000000000000000000000000304-6849894-2397137000124231120 +0750000002001353906000000000000000000000000000000000000018992455239874100000000000000000000000000028-3868455-2398741000124231120 +0750000002001353906000000000000000000000000000000000000008302279152914100000000000000000000000000305-9800279-1529141000124231120 +0750000002001353906000000000000000000000000000000000000064902893618994500000000000000000000000000302-4624893-6189945000124231120 +0750000002001353906000000000000000000000000000000000000009802122104431500000000000000000000000000302-5780122-1044315000124231120 +0750000002001353906000000000000000000000000000000000000045002492399550100000000000000000000000000305-6191492-3995501000124231120 +0750000002001353906000000000000000000000000000000000000031242196889154800000000000000000000000000305-0176196-8891548000124231120 +0750000002001353906000000000000000000000000000000000000013052614345873500000000000000000000000000303-4575614-3458735000124231120 +0750000002001353906000000000000000000000000000000000000013052445404272300000000000000000000000000306-6866445-4042723000124231120 +07500000020013539060000000000000000000000000000000000018910510000000000000000000000000000000000000000000000000000000000124241120 +0750000002001353906000000000000000000000000000000000000006902631502993200000000000000000000000000302-5736631-5029932000124251120 +0750000002001353906000000000000000000000000000000000000037972347604995000000000000000000000000000306-6357347-6049950000124251120 +0750000002001353906000000000000000000000000000000000000019712240551395500000000000000000000000000028-5629240-5513955000124251120 +0750000002001353906000000000000000000000000000000000000014052221869710200000000000000000000000000028-9432221-8697102000124251120 +0750000002001353906000000000000000000000000000000000000011752185715473700000000000000000000000000303-4543185-7154737000124251120 +0750000002001353906000000000000000000000000000000000000021312185715473700000000000000000000000000303-4543185-7154737000124251120 +0750000002001353906000000000000000000000000000000000000014052097139314100000000000000000000000000306-0055097-1393141000124251120 +0750000002001353906000000000000000000000000000000000000024992625824435100000000000000000000000000305-5833625-8244351000124251120 +0750000002001353906000000000000000000000000000000000000013052128389152100000000000000000000000000302-0572128-3891521000124251120 +0750000002001353906000000000000000000000000000000000000013052584573713800000000000000000000000000303-0900584-5737138000124251120 +0750000002001353906000000000000000000000000000000000000014052778058676600000000000000000000000000028-7818778-0586766000124251120 +0750000002001353906000000000000000000000000000000000000014052881239795800000000000000000000000000304-8362881-2397958000124251120 +0750000002001353906000000000000000000000000000000000000009802725523795600000000000000000000000000028-0729725-5237956000124251120 +0750000002001353906000000000000000000000000000000000000027932919857711500000000000000000000000000306-1404919-8577115000124251120 +0750000002001353906000000000000000000000000000000000000013052760737156600000000000000000000000000028-5934760-7371566000124251120 +0750000002001353906000000000000000000000000000000000000014052361986350600000000000000000000000000303-9133361-9863506000124251120 +0750000002001353906000000000000000000000000000000000000013052053563550500000000000000000000000000302-0330053-5635505000124251120 +0750000002001353906000000000000000000000000000000000000014052087221311700000000000000000000000000028-3291087-2213117000124251120 +0750000002001353906000000000000000000000000000000000000014052021111953100000000000000000000000000305-3769021-1119531000124251120 +0750000002001353906000000000000000000000000000000000000014052452461471000000000000000000000000000304-6515452-4614710000124251120 +0750000002001353906000000000000000000000000000000000000014052241983791600000000000000000000000000305-2600241-9837916000124271120 +0750000002001353906000000000000000000000000000000000000014052039591151900000000000000000000000000305-6168039-5911519000124271120 +0750000002001353906000000000000000000000000000000000000014052652175634900000000000000000000000000028-0671652-1756349000124271120 +0750000002001353906000000000000000000000000000000000000014052517504514600000000000000000000000000302-1278517-5045146000124271120 +0750000002001353906000000000000000000000000000000000000019992102034111100000000000000000000000000306-3901102-0341111000124271120 +0750000002001353906000000000000000000000000000000000000024992891066275700000000000000000000000000305-5923891-0662757000124271120 +0750000002001353906000000000000000000000000000000000000014052821668914900000000000000000000000000028-4143821-6689149000124271120 +0750000002001353906000000000000000000000000000000000000013052424094357100000000000000000000000000306-0282424-0943571000124271120 +0750000002001353906000000000000000000000000000000000000022652555366675500000000000000000000000000302-3732555-3666755000124271120 +0750000002001353906000000000000000000000000000000000000014052986822676600000000000000000000000000303-0736986-8226766000124271120 +0750000002001353906000000000000000000000000000000000000034982246530992000000000000000000000000000302-6134246-5309920000124271120 +0750000002001353906000000000000000000000000000000000000015992764775470400000000000000000000000000303-2903764-7754704000124271120 +0750000002001353906000000000000000000000000000000000000025682783165555600000000000000000000000000302-9664783-1655556000124271120 +0750000002001353906000000000000000000000000000000000000008002699844833600000000000000000000000000303-7185699-8448336000124271120 +0750000002001353906000000000000000000000000000000000000029992667867631600000000000000000000000000302-7023667-8676316000124271120 +0750000002001353906000000000000000000000000000000000000010892517641713800000000000000000000000000303-5610517-6417138000124271120 +0750000002001353906000000000000000000000000000000000000014052461195794300000000000000000000000000303-9614461-1957943000124271120 +0750000002001353906000000000000000000000000000000000000015992682822751300000000000000000000000000302-0416682-8227513000124271120 +0750000002001353906000000000000000000000000000000000000019992155761632200000000000000000000000000302-5467155-7616322000124271120 +0750000002001353906000000000000000000000000000000000000014052916770671400000000000000000000000000028-4915916-7706714000124271120 +0750000002001353906000000000000000000000000000000000000013052646271152600000000000000000000000000304-8560646-2711526000124301120 +0750000002001353906000000000000000000000000000000000000019992138734031500000000000000000000000000303-5742138-7340315000124301120 +0750000002001353906000000000000000000000000000000000000020992930127874000000000000000000000000000302-8022930-1278740000124301120 +0750000002001353906000000000000000000000000000000000000014052320467552600000000000000000000000000028-5072320-4675526000124301120 +0750000002001353906000000000000000000000000000000000000013052761407154400000000000000000000000000028-4811761-4071544000124301120 +0750000002001353906000000000000000000000000000000000000030082744101556800000000000000000000000000304-7834744-1015568000124301120 +0750000002001353906000000000000000000000000000000000000055992737594675700000000000000000000000000303-2159737-5946757000124301120 +0750000002001353906000000000000000000000000000000000000034982775997150300000000000000000000000000303-2879775-9971503000124301120 +0750000002001353906000000000000000000000000000000000000035992814931235700000000000000000000000000306-6441814-9312357000124301120 +0750000002001353906000000000000000000000000000000000000064962366034591500000000000000000000000000304-0036366-0345915000124301120 +0750000002001353906000000000000000000000000000000000000012992831490031100000000000000000000000000303-7920831-4900311000124301120 +0750000002001353906000000000000000000000000000000000000046992229491872500000000000000000000000000306-7917229-4918725000124301120 +0750000002001353906000000000000000000000000000000000000010692939708354300000000000000000000000000303-2547939-7083543000124301120 +0750000002001353906000000000000000000000000000000000000024992727324915100000000000000000000000000304-5550727-3249151000124301120 +0750000002001353906000000000000000000000000000000000000045802550114591700000000000000000000000000303-8421550-1145917000124301120 +0750000002001353906000000000000000000000000000000000000023682259852911400000000000000000000000000302-4323259-8529114000124301120 +0750000002001353906000000000000000000000000000000000000004902259852911400000000000000000000000000302-4323259-8529114000124301120 +0750000002001353906000000000000000000000000000000000000013052759411953500000000000000000000000000306-2244759-4119535000124301120 +0750000002001353906000000000000000000000000000000000000013052176185390100000000000000000000000000305-0528176-1853901000124301120 +0750000002001353906000000000000000000000000000000000000034982035372432700000000000000000000000000303-8534035-3724327000124301120 +0750000002001353906000000000000000000000000000000000000011002411809313200000000000000000000000000303-0531411-8093132000124301120 +0750000002001353906000000000000000000000000000000000000034982239675554100000000000000000000000000306-5110239-6755541000124301120 +0750000002001353906000000000000000000000000000000000000013052040566913500000000000000000000000000028-8766040-5669135000124301120 +0750000002001353906000000000000000000000000000000000000006902713312350800000000000000000000000000306-0377713-3123508000124301120 +0750000002001353906000000000000000000000000000000000000015052836720513000000000000000000000000000303-7846836-7205130000124301120 +0750000002001353906000000000000000000000000000000000000020992881305076600000000000000000000000000303-8159881-3050766000124301120 +0750000002001353906000000000000000000000000000000000000025482283966030200000000000000000000000000028-6457283-9660302000124301120 +0750000002001353906000000000000000000000000000000000000056262686454996600000000000000000000000000028-2356686-4549966000124301120 +0750000002001353906000000000000000000000000000000000000009612149326513400000000000000000000000000028-5794149-3265134000124301120 +0750000002001353906000000000000000000000000000000000000010662149326513400000000000000000000000000028-5794149-3265134000124301120 +0750000002001353906000000000000000000000000000000000000008282149326513400000000000000000000000000028-5794149-3265134000124301120 +0750000002001353906000000000000000000000000000000000000013992851093156800000000000000000000000000306-0616851-0931568000124301120 +0750000002001353906000000000000000000000000000000000000014052770677313600000000000000000000000000305-9913770-6773136000124301120 +0750000002001353906000000000000000000000000000000000000055272628798830500000000000000000000000000302-8947628-7988305000124301120 +0750000002001353906000000000000000000000000000000000000013052607653710300000000000000000000000000305-3224607-6537103000124301120 +0750000002001353906000000000000000000000000000000000000021922733894353900000000000000000000000000028-7509733-8943539000124301120 +0750000002001353906000000000000000000000000000000000000017492043002833400000000000000000000000000304-2821043-0028334000124301120 \ No newline at end of file diff --git a/Mapp.BusinessLogic.Transactions.Tests/IntegrationTests.ConvertTransactions_ParsesAndConvertsTransactions_AmazonES.verified.txt b/Mapp.BusinessLogic.Transactions.Tests/IntegrationTests.ConvertTransactions_ParsesAndConvertsTransactions_AmazonES.verified.txt new file mode 100644 index 0000000..2984171 --- /dev/null +++ b/Mapp.BusinessLogic.Transactions.Tests/IntegrationTests.ConvertTransactions_ParsesAndConvertsTransactions_AmazonES.verified.txt @@ -0,0 +1,40 @@ +0740000002001353907Czech Goods s.r.o. 01111900000013280900+00000016514842+000000461730770000000494070190011300424FIO +0750000002001353907000000000000000000000000000000000000016992431569074200000000000000000000000000403-6765431-5690742000124021120 +0750000002001353907000000000000000000000000000000000000010452891456751100000000000000000000000000405-2259891-4567511000124061120 +0750000002001353907000000000000000000000000000000000000009302784449314300000000000000000000000000408-8819784-4493143000124061120 +0750000002001353907000000000000000000000000000000000000021992026233230700000000000000000000000000404-7185026-2332307000124061120 +0750000002001353907000000000000000000000000000000000000016992165312675800000000000000000000000000408-1651165-3126758000124091120 +0750000002001353907000000000000000000000000000000000000009302384624674000000000000000000000000000404-8907384-6246740000124091120 +07500000020013539070000000000000000000000000000000000001227710000000000000000000000000000000000000000000000000000000000124101120 +0750000002001353907000000000000000000000000000000000000018992692624271200000000000000000000000000408-8666692-6242712000124111120 +0750000002001353907000000000000000000000000000000000000026542890444036600000000000000000000000000404-7080890-4440366000124111120 +0750000002001353907000000000000000000000000000000000000031992069821310400000000000000000000000000407-8810069-8213104000124111120 +0750000002001353907000000000000000000000000000000000000017992895493793000000000000000000000000000403-6682895-4937930000124131120 +0750000002001353907000000000000000000000000000000000000010452987211311000000000000000000000000000404-3986987-2113110000124131120 +0750000002001353907000000000000000000000000000000000000009302028760356500000000000000000000000000404-4027028-7603565000124131120 +0750000002001353907000000000000000000000000000000000000010992965173155400000000000000000000000000407-5488965-1731554000124161120 +0750000002001353907000000000000000000000000000000000000016992547164993900000000000000000000000000402-0131547-1649939000124161120 +0750000002001353907000000000000000000000000000000000000009302174751550900000000000000000000000000405-5928174-7515509000124161120 +0750000002001353907000000000000000000000000000000000000012752714595151100000000000000000000000000403-7506714-5951511000124181120 +0750000002001353907000000000000000000000000000000000000015052959727716100000000000000000000000000171-8966959-7277161000124201120 +0750000002001353907000000000000000000000000000000000000018202311006352200000000000000000000000000403-1847311-0063522000124201120 +0750000002001353907000000000000000000000000000000000000015052382402356600000000000000000000000000402-9317382-4023566000124201120 +0750000002001353907000000000000000000000000000000000000016992038221232100000000000000000000000000402-7660038-2212321000124201120 +0750000002001353907000000000000000000000000000000000000015125400332914500000000000000000000000000171-6776400-3329145000124201120 +0750000002001353907000000000000000000000000000000000000015962039502274800000000000000000000000000403-9759039-5022748000124231120 +0750000002001353907000000000000000000000000000000000000015962376616032000000000000000000000000000403-5601376-6160320000124231120 +0750000002001353907000000000000000000000000000000000000066002419120192000000000000000000000000000408-7515419-1201920000124231120 +0750000002001353907000000000000000000000000000000000000043992028828272900000000000000000000000000171-3770028-8282729000124231120 +07500000020013539070000000000000000000000000000000000003032910000000000000000000000000000000000000000000000000000000000124241120 +0750000002001353907000000000000000000000000000000000000026582275416515600000000000000000000000000403-9506275-4165156000124251120 +0750000002001353907000000000000000000000000000000000000008152059170033600000000000000000000000000405-4807059-1700336000124271120 +0750000002001353907000000000000000000000000000000000000016992200559871200000000000000000000000000407-1387200-5598712000124271120 +0750000002001353907000000000000000000000000000000000000023962610060830500000000000000000000000000405-4521610-0608305000124271120 +0750000002001353907000000000000000000000000000000000000016992487969470300000000000000000000000000402-3093487-9694703000124271120 +0750000002001353907000000000000000000000000000000000000016992539805792300000000000000000000000000406-3071539-8057923000124301120 +0750000002001353907000000000000000000000000000000000000016992280843235300000000000000000000000000171-1193280-8432353000124301120 +0750000002001353907000000000000000000000000000000000000041002007920351900000000000000000000000000407-0085007-9203519000124301120 +0750000002001353907000000000000000000000000000000000000012692652523316000000000000000000000000000403-3939652-5233160000124301120 +0750000002001353907000000000000000000000000000000000000041002877661470800000000000000000000000000404-0203877-6614708000124301120 +0750000002001353907000000000000000000000000000000000000009102005815074100000000000000000000000000402-7394005-8150741000124301120 +0750000002001353907000000000000000000000000000000000000006802005815074100000000000000000000000000402-7394005-8150741000124301120 \ No newline at end of file diff --git a/Mapp.BusinessLogic.Transactions.Tests/IntegrationTests.ConvertTransactions_ParsesAndConvertsTransactions_AmazonGB.verified.txt b/Mapp.BusinessLogic.Transactions.Tests/IntegrationTests.ConvertTransactions_ParsesAndConvertsTransactions_AmazonGB.verified.txt new file mode 100644 index 0000000..2dc8341 --- /dev/null +++ b/Mapp.BusinessLogic.Transactions.Tests/IntegrationTests.ConvertTransactions_ParsesAndConvertsTransactions_AmazonGB.verified.txt @@ -0,0 +1,228 @@ +0740000002001353907Czech Goods s.r.o. 01111900000013280900+00000016514842+000000461730770000000494070190011300424FIO +0750000002001353905000000000000000000000000000000000000084982988797631300000000000000000000000000206-3339988-7976313000124021120 +0750000002001353905000000000000000000000000000000000000071952988797631300000000000000000000000000206-3339988-7976313000124021120 +0750000002001353905000000000000000000000000000000000000021002236524434000000000000000000000000000205-3000236-5244340000124021120 +0750000002001353905000000000000000000000000000000000000018992282502593000000000000000000000000000202-0066282-5025930000124021120 +0750000002001353905000000000000000000000000000000000000015992396080190600000000000000000000000000202-8310396-0801906000124021120 +0750000002001353905000000000000000000000000000000000000018492922336513400000000000000000000000000203-9153922-3365134000124021120 +0750000002001353905000000000000000000000000000000000000015482922336513400000000000000000000000000203-9153922-3365134000124021120 +0750000002001353905000000000000000000000000000000000000023992579097391600000000000000000000000000202-3813579-0973916000124021120 +0750000002001353905000000000000000000000000000000000000029992599632513500000000000000000000000000026-0042599-6325135000124021120 +0750000002001353905000000000000000000000000000000000000017992195814830200000000000000000000000000026-8070195-8148302000124021120 +0750000002001353905000000000000000000000000000000000000019992939692515200000000000000000000000000204-2113939-6925152000124021120 +0750000002001353905000000000000000000000000000000000000009992377176591400000000000000000000000000202-4613377-1765914000124021120 +0750000002001353905000000000000000000000000000000000000015002393677476900000000000000000000000000202-5866393-6774769000124021120 +0750000002001353905000000000000000000000000000000000000015992616278034300000000000000000000000000206-3219616-2780343000124021120 +0750000002001353905000000000000000000000000000000000000009002226714757100000000000000000000000000206-0107226-7147571000124021120 +0750000002001353905000000000000000000000000000000000000008982226714757100000000000000000000000000206-0107226-7147571000124021120 +0750000002001353905000000000000000000000000000000000000018982237816832800000000000000000000000000203-7003237-8168328000124021120 +0750000002001353905000000000000000000000000000000000000026152128837071200000000000000000000000000205-2734128-8370712000124021120 +0750000002001353905000000000000000000000000000000000000023992636577076600000000000000000000000000204-3696636-5770766000124021120 +0750000002001353905000000000000000000000000000000000000018952979448752000000000000000000000000000204-5135979-4487520000124021120 +0750000002001353905000000000000000000000000000000000000012992563797710400000000000000000000000000205-5789563-7977104000124021120 +0750000002001353905000000000000000000000000000000000000022992959366274400000000000000000000000000205-6456959-3662744000124021120 +0750000002001353905000000000000000000000000000000000000017995352774272400000000000000000000000000026-3948352-7742724000124021120 +0750000002001353905000000000000000000000000000000000000028992763659871700000000000000000000000000206-4293763-6598717000124041120 +0750000002001353905000000000000000000000000000000000000010492543433953000000000000000000000000000026-0601543-4339530000124041120 +0750000002001353905000000000000000000000000000000000000007492543433953000000000000000000000000000026-0601543-4339530000124041120 +0750000002001353905000000000000000000000000000000000000074942355036911200000000000000000000000000202-0728355-0369112000124041120 +0750000002001353905000000000000000000000000000000000000014952545787311100000000000000000000000000205-7135545-7873111000124041120 +0750000002001353905000000000000000000000000000000000000028972600106033300000000000000000000000000206-3444600-1060333000124041120 +0750000002001353905000000000000000000000000000000000000024992407966751300000000000000000000000000204-0376407-9667513000124041120 +0750000002001353905000000000000000000000000000000000000026152275311712600000000000000000000000000203-4797275-3117126000124041120 +0750000002001353905000000000000000000000000000000000000018292958644351900000000000000000000000000204-5559958-6443519000124041120 +0750000002001353905000000000000000000000000000000000000007502958644351900000000000000000000000000204-5559958-6443519000124041120 +0750000002001353905000000000000000000000000000000000000016002597953792700000000000000000000000000204-4687597-9537927000124041120 +0750000002001353905000000000000000000000000000000000000026992026706992700000000000000000000000000204-0001026-7069927000124041120 +0750000002001353905000000000000000000000000000000000000017982745666431100000000000000000000000000206-0035745-6664311000124041120 +0750000002001353905000000000000000000000000000000000000022992463552596700000000000000000000000000204-3136463-5525967000124041120 +0750000002001353905000000000000000000000000000000000000022982027566834800000000000000000000000000203-1864027-5668348000124041120 +0750000002001353905000000000000000000000000000000000000103972335952195900000000000000000000000000206-0646335-9521959000124061120 +0750000002001353905000000000000000000000000000000000000012992881538112300000000000000000000000000026-7333881-5381123000124061120 +0750000002001353905000000000000000000000000000000000000010982969068354900000000000000000000000000204-9497969-0683549000124061120 +0750000002001353905000000000000000000000000000000000000020982877386034100000000000000000000000000206-9894877-3860341000124061120 +0750000002001353905000000000000000000000000000000000000024982365589076500000000000000000000000000204-1456365-5890765000124061120 +0750000002001353905000000000000000000000000000000000000036992882410836200000000000000000000000000205-7922882-4108362000124061120 +0750000002001353905000000000000000000000000000000000000046982056945634300000000000000000000000000205-2616056-9456343000124061120 +0750000002001353905000000000000000000000000000000000000020982732405150100000000000000000000000000203-3810732-4051501000124061120 +0750000002001353905000000000000000000000000000000000000039002529530910500000000000000000000000000204-5081529-5309105000124061120 +0750000002001353905000000000000000000000000000000000000023992739987956100000000000000000000000000206-3430739-9879561000124091120 +0750000002001353905000000000000000000000000000000000000008992510030990700000000000000000000000000206-2409510-0309907000124091120 +0750000002001353905000000000000000000000000000000000000008992243713396900000000000000000000000000205-4170243-7133969000124091120 +0750000002001353905000000000000000000000000000000000000010952639426111500000000000000000000000000206-7102639-4261115000124091120 +0750000002001353905000000000000000000000000000000000000007002012318594600000000000000000000000000206-5242012-3185946000124091120 +0750000002001353905000000000000000000000000000000000000026152221560352200000000000000000000000000203-5729221-5603522000124091120 +0750000002001353905000000000000000000000000000000000000013992673080271400000000000000000000000000026-5887673-0802714000124091120 +0750000002001353905000000000000000000000000000000000000008992570333873700000000000000000000000000203-4840570-3338737000124091120 +0750000002001353905000000000000000000000000000000000000041982774878431900000000000000000000000000203-9511774-8784319000124091120 +0750000002001353905000000000000000000000000000000000000007492888714596600000000000000000000000000206-6542888-7145966000124091120 +0750000002001353905000000000000000000000000000000000000010432888714596600000000000000000000000000206-6542888-7145966000124091120 +0750000002001353905000000000000000000000000000000000000011992076033632400000000000000000000000000026-6490076-0336324000124091120 +0750000002001353905000000000000000000000000000000000000008992982003314600000000000000000000000000206-1293982-0033146000124091120 +0750000002001353905000000000000000000000000000000000000020982026143391800000000000000000000000000202-0386026-1433918000124091120 +0750000002001353905000000000000000000000000000000000000016245479009554100000000000000000000000000202-8208479-0095541000124091120 +07500000020013539050000000000000000000000000000000000014357610000000000000000000000000000000000000000000000000000000000124111120 +0750000002001353905000000000000000000000000000000000000008992565882033400000000000000000000000000202-0120565-8820334000124111120 +0750000002001353905000000000000000000000000000000000000026992845946836600000000000000000000000000206-1212845-9468366000124111120 +0750000002001353905000000000000000000000000000000000000024002994499872800000000000000000000000000203-1883994-4998728000124111120 +0750000002001353905000000000000000000000000000000000000010002176131556700000000000000000000000000202-1912176-1315567000124111120 +0750000002001353905000000000000000000000000000000000000006002176131556700000000000000000000000000202-1912176-1315567000124111120 +0750000002001353905000000000000000000000000000000000000014942586123391800000000000000000000000000026-6326586-1233918000124111120 +0750000002001353905000000000000000000000000000000000000008992309316191600000000000000000000000000204-2849309-3161916000124111120 +0750000002001353905000000000000000000000000000000000000008482906667716100000000000000000000000000206-4941906-6677161000124131120 +0750000002001353905000000000000000000000000000000000000012502906667716100000000000000000000000000206-4941906-6677161000124131120 +0750000002001353905000000000000000000000000000000000000029222191142355800000000000000000000000000204-9385191-1423558000124131120 +0750000002001353905000000000000000000000000000000000000019482191142355800000000000000000000000000204-9385191-1423558000124131120 +0750000002001353905000000000000000000000000000000000000009742191142355800000000000000000000000000204-9385191-1423558000124131120 +0750000002001353905000000000000000000000000000000000000019472191142355800000000000000000000000000204-9385191-1423558000124131120 +0750000002001353905000000000000000000000000000000000000019992956060676200000000000000000000000000026-2977956-0606762000124131120 +0750000002001353905000000000000000000000000000000000000014992362003714600000000000000000000000000202-1178362-0037146000124131120 +0750000002001353905000000000000000000000000000000000000026152767903471100000000000000000000000000206-7533767-9034711000124131120 +0750000002001353905000000000000000000000000000000000000047992587359071400000000000000000000000000204-6432587-3590714000124131120 +0750000002001353905000000000000000000000000000000000000275992537834670200000000000000000000000000206-2018537-8346702000124131120 +0750000002001353905000000000000000000000000000000000000008992276175472300000000000000000000000000204-6532276-1754723000124131120 +0750000002001353905000000000000000000000000000000000000008992718222916800000000000000000000000000204-2596718-2229168000124131120 +0750000002001353905000000000000000000000000000000000000012992624926273400000000000000000000000000205-8578624-9262734000124131120 +0750000002001353905000000000000000000000000000000000000023492682020036700000000000000000000000000205-4992682-0200367000124131120 +0750000002001353905000000000000000000000000000000000000023492682020036700000000000000000000000000205-4992682-0200367000124131120 +0750000002001353905000000000000000000000000000000000000035982256645950800000000000000000000000000203-2158256-6459508000124131120 +0750000002001353905000000000000000000000000000000000000026152073971394100000000000000000000000000206-3822073-9713941000124131120 +0750000002001353905000000000000000000000000000000000000008992484925071300000000000000000000000000204-5586484-9250713000124131120 +0750000002001353905000000000000000000000000000000000000015992546362596800000000000000000000000000026-7591546-3625968000124131120 +0750000002001353905000000000000000000000000000000000000016972519903315100000000000000000000000000202-7977519-9033151000124131120 +0750000002001353905000000000000000000000000000000000000016972667891714300000000000000000000000000026-7461667-8917143000124131120 +0750000002001353905000000000000000000000000000000000000028142195510996100000000000000000000000000205-0781195-5109961000124131120 +0750000002001353905000000000000000000000000000000000000141952052644432700000000000000000000000000206-2938052-6444327000124131120 +0750000002001353905000000000000000000000000000000000000012992418263150000000000000000000000000000206-8109418-2631500000124131120 +0750000002001353905000000000000000000000000000000000000020792199569636900000000000000000000000000026-2687199-5696369000124131120 +0750000002001353905000000000000000000000000000000000000019002996792272400000000000000000000000000203-2980996-7922724000124161120 +0750000002001353905000000000000000000000000000000000000028142811389795300000000000000000000000000204-8488811-3897953000124161120 +0750000002001353905000000000000000000000000000000000000014962393297155500000000000000000000000000206-2585393-2971555000124161120 +0750000002001353905000000000000000000000000000000000000010492451116990200000000000000000000000000206-3417451-1169902000124161120 +0750000002001353905000000000000000000000000000000000000010492451116990200000000000000000000000000206-3417451-1169902000124161120 +0750000002001353905000000000000000000000000000000000000010992222912994600000000000000000000000000204-4589222-9129946000124161120 +0750000002001353905000000000000000000000000000000000000015002124166351300000000000000000000000000206-2233124-1663513000124161120 +0750000002001353905000000000000000000000000000000000000008992904829234000000000000000000000000000206-6639904-8292340000124161120 +0750000002001353905000000000000000000000000000000000000008992686873074500000000000000000000000000205-1015686-8730745000124161120 +0750000002001353905000000000000000000000000000000000000014942999391390100000000000000000000000000026-9623999-3913901000124161120 +0750000002001353905000000000000000000000000000000000000021992355633234400000000000000000000000000204-9872355-6332344000124161120 +0750000002001353905000000000000000000000000000000000000019002369646592300000000000000000000000000206-3561369-6465923000124161120 +0750000002001353905000000000000000000000000000000000000018002883067152600000000000000000000000000206-5588883-0671526000124161120 +0750000002001353905000000000000000000000000000000000000020992064343953300000000000000000000000000206-9216064-3439533000124161120 +0750000002001353905000000000000000000000000000000000000013552437171951600000000000000000000000000205-2797437-1719516000124161120 +0750000002001353905000000000000000000000000000000000000031002731992914200000000000000000000000000205-6593731-9929142000124161120 +0750000002001353905000000000000000000000000000000000000015992748865954100000000000000000000000000204-7089748-8659541000124181120 +0750000002001353905000000000000000000000000000000000000026152157235392600000000000000000000000000026-3008157-2353926000124181120 +0750000002001353905000000000000000000000000000000000000012992636400430300000000000000000000000000206-6224636-4004303000124181120 +0750000002001353905000000000000000000000000000000000000025952323780273900000000000000000000000000203-3866323-7802739000124181120 +0750000002001353905000000000000000000000000000000000000012952321724350800000000000000000000000000203-6005321-7243508000124181120 +0750000002001353905000000000000000000000000000000000000028982748037072500000000000000000000000000204-9571748-0370725000124181120 +0750000002001353905000000000000000000000000000000000000029992748037072500000000000000000000000000204-9571748-0370725000124181120 +0750000002001353905000000000000000000000000000000000000034982941720430200000000000000000000000000026-1228941-7204302000124181120 +0750000002001353905000000000000000000000000000000000000097982387099552400000000000000000000000000204-3450387-0995524000124181120 +0750000002001353905000000000000000000000000000000000000020992463196911800000000000000000000000000203-2467463-1969118000124181120 +0750000002001353905000000000000000000000000000000000000016982675565556800000000000000000000000000206-9090675-5655568000124181120 +0750000002001353905000000000000000000000000000000000000050992281870594500000000000000000000000000026-4677281-8705945000124181120 +0750000002001353905000000000000000000000000000000000000022962562640832500000000000000000000000000026-1468562-6408325000124181120 +0750000002001353905000000000000000000000000000000000000097985387099552400000000000000000000000000204-3450387-0995524000124181120 +0750000002001353905000000000000000000000000000000000000103802711283472700000000000000000000000000202-4133711-2834727000124191120 +0750000002001353905000000000000000000000000000000000000017982619154995000000000000000000000000000202-4143619-1549950000124201120 +0750000002001353905000000000000000000000000000000000000025992405262034500000000000000000000000000203-4783405-2620345000124201120 +0750000002001353905000000000000000000000000000000000000018982390021474900000000000000000000000000206-7619390-0214749000124201120 +0750000002001353905000000000000000000000000000000000000012992560544514900000000000000000000000000203-2695560-5445149000124201120 +0750000002001353905000000000000000000000000000000000000013952377951156400000000000000000000000000204-1894377-9511564000124201120 +0750000002001353905000000000000000000000000000000000000019952377951156400000000000000000000000000204-1894377-9511564000124201120 +0750000002001353905000000000000000000000000000000000000010992472987792300000000000000000000000000206-3154472-9877923000124201120 +0750000002001353905000000000000000000000000000000000000025992479411236500000000000000000000000000206-8718479-4112365000124201120 +0750000002001353905000000000000000000000000000000000000032142120775794700000000000000000000000000203-4735120-7757947000124201120 +0750000002001353905000000000000000000000000000000000000028482128184916900000000000000000000000000026-6818128-1849169000124201120 +0750000002001353905000000000000000000000000000000000000046482128184916900000000000000000000000000026-6818128-1849169000124201120 +0750000002001353905000000000000000000000000000000000000023992450568191600000000000000000000000000203-3619450-5681916000124201120 +0750000002001353905000000000000000000000000000000000000027992267492915500000000000000000000000000026-2034267-4929155000124201120 +0750000002001353905000000000000000000000000000000000000095892174947711700000000000000000000000000203-7250174-9477117000124201120 +0750000002001353905000000000000000000000000000000000000015492029555950400000000000000000000000000202-0778029-5559504000124201120 +0750000002001353905000000000000000000000000000000000000010492029555950400000000000000000000000000202-0778029-5559504000124201120 +0750000002001353905000000000000000000000000000000000000030992146301392200000000000000000000000000026-5060146-3013922000124231120 +0750000002001353905000000000000000000000000000000000000008992729891791800000000000000000000000000203-5973729-8917918000124231120 +0750000002001353905000000000000000000000000000000000000025992062898436600000000000000000000000000202-9090062-8984366000124231120 +0750000002001353905000000000000000000000000000000000000026152319208430600000000000000000000000000026-6293319-2084306000124231120 +0750000002001353905000000000000000000000000000000000000026992396099555400000000000000000000000000204-8741396-0995554000124231120 +0750000002001353905000000000000000000000000000000000000022982842726430100000000000000000000000000204-8749842-7264301000124231120 +0750000002001353905000000000000000000000000000000000000008992234805871300000000000000000000000000206-1425234-8058713000124231120 +0750000002001353905000000000000000000000000000000000000014992327702672900000000000000000000000000026-8607327-7026729000124231120 +0750000002001353905000000000000000000000000000000000000008002912721151200000000000000000000000000204-6183912-7211512000124231120 +0750000002001353905000000000000000000000000000000000000031982205159715600000000000000000000000000204-8670205-1597156000124231120 +0750000002001353905000000000000000000000000000000000000029002248144030000000000000000000000000000202-6406248-1440300000124231120 +0750000002001353905000000000000000000000000000000000000026152665791874500000000000000000000000000206-5211665-7918745000124231120 +0750000002001353905000000000000000000000000000000000000016992830035475600000000000000000000000000204-1414830-0354756000124231120 +0750000002001353905000000000000000000000000000000000000012992060031076000000000000000000000000000026-1469060-0310760000124231120 +0750000002001353905000000000000000000000000000000000000052942155437794100000000000000000000000000206-9552155-4377941000124231120 +0750000002001353905000000000000000000000000000000000000026152055772511400000000000000000000000000202-2690055-7725114000124231120 +0750000002001353905000000000000000000000000000000000000008992403662430900000000000000000000000000206-7013403-6624309000124231120 +0750000002001353905000000000000000000000000000000000000027982663728193300000000000000000000000000202-8181663-7281933000124231120 +0750000002001353905000000000000000000000000000000000000020982387719395100000000000000000000000000206-7112387-7193951000124231120 +0750000002001353905000000000000000000000000000000000000051972777689390000000000000000000000000000026-2836777-6893900000124231120 +0750000002001353905000000000000000000000000000000000000065992326547713700000000000000000000000000026-6032326-5477137000124231120 +0750000002001353905000000000000000000000000000000000000026992977258750300000000000000000000000000026-6173977-2587503000124231120 +07500000020013539050000000000000000000000000000000000022361110000000000000000000000000000000000000000000000000000000000124251120 +0750000002001353905000000000000000000000000000000000000026152817321870200000000000000000000000000204-6701817-3218702000124251120 +0750000002001353905000000000000000000000000000000000000012992541665150300000000000000000000000000204-9461541-6651503000124251120 +0750000002001353905000000000000000000000000000000000000010002980838193100000000000000000000000000206-6190980-8381931000124251120 +0750000002001353905000000000000000000000000000000000000012992897036675400000000000000000000000000205-0724897-0366754000124251120 +0750000002001353905000000000000000000000000000000000000008992291956270800000000000000000000000000206-2236291-9562708000124251120 +0750000002001353905000000000000000000000000000000000000006992724826430600000000000000000000000000206-2317724-8264306000124251120 +0750000002001353905000000000000000000000000000000000000010002724826430600000000000000000000000000206-2317724-8264306000124251120 +0750000002001353905000000000000000000000000000000000000020492546698036600000000000000000000000000203-1124546-6980366000124251120 +0750000002001353905000000000000000000000000000000000000015452546698036600000000000000000000000000203-1124546-6980366000124251120 +0750000002001353905000000000000000000000000000000000000023492843820590800000000000000000000000000026-3212843-8205908000124251120 +0750000002001353905000000000000000000000000000000000000010492843820590800000000000000000000000000026-3212843-8205908000124251120 +0750000002001353905000000000000000000000000000000000000068982992476274800000000000000000000000000205-6209992-4762748000124251120 +0750000002001353905000000000000000000000000000000000000017992834043474200000000000000000000000000202-6450834-0434742000124271120 +0750000002001353905000000000000000000000000000000000000050992662431956300000000000000000000000000206-8271662-4319563000124271120 +0750000002001353905000000000000000000000000000000000000026152519714192600000000000000000000000000204-6134519-7141926000124271120 +0750000002001353905000000000000000000000000000000000000025992352501476300000000000000000000000000026-9355352-5014763000124271120 +0750000002001353905000000000000000000000000000000000000020982559568036100000000000000000000000000205-9348559-5680361000124271120 +0750000002001353905000000000000000000000000000000000000022992329418352500000000000000000000000000206-7728329-4183525000124271120 +0750000002001353905000000000000000000000000000000000000023982187573633000000000000000000000000000206-9410187-5736330000124271120 +0750000002001353905000000000000000000000000000000000000026152686510592100000000000000000000000000026-4769686-5105921000124271120 +0750000002001353905000000000000000000000000000000000000012002503586673600000000000000000000000000202-2021503-5866736000124271120 +0750000002001353905000000000000000000000000000000000000023832612989230300000000000000000000000000205-6414612-9892303000124271120 +0750000002001353905000000000000000000000000000000000000017992409378112200000000000000000000000000205-1578409-3781122000124271120 +0750000002001353905000000000000000000000000000000000000068995271716511800000000000000000000000000205-0640271-7165118000124271120 +0750000002001353905000000000000000000000000000000000000020982453067315600000000000000000000000000202-1176453-0673156000124301120 +0750000002001353905000000000000000000000000000000000000030992415318755300000000000000000000000000202-7597415-3187553000124301120 +0750000002001353905000000000000000000000000000000000000015992192687716500000000000000000000000000203-3185192-6877165000124301120 +0750000002001353905000000000000000000000000000000000000009992172744674000000000000000000000000000202-4691172-7446740000124301120 +0750000002001353905000000000000000000000000000000000000014992959881470700000000000000000000000000026-9803959-8814707000124301120 +0750000002001353905000000000000000000000000000000000000012992817584432900000000000000000000000000026-3955817-5844329000124301120 +0750000002001353905000000000000000000000000000000000000012992001798515300000000000000000000000000203-9023001-7985153000124301120 +0750000002001353905000000000000000000000000000000000000007992431437473200000000000000000000000000204-6296431-4374732000124301120 +0750000002001353905000000000000000000000000000000000000018492158766035300000000000000000000000000205-6124158-7660353000124301120 +0750000002001353905000000000000000000000000000000000000015492158766035300000000000000000000000000205-6124158-7660353000124301120 +0750000002001353905000000000000000000000000000000000000026152283702832000000000000000000000000000026-1121283-7028320000124301120 +0750000002001353905000000000000000000000000000000000000008992381156916800000000000000000000000000203-6865381-1569168000124301120 +0750000002001353905000000000000000000000000000000000000008992645200675100000000000000000000000000204-9486645-2006751000124301120 +0750000002001353905000000000000000000000000000000000000011992197082993500000000000000000000000000202-3023197-0829935000124301120 +0750000002001353905000000000000000000000000000000000000013492702264675600000000000000000000000000204-5723702-2646756000124301120 +0750000002001353905000000000000000000000000000000000000013492702264675600000000000000000000000000204-5723702-2646756000124301120 +0750000002001353905000000000000000000000000000000000000015992903626356000000000000000000000000000204-4078903-6263560000124301120 +0750000002001353905000000000000000000000000000000000000017992963255155300000000000000000000000000205-0604963-2551553000124301120 +0750000002001353905000000000000000000000000000000000000027982844754756200000000000000000000000000203-3601844-7547562000124301120 +0750000002001353905000000000000000000000000000000000000038942683520595100000000000000000000000000026-7203683-5205951000124301120 +0750000002001353905000000000000000000000000000000000000040982139443950400000000000000000000000000203-7055139-4439504000124301120 +0750000002001353905000000000000000000000000000000000000011992828694114200000000000000000000000000203-5397828-6941142000124301120 +0750000002001353905000000000000000000000000000000000000008992509808196800000000000000000000000000026-6680509-8081968000124301120 +0750000002001353905000000000000000000000000000000000000008992766233712700000000000000000000000000202-1736766-2337127000124301120 +0750000002001353905000000000000000000000000000000000000011992477055473500000000000000000000000000203-3720477-0554735000124301120 +0750000002001353905000000000000000000000000000000000000008992749067071900000000000000000000000000204-2165749-0670719000124301120 +0750000002001353905000000000000000000000000000000000000013982133693956200000000000000000000000000202-3919133-6939562000124301120 +0750000002001353905000000000000000000000000000000000000021982174291635800000000000000000000000000026-8153174-2916358000124301120 +0750000002001353905000000000000000000000000000000000000008992505029154900000000000000000000000000202-1126505-0291549000124301120 +0750000002001353905000000000000000000000000000000000000014992112457075600000000000000000000000000026-4020112-4570756000124301120 +0750000002001353905000000000000000000000000000000000000008992225873471000000000000000000000000000204-9218225-8734710000124301120 +0750000002001353905000000000000000000000000000000000000018982019011396200000000000000000000000000204-4471019-0113962000124301120 +0750000002001353905000000000000000000000000000000000000013002337747954300000000000000000000000000206-2540337-7479543000124301120 +0750000002001353905000000000000000000000000000000000000042942071887632400000000000000000000000000026-3443071-8876324000124301120 +0750000002001353905000000000000000000000000000000000000008992110622835300000000000000000000000000206-8022110-6228353000124301120 +0750000002001353905000000000000000000000000000000000000008992763191315800000000000000000000000000026-8401763-1913158000124301120 +0750000002001353905000000000000000000000000000000000000028142218306194400000000000000000000000000205-6450218-3061944000124301120 \ No newline at end of file diff --git a/Mapp.BusinessLogic.Transactions.Tests/IntegrationTests.ConvertTransactions_ParsesAndConvertsTransactions_AmazonIT.verified.txt b/Mapp.BusinessLogic.Transactions.Tests/IntegrationTests.ConvertTransactions_ParsesAndConvertsTransactions_AmazonIT.verified.txt new file mode 100644 index 0000000..7c155ed --- /dev/null +++ b/Mapp.BusinessLogic.Transactions.Tests/IntegrationTests.ConvertTransactions_ParsesAndConvertsTransactions_AmazonIT.verified.txt @@ -0,0 +1,26 @@ +0740000002001353907Czech Goods s.r.o. 01111900000013280900+00000016514842+000000461730770000000494070190011300424FIO +0750000002001353909000000000000000000000000000000000000014802209389392400000000000000000000000000402-2801209-3893924000124021120 +0750000002001353909000000000000000000000000000000000000029232376666033300000000000000000000000000402-8930376-6660333000124021120 +0750000002001353909000000000000000000000000000000000000029592863899954100000000000000000000000000408-9928863-8999541000124021120 +0750000002001353909000000000000000000000000000000000000024592841765551700000000000000000000000000171-3717841-7655517000124061120 +0750000002001353909000000000000000000000000000000000000019152592279556400000000000000000000000000406-9711592-2795564000124061120 +0750000002001353909000000000000000000000000000000000000058602040980916200000000000000000000000000408-2238040-9809162000124061120 +0750000002001353909000000000000000000000000000000000000017632582362676800000000000000000000000000403-9427582-3626768000124061120 +0750000002001353909000000000000000000000000000000000000011902395364435800000000000000000000000000402-0325395-3644358000124091120 +0750000002001353909000000000000000000000000000000000000058602178398753800000000000000000000000000402-8236178-3987538000124091120 +07500000020013539090000000000000000000000000000000000003018510000000000000000000000000000000000000000000000000000000000124101120 +0750000002001353909000000000000000000000000000000000000030592344303635000000000000000000000000000402-9836344-3036350000124111120 +0750000002001353909000000000000000000000000000000000000031592980766995900000000000000000000000000407-5328980-7669959000124111120 +0750000002001353909000000000000000000000000000000000000069352237879474300000000000000000000000000406-3380237-8794743000124131120 +0750000002001353909000000000000000000000000000000000000031592544507712500000000000000000000000000404-1632544-5077125000124161120 +0750000002001353909000000000000000000000000000000000000021002706433231200000000000000000000000000402-2889706-4332312000124181120 +0750000002001353909000000000000000000000000000000000000015592580346434800000000000000000000000000402-5469580-3464348000124231120 +07500000020013539090000000000000000000000000000000000001688610000000000000000000000000000000000000000000000000000000000124241120 +0750000002001353909000000000000000000000000000000000000068602670013716900000000000000000000000000171-2327670-0137169000124251120 +0750000002001353909000000000000000000000000000000000000048202206501550200000000000000000000000000171-4764206-5015502000124271120 +0750000002001353909000000000000000000000000000000000000017632665538357900000000000000000000000000171-0115665-5383579000124271120 +0750000002001353909000000000000000000000000000000000000037992763269070600000000000000000000000000403-5352763-2690706000124301120 +0750000002001353909000000000000000000000000000000000000022192669432676800000000000000000000000000405-5678669-4326768000124301120 +0750000002001353909000000000000000000000000000000000000050992478172436000000000000000000000000000408-1439478-1724360000124301120 +0750000002001353909000000000000000000000000000000000000015992080542194500000000000000000000000000407-6577080-5421945000124301120 +0750000002001353909000000000000000000000000000000000000029582194259236400000000000000000000000000402-3344194-2592364000124301120 \ No newline at end of file diff --git a/Mapp.BusinessLogic.Transactions.Tests/IntegrationTests.ConvertTransactions_ParsesAndConvertsTransactions_AmazonJP.verified.txt b/Mapp.BusinessLogic.Transactions.Tests/IntegrationTests.ConvertTransactions_ParsesAndConvertsTransactions_AmazonJP.verified.txt new file mode 100644 index 0000000..7c75f4b --- /dev/null +++ b/Mapp.BusinessLogic.Transactions.Tests/IntegrationTests.ConvertTransactions_ParsesAndConvertsTransactions_AmazonJP.verified.txt @@ -0,0 +1,26 @@ +0740000002001353907Czech Goods s.r.o. 01111900000013280900+00000016514842+000000461730770000000494070190011300424FIO +07500000020013539030000000000000000000000000000000000408040010000000000000000000000000000000000000000000000000000000000124031020 +0750000002001353903000000000000000000000000000000000003730002065183904400000000000000000000000000503-4026065-1839044000124051020 +0750000002001353903000000000000000000000000000000000005730002036164462100000000000000000000000000250-1399036-1644621000124071020 +0750000002001353903000000000000000000000000000000000007640002647199900800000000000000000000000000503-4787647-1999008000124091020 +0750000002001353903000000000000000000000000000000000003730002565376385200000000000000000000000000503-3824565-3763852000124091020 +0750000002001353903000000000000000000000000000000000003302002326501981200000000000000000000000000503-4026326-5019812000124121020 +0750000002001353903000000000000000000000000000000000003730002827277102000000000000000000000000000503-2557827-2771020000124141020 +0750000002001353903000000000000000000000000000000000005340002975496466700000000000000000000000000250-3516975-4964667000124141020 +0750000002001353903000000000000000000000000000000000003302002245673985700000000000000000000000000250-3113245-6739857000124161020 +0750000002001353903000000000000000000000000000000000007640002456229423100000000000000000000000000250-9417456-2294231000124161020 +0750000002001353903000000000000000000000000000000000004730002064905980600000000000000000000000000250-6942064-9059806000124161020 +0750000002001353903000000000000000000000000000000000003302002911265744100000000000000000000000000250-4835911-2657441000124161020 +07500000020013539030000000000000000000000000000000000229470010000000000000000000000000000000000000000000000000000000000124171020 +0750000002001353903000000000000000000000000000000000007640002482249266500000000000000000000000000249-3900482-2492665000124191020 +0750000002001353903000000000000000000000000000000000005340002145309263000000000000000000000000000503-4040145-3092630000124191020 +0750000002001353903000000000000000000000000000000000005340002512487106900000000000000000000000000249-7511512-4871069000124191020 +0750000002001353903000000000000000000000000000000000007640002224454784600000000000000000000000000249-7038224-4547846000124231020 +0750000002001353903000000000000000000000000000000000009485002891493983600000000000000000000000000250-4186891-4939836000124261020 +0750000002001353903000000000000000000000000000000000006485002891493983600000000000000000000000000250-4186891-4939836000124261020 +0750000002001353903000000000000000000000000000000000005340002223432380000000000000000000000000000250-2952223-4323800000124261020 +0750000002001353903000000000000000000000000000000000005340002581138621700000000000000000000000000250-7387581-1386217000124281020 +0750000002001353903000000000000000000000000000000000002730002511580705700000000000000000000000000249-5597511-5807057000124301020 +0750000002001353903000000000000000000000000000000000007640002120670944200000000000000000000000000503-7734120-6709442000124301020 +0750000002001353903000000000000000000000000000000000001730002749996466700000000000000000000000000250-1404749-9964667000124301020 +07500000020013539030000000000000000000000000000000000424360010000000000000000000000000000000000000000000000000000000000124311020 \ No newline at end of file diff --git a/Mapp.BusinessLogic.Transactions.Tests/IntegrationTests.ConvertTransactions_ParsesAndConvertsTransactions_AmazonMX.verified.txt b/Mapp.BusinessLogic.Transactions.Tests/IntegrationTests.ConvertTransactions_ParsesAndConvertsTransactions_AmazonMX.verified.txt new file mode 100644 index 0000000..bcc68c2 --- /dev/null +++ b/Mapp.BusinessLogic.Transactions.Tests/IntegrationTests.ConvertTransactions_ParsesAndConvertsTransactions_AmazonMX.verified.txt @@ -0,0 +1,8 @@ +0740000002001353907Czech Goods s.r.o. 01111900000013280900+00000016514842+000000461730770000000494070190011300424FIO +07500000020013539020000000000000000000000000000000000007206310000000000000000000000000000000000000000000000000000000000124061120 +0750000002001353902000000000000000000000000000000000001577872514164104100000000000000000000000000702-5224514-1641041000124151120 +0750000002001353902000000000000000000000000000000000002077052965988102600000000000000000000000000702-3444965-9881026000124151120 +07500000020013539020000000000000000000000000000000000000352510000000000000000000000000000000000000000000000000000000000124201120 +0750000002001353902000000000000000000000000000000000002077052704294262500000000000000000000000000702-1622704-2942625000124241120 +0750000002001353902000000000000000000000000000000000002077052827234343700000000000000000000000000701-7796827-2343437000124241120 +0750000002001353902000000000000000000000000000000000001178982984649067200000000000000000000000000701-0090984-6490672000124261120 \ No newline at end of file diff --git a/Mapp.BusinessLogic.Transactions.Tests/IntegrationTests.ConvertTransactions_ParsesAndConvertsTransactions_AmazonNL.verified.txt b/Mapp.BusinessLogic.Transactions.Tests/IntegrationTests.ConvertTransactions_ParsesAndConvertsTransactions_AmazonNL.verified.txt new file mode 100644 index 0000000..98a6fbb --- /dev/null +++ b/Mapp.BusinessLogic.Transactions.Tests/IntegrationTests.ConvertTransactions_ParsesAndConvertsTransactions_AmazonNL.verified.txt @@ -0,0 +1,7 @@ +0740000002001353907Czech Goods s.r.o. 01111900000013280900+00000016514842+000000461730770000000494070190011300424FIO +0750000002001353910000000000000000000000000000000000000022002403559156900000000000000000000000000402-8578403-5591569000124041120 +0750000002001353910000000000000000000000000000000000000009992284644191100000000000000000000000000402-3976284-6441911000124041120 +0750000002001353910000000000000000000000000000000000000057482351094751100000000000000000000000000404-1808351-0947511000124061120 +0750000002001353910000000000000000000000000000000000000014982119807313500000000000000000000000000405-7455119-8073135000124201120 +0750000002001353910000000000000000000000000000000000000014982122579472400000000000000000000000000405-6559122-5794724000124251120 +0750000002001353910000000000000000000000000000000000000023982031761390400000000000000000000000000407-8817031-7613904000124301120 \ No newline at end of file diff --git a/Mapp.BusinessLogic.Transactions.Tests/IntegrationTests.ConvertTransactions_ParsesAndConvertsTransactions_Paypal.verified.txt b/Mapp.BusinessLogic.Transactions.Tests/IntegrationTests.ConvertTransactions_ParsesAndConvertsTransactions_Paypal.verified.txt new file mode 100644 index 0000000..f999eb9 --- /dev/null +++ b/Mapp.BusinessLogic.Transactions.Tests/IntegrationTests.ConvertTransactions_ParsesAndConvertsTransactions_Paypal.verified.txt @@ -0,0 +1,101 @@ +0740000002001353907Czech Goods s.r.o. 01111900000013280900+00000016514842+000000461730770000000494070190011300424FIO +07500000020013539210000000000000000000000000000000000001442520942551701000000000000000000000000006060942551701000000000124011020 +07500000020013539210000000000000000000000000000000000000119423743001204000000000000000000000000008693743001204000000000124011020 +07500000020013539210000000000000000000000000000000000000839521888497449000000000000000000000000009471888497449000000000124011020 +07500000020013539210000000000000000000000000000000000000249821373517381000000000000000000000000002211373517381000000000124011020 +07500000020013539210000000000000000000000000000000000000559927504385014000000000000000000000000007135675043850140000000124011020 +07500000020013539210000000000000000000000000000000000000459921401219749000000000000000000000000007902414012197490000000124011020 +07500000020013539210000000000000000000000000000000000000169822441688552000000000000000000000000002292441688552000000000124011020 +07500000020013539210000000000000000000000000000000000000369826755718351000000000000000000000000009722867557183510000000124021020 +07500000020013539210000000000000000000000000000000000000612223315607034000000000000000000000000008503315607034000000000124031020 +07500000020013539210000000000000000000000000000000000000129823024647419000000000000000000000000008407430246474190000000124031020 +07500000020013539210000000000000000000000000000000000000229824659533022000000000000000000000000008154546595330220000000124031020 +07500000020013539210000000000000000000000000000000000000169825642731031000000000000000000000000006605564273103100000000124051020 +07500000020013539210000000000000000000000000000000000000449829020089022000000000000000000000000003839020089022000000000124061020 +07500000020013539210000000000000000000000000000000000000399523472609073000000000000000000000000003743472609073000000000124061020 +07500000020013539210000000000000000000000000000000000000269828333959202000000000000000000000000009136083339592020000000124061020 +07500000020013539210000000000000000000000000000000000000119820825814520000000000000000000000000004220082581452000000000124071020 +07500000020013539210000000000000000000000000000000000000282526590235144000000000000000000000000001846590235144000000000124071020 +07500000020013539210000000000000000000000000000000000000589722352543352000000000000000000000000005042235254335200000000124081020 +07500000020013539210000000000000000000000000000000000000319422531592734000000000000000000000000007752531592734000000000124081020 +07500000020013539210000000000000000000000000000000000000149822449965794000000000000000000000000006691244996579400000000124081020 +07500000020013539210000000000000000000000000000000000000449421270480125000000000000000000000000004627127048012500000000124091020 +07500000020013539210000000000000000000000000000000000000149428502916203000000000000000000000000006648502916203000000000124091020 +07500000020013539210000000000000000000000000000000000001488921385910193000000000000000000000000005101385910193000000000124091020 +07500000020013539210000000000000000000000000000000000000129824794233273000000000000000000000000004224794233273000000000124091020 +07500000020013539210000000000000000000000000000000000000822528341411463000000000000000000000000000458341411463000000000124101020 +07500000020013539210000000000000000000000000000000000000269820237444142000000000000000000000000008722023744414200000000124101020 +07500000020013539210000000000000000000000000000000000000749820348390227000000000000000000000000006820348390227000000000124101020 +07500000020013539210000000000000000000000000000000000000849428149410494000000000000000000000000000705814941049400000000124101020 +07500000020013539210000000000000000000000000000000000000199420212516461000000000000000000000000002202125164610000000000124101020 +07500000020013539210000000000000000000000000000000000000869825163669815000000000000000000000000005620516366981500000000124111020 +07500000020013539210000000000000000000000000000000000000354728517207394000000000000000000000000009308517207394000000000124111020 +07500000020013539210000000000000000000000000000000000000869821582566753000000000000000000000000001304158256675300000000124111020 +07500000020013539210000000000000000000000000000000000001299626270389033000000000000000000000000003726270389033000000000124121020 +07500000020013539210000000000000000000000000000000000000179829193994664000000000000000000000000008189919399466400000000124121020 +07500000020013539210000000000000000000000000000000000000249426771013930000000000000000000000000004587367710139300000000124121020 +07500000020013539210000000000000000000000000000000000000269827599825445000000000000000000000000007767599825445000000000124131020 +07500000020013539210000000000000000000000000000000000000439825870556035000000000000000000000000003829587055603500000000124131020 +07500000020013539210000000000000000000000000000000000000139822238928616000000000000000000000000002492238928616000000000124141020 +07500000020013539210000000000000000000000000000000000000159923047242239000000000000000000000000009540304724223900000000124141020 +07500000020013539210000000000000000000000000000000000000149826707512954000000000000000000000000008336707512954000000000124141020 +07500000020013539210000000000000000000000000000000000000299420681385230000000000000000000000000002110681385230000000000124141020 +07500000020013539210000000000000000000000000000000000000209820784998432000000000000000000000000008930784998432000000000124151020 +07500000020013539210000000000000000000000000000000000000583820641518125000000000000000000000000008874306415181250000000124151020 +07500000020013539210000000000000000000000000000000000000159828579367520000000000000000000000000001568579367520000000000124151020 +07500000020013539210000000000000000000000000000000000000119821185080614000000000000000000000000006083118508061400000000124151020 +07500000020013539210000000000000000000000000000000000000199428627667673000000000000000000000000003809862766767300000000124161020 +07500000020013539210000000000000000000000000000000000000439823871928425000000000000000000000000008043871928425000000000124171020 +07500000020013539210000000000000000000000000000000000000388821236803207000000000000000000000000000531236803207000000000124171020 +07500000020013539210000000000000000000000000000000000000319828703688980000000000000000000000000007500870368898000000000124171020 +07500000020013539210000000000000000000000000000000000000599827165156153000000000000000000000000002937165156153000000000124171020 +07500000020013539210000000000000000000000000000000000000319424665407840000000000000000000000000007657466540784000000000124201020 +07500000020013539210000000000000000000000000000000000000249826318071153000000000000000000000000009606631807115300000000124201020 +07500000020013539210000000000000000000000000000000000000119821233208129000000000000000000000000007800431233208129000000124201020 +07500000020013539210000000000000000000000000000000000000119826416327382000000000000000000000000001664163273820000000000124201020 +07500000020013539210000000000000000000000000000000000000119420414190247000000000000000000000000000059041419024700000000124201020 +07500000020013539210000000000000000000000000000000000000119821591656594000000000000000000000000003615916565940000000000124201020 +07500000020013539210000000000000000000000000000000000000498628365871243000000000000000000000000001342836587124300000000124201020 +07500000020013539210000000000000000000000000000000000000639629056438812000000000000000000000000003407905643881200000000124201020 +07500000020013539210000000000000000000000000000000000000199829468784374000000000000000000000000009369468784374000000000124201020 +07500000020013539210000000000000000000000000000000000000159821797544547000000000000000000000000004586179754454700000000124211020 +07500000020013539210000000000000000000000000000000000000319821225126662000000000000000000000000003781225126662000000000124211020 +07500000020013539210000000000000000000000000000000000000119859597949000000000000000000000000000000260959794900000000000124211020 +07500000020013539210000000000000000000000000000000000000119456509015160000000000000000000000000006346650901516000000000124211020 +07500000020013539210000000000000000000000000000000000000498650550496815000000000000000000000000009520550496815000000000124211020 +07500000020013539210000000000000000000000000000000000000169823476138574000000000000000000000000000293476138574000000000124211020 +07500000020013539210000000000000000000000000000000000000199824148514750000000000000000000000000004364148514750000000000124221020 +07500000020013539210000000000000000000000000000000000000029955677086733000000000000000000000000008576165677086733000000124231020 +07500000020013539210000000000000000000000000000000000000449728774501892000000000000000000000000003283877450189200000000124241020 +07500000020013539210000000000000000000000000000000000000469820159050844000000000000000000000000009301590508440000000000124241020 +07500000020013539210000000000000000000000000000000000000169822050311970000000000000000000000000005792050311970000000000124241020 +07500000020013539210000000000000000000000000000000000000829624347480913000000000000000000000000002143474809130000000000124251020 +07500000020013539210000000000000000000000000000000000000219928407706092000000000000000000000000003984077060920000000000124251020 +07500000020013539210000000000000000000000000000000000000199427515336935000000000000000000000000008775153369350000000000124251020 +07500000020013539210000000000000000000000000000000000000389728062129722000000000000000000000000000488806212972200000000124251020 +07500000020013539210000000000000000000000000000000000000269821697105182000000000000000000000000003241697105182000000000124261020 +07500000020013539210000000000000000000000000000000000000199420530250473000000000000000000000000004820530250473000000000124261020 +07500000020013539210000000000000000000000000000000000000239827154463510000000000000000000000000001848715446351000000000124261020 +07500000020013539210000000000000000000000000000000000000159827110993722000000000000000000000000000914871109937220000000124261020 +07500000020013539210000000000000000000000000000000000000119423854840762000000000000000000000000007838548407620000000000124261020 +07500000020013539210000000000000000000000000000000000000239825248578801000000000000000000000000009252485788010000000000124271020 +07500000020013539210000000000000000000000000000000000000139426933229372000000000000000000000000003616933229372000000000124271020 +07500000020013539210000000000000000000000000000000000001069629368801441000000000000000000000000001629368801441000000000124271020 +07500000020013539210000000000000000000000000000000000000119827077302043000000000000000000000000006017077302043000000000124271020 +07500000020013539210000000000000000000000000000000000000959924483025838000000000000000000000000006355448302583800000000124281020 +07500000020013539210000000000000000000000000000000000000139827447645583000000000000000000000000005563774476455830000000124281020 +07500000020013539210000000000000000000000000000000000000139428589037201000000000000000000000000003188589037201000000000124281020 +07500000020013539210000000000000000000000000000000000000119820531110155000000000000000000000000001970531110155000000000124281020 +07500000020013539210000000000000000000000000000000000000974428242654509000000000000000000000000000064824265450900000000124291020 +07500000020013539210000000000000000000000000000000000000260727971116343000000000000000000000000004079711163430000000000124291020 +07500000020013539210000000000000000000000000000000000000249826212750654000000000000000000000000001989862127506540000000124291020 +07500000020013539210000000000000000000000000000000000000139821914839961000000000000000000000000008681914839961000000000124291020 +07500000020013539210000000000000000000000000000000000000199425657725504000000000000000000000000009325657725504000000000124291020 +07500000020013539210000000000000000000000000000000000000359624854540044000000000000000000000000008380485454004400000000124301020 +07500000020013539210000000000000000000000000000000000000159429794935192000000000000000000000000001189794935192000000000124301020 +07500000020013539210000000000000000000000000000000000000179827507939084000000000000000000000000001462750793908400000000124311020 +07500000020013539210000000000000000000000000000000000000798723308362422000000000000000000000000005625330836242200000000124311020 +07500000020013539210000000000000000000000000000000000000149425987111862000000000000000000000000008755987111862000000000124311020 +07500000020013539210000000000000000000000000000000000000199320526874029000000000000000000000000005660526874029000000000124311020 +07500000020013539210000000000000000000000000000000000705580023787867660000000000000000000000000004453787867660000000000124121020 +07500000020013539210000000000000000000000000000000000143820057161244180000000000000000000000000000517161244180000000000124261020 \ No newline at end of file diff --git a/Mapp.BusinessLogic.Transactions.Tests/IntegrationTests.ConvertTransactions_ParsesAndConvertsTransactions_PaypalCZ.verified.txt b/Mapp.BusinessLogic.Transactions.Tests/IntegrationTests.ConvertTransactions_ParsesAndConvertsTransactions_PaypalCZ.verified.txt new file mode 100644 index 0000000..24794af --- /dev/null +++ b/Mapp.BusinessLogic.Transactions.Tests/IntegrationTests.ConvertTransactions_ParsesAndConvertsTransactions_PaypalCZ.verified.txt @@ -0,0 +1,2 @@ +0740000002001353907Czech Goods s.r.o. 01111900000013280900+00000016514842+000000461730770000000494070190011300424FIO +07500000020013539210000000000000000000000000000000000895356611132876594000000000000000000000000000140711328765940000000124100623 \ No newline at end of file diff --git a/Mapp.BusinessLogic.Transactions.Tests/IntegrationTests.ConvertTransactions_ParsesAndConvertsTransactions_Shopify.verified.txt b/Mapp.BusinessLogic.Transactions.Tests/IntegrationTests.ConvertTransactions_ParsesAndConvertsTransactions_Shopify.verified.txt new file mode 100644 index 0000000..ec1c083 --- /dev/null +++ b/Mapp.BusinessLogic.Transactions.Tests/IntegrationTests.ConvertTransactions_ParsesAndConvertsTransactions_Shopify.verified.txt @@ -0,0 +1,33 @@ +0740000002001353907Czech Goods s.r.o. 01111900000013280900+00000016514842+000000461730770000000494070190011300424FIO +07500000020013539220000000000000000000000000000000000001139820000003099000000000000000000000000003099000000000000000000124311023 +07500000020013539220000000000000000000000000000000000000860020000003098000000000000000000000000003098000000000000000000124301023 +07500000020013539220000000000000000000000000000000000001250020000003097000000000000000000000000003097000000000000000000124301023 +07500000020013539220000000000000000000000000000000000000169920000003096000000000000000000000000003096000000000000000000124291023 +07500000020013539220000000000000000000000000000000000000289920000003095000000000000000000000000003095000000000000000000124291023 +07500000020013539220000000000000000000000000000000000001004520000003094000000000000000000000000003094000000000000000000124281023 +07500000020013539220000000000000000000000000000000000283000020000003093000000000000000000000000003093000000000000000000124281023 +07500000020013539220000000000000000000000000000000000000458520000003090000000000000000000000000003090000000000000000000124261023 +07500000020013539220000000000000000000000000000000000003530020000003088000000000000000000000000003088000000000000000000124251023 +07500000020013539220000000000000000000000000000000000000289920000003083000000000000000000000000003083000000000000000000124231023 +07500000020013539220000000000000000000000000000000000001582520000003082000000000000000000000000003082000000000000000000124231023 +07500000020013539220000000000000000000000000000000000000540020000003079000000000000000000000000003079000000000000000000124221023 +07500000020013539220000000000000000000000000000000000000299920000003076000000000000000000000000003076000000000000000000124221023 +07500000020013539220000000000000000000000000000000000001563520000003074000000000000000000000000003074000000000000000000124201023 +07500000020013539220000000000000000000000000000000000000399020000003073000000000000000000000000003073000000000000000000124201023 +07500000020013539220000000000000000000000000000000000000299920000003072000000000000000000000000003072000000000000000000124201023 +07500000020013539220000000000000000000000000000000000000187520000003070000000000000000000000000003070000000000000000000124191023 +07500000020013539220000000000000000000000000000000000000429820000003067000000000000000000000000003067000000000000000000124181023 +07500000020013539220000000000000000000000000000000000000853020000003066000000000000000000000000003066000000000000000000124171023 +07500000020013539220000000000000000000000000000000000000209020000003065000000000000000000000000003065000000000000000000124171023 +07500000020013539220000000000000000000000000000000000001220020000003064000000000000000000000000003064000000000000000000124171023 +07500000020013539220000000000000000000000000000000000000410020000003062000000000000000000000000003062000000000000000000124161023 +07500000020013539220000000000000000000000000000000000000298020000003061000000000000000000000000003061000000000000000000124151023 +07500000020013539220000000000000000000000000000000000000589720000003059000000000000000000000000003059000000000000000000124141023 +07500000020013539220000000000000000000000000000000000000299050000003055000000000000000000000000003055000000000000000000124141023 +07500000020013539220000000000000000000000000000000000000220020000003057000000000000000000000000003057000000000000000000124131023 +07500000020013539220000000000000000000000000000000000000249920000003056000000000000000000000000003056000000000000000000124131023 +07500000020013539220000000000000000000000000000000000000299020000003055000000000000000000000000003055000000000000000000124111023 +07500000020013539220000000000000000000000000000000000001299420000003054000000000000000000000000003054000000000000000000124091023 +07500000020013539220000000000000000000000000000000000000939620000003050000000000000000000000000003050000000000000000000124071023 +07500000020013539220000000000000000000000000000000000000490020000003049000000000000000000000000003049000000000000000000124031023 +07500000020013539220000000000000000000000000000000000003099220000003048000000000000000000000000003048000000000000000000124021023 \ No newline at end of file diff --git a/Mapp.BusinessLogic.Transactions.Tests/IntegrationTests.ConvertTransactions_ParsesAndConvertsTransactions_ZerosBug.verified.txt b/Mapp.BusinessLogic.Transactions.Tests/IntegrationTests.ConvertTransactions_ParsesAndConvertsTransactions_ZerosBug.verified.txt new file mode 100644 index 0000000..4df23c6 --- /dev/null +++ b/Mapp.BusinessLogic.Transactions.Tests/IntegrationTests.ConvertTransactions_ParsesAndConvertsTransactions_ZerosBug.verified.txt @@ -0,0 +1,66 @@ +0740000002001353907Czech Goods s.r.o. 01111900000013280900+00000016514842+000000461730770000000494070190011300424FIO +0750000002001353901000000000000000000000000000000000000039492742304903700000000000000000000000000702-7995742-3049037000124010520 +0750000002001353901000000000000000000000000000000000000041492742304903700000000000000000000000000702-7995742-3049037000124010520 +0750000002001353901000000000000000000000000000000000000023982220134101400000000000000000000000000701-6876220-1341014000124010520 +0750000002001353901000000000000000000000000000000000000039992584763143000000000000000000000000000701-4654584-7631430000124010520 +0750000002001353901000000000000000000000000000000000000016992638729223900000000000000000000000000701-5038638-7292239000124010520 +0750000002001353901000000000000000000000000000000000000013992798753945800000000000000000000000000701-4655798-7539458000124010520 +0750000002001353901000000000000000000000000000000000000088992731700981800000000000000000000000000701-3305731-7009818000124010520 +0750000002001353901000000000000000000000000000000000000018992771568664100000000000000000000000000701-4321771-5686641000124010520 +0750000002001353901000000000000000000000000000000000000018082916870980200000000000000000000000000701-1962916-8709802000124010520 +0750000002001353901000000000000000000000000000000000000050982841413066300000000000000000000000000701-6444841-4130663000124010520 +0750000002001353901000000000000000000000000000000000000049992518790665200000000000000000000000000702-1801518-7906652000124010520 +0750000002001353901000000000000000000000000000000000000039902124828266900000000000000000000000000702-8371124-8282669000124010520 +0750000002001353901000000000000000000000000000000000000020992510783302700000000000000000000000000701-7200510-7833027000124010520 +0750000002001353901000000000000000000000000000000000000030772530639302200000000000000000000000000702-3900530-6393022000124010520 +0750000002001353901000000000000000000000000000000000000039892581134745600000000000000000000000000702-8029581-1347456000124010520 +0750000002001353901000000000000000000000000000000000000088995731700981800000000000000000000000000701-3305731-7009818000124010520 +0750000002001353901000000000000000000000000000000000000027452905388986700000000000000000000000000702-1930905-3889867000124040520 +0750000002001353901000000000000000000000000000000000000028482905388986700000000000000000000000000702-1930905-3889867000124040520 +0750000002001353901000000000000000000000000000000000000015982738111220900000000000000000000000000702-7608738-1112209000124040520 +0750000002001353901000000000000000000000000000000000000069992719169140300000000000000000000000000701-4680719-1691403000124040520 +0750000002001353901000000000000000000000000000000000000019992922143780200000000000000000000000000701-7053922-1437802000124040520 +0750000002001353901000000000000000000000000000000000000015982790261620900000000000000000000000000702-8162790-2616209000124040520 +0750000002001353901000000000000000000000000000000000000078782501923946000000000000000000000000000702-0754501-9239460000124040520 +0750000002001353901000000000000000000000000000000000000102992182723065100000000000000000000000000701-8849182-7230651000124040520 +0750000002001353901000000000000000000000000000000000000029992660153461300000000000000000000000000702-1451660-1534613000124040520 +0750000002001353901000000000000000000000000000000000000016992763177382200000000000000000000000000702-3221763-1773822000124040520 +0750000002001353901000000000000000000000000000000000000028982436770500800000000000000000000000000701-1088436-7705008000124040520 +0750000002001353901000000000000000000000000000000000000017982649047066100000000000000000000000000701-0823649-0470661000124040520 +0750000002001353901000000000000000000000000000000000000038992229130742700000000000000000000000000702-4958229-1307427000124040520 +0750000002001353901000000000000000000000000000000000000023982903526661100000000000000000000000000702-5585903-5266611000124040520 +0750000002001353901000000000000000000000000000000000000078782860746985800000000000000000000000000702-2683860-7469858000124040520 +0750000002001353901000000000000000000000000000000000000030892012303705200000000000000000000000000702-9413012-3037052000124040520 +0750000002001353901000000000000000000000000000000000000014762209092500300000000000000000000000000702-6629209-0925003000124040520 +0750000002001353901000000000000000000000000000000000000019492209092500300000000000000000000000000702-6629209-0925003000124040520 +0750000002001353901000000000000000000000000000000000000032992978756581000000000000000000000000000701-9558978-7565810000124040520 +0750000002001353901000000000000000000000000000000000000019992263506584000000000000000000000000000701-1605263-5065840000124040520 +0750000002001353901000000000000000000000000000000000000035992711486980500000000000000000000000000702-4521711-4869805000124040520 +0750000002001353901000000000000000000000000000000000000012992688567943200000000000000000000000000702-4207688-5679432000124040520 +0750000002001353901000000000000000000000000000000000000033092161826661100000000000000000000000000702-0499161-8266611000124040520 +0750000002001353901000000000000000000000000000000000000032182493497865800000000000000000000000000702-2021493-4978658000124040520 +0750000002001353901000000000000000000000000000000000000040872493497865800000000000000000000000000702-2021493-4978658000124040520 +0750000002001353901000000000000000000000000000000000000013902493497865800000000000000000000000000702-2021493-4978658000124040520 +0750000002001353901000000000000000000000000000000000000009992857041941400000000000000000000000000702-2116857-0419414000124040520 +0750000002001353901000000000000000000000000000000000000035002935521866000000000000000000000000000702-5180935-5218660000124040520 +0750000002001353901000000000000000000000000000000000000046962277344340700000000000000000000000000701-6814277-3443407000124050520 +0750000002001353901000000000000000000000000000000000000042992830895140500000000000000000000000000701-0983830-8951405000124050520 +0750000002001353901000000000000000000000000000000000000023982800627946400000000000000000000000000701-1217800-6279464000124050520 +0750000002001353901000000000000000000000000000000000000047982740580260900000000000000000000000000702-6836740-5802609000124050520 +0750000002001353901000000000000000000000000000000000000033992144504424100000000000000000000000000702-3859144-5044241000124050520 +0750000002001353901000000000000000000000000000000000000032992860983784000000000000000000000000000702-8406860-9837840000124050520 +0750000002001353901000000000000000000000000000000000000011482091332343700000000000000000000000000701-2464091-3323437000124050520 +0750000002001353901000000000000000000000000000000000000015492091332343700000000000000000000000000701-2464091-3323437000124050520 +0750000002001353901000000000000000000000000000000000000042992375977541700000000000000000000000000701-9637375-9775417000124050520 +0750000002001353901000000000000000000000000000000000000112992686038663600000000000000000000000000701-0691686-0386636000124050520 +0750000002001353901000000000000000000000000000000000000039892811495623600000000000000000000000000702-6455811-4956236000124050520 +0750000002001353901000000000000000000000000000000000000021142771074582500000000000000000000000000702-7570771-0745825000124050520 +0750000002001353901000000000000000000000000000000000000020492357338823100000000000000000000000000702-2741357-3388231000124050520 +0750000002001353901000000000000000000000000000000000000024872357338823100000000000000000000000000702-2741357-3388231000124050520 +0750000002001353901000000000000000000000000000000000000013992508503625800000000000000000000000000701-1576508-5036258000124050520 +0750000002001353901000000000000000000000000000000000000016992778847944900000000000000000000000000701-8794778-8479449000124050520 +0750000002001353901000000000000000000000000000000000000039892254401064300000000000000000000000000702-7304254-4010643000124050520 +0750000002001353901000000000000000000000000000000000000077992494660422300000000000000000000000000702-3767494-6604223000124050520 +0750000002001353901000000000000000000000000000000000000028292058959064000000000000000000000000000701-1457058-9590640000124050520 +0750000002001353901000000000000000000000000000000000000049995628996107100000000000000000000000000702-0255628-9961071000124060520 +0750000002001353901000000000000000000000000000000000000039992647930425500000000000000000000000000701-9351647-9304255000124080520 \ No newline at end of file diff --git a/Mapp.BusinessLogic.Transactions.Tests/IntegrationTests.cs b/Mapp.BusinessLogic.Transactions.Tests/IntegrationTests.cs new file mode 100644 index 0000000..3a11b1d --- /dev/null +++ b/Mapp.BusinessLogic.Transactions.Tests/IntegrationTests.cs @@ -0,0 +1,128 @@ +using System; +using System.IO; +using System.Text; +using System.Threading.Tasks; +using Xunit; +using Moq; +using Xunit.Categories; +using Mapp.Common; +using Mapp.DataAccess; +using Mapp.BusinessLogic.Currency; +using Mapp.BusinessLogic.Invoices; +using VerifyXunit; +using FluentAssertions; +using FluentAssertions.Extensions; + +namespace Mapp.BusinessLogic.Transactions.Tests +{ + [UsesVerify] + [IntegrationTest] + public class IntegrationTests : VerifyBase + { + [Fact] + public async Task ConvertTransactions_ParsesAndConvertsTransactions_Paypal() + { + await IntegrationTestBase("PayPal"); + } + + [Fact] + public async Task ConvertTransactions_ParsesAndConvertsTransactions_PaypalCZ() + { + await IntegrationTestBase("PayPalCZ"); + } + + [Fact] + public async Task ConvertTransactions_ParsesAndConvertsTransactions_AmazonCA() + { + await IntegrationTestBase("AmazonCA"); + } + + [Fact] + public async Task ConvertTransactions_ParsesAndConvertsTransactions_AmazonDE() + { + await IntegrationTestBase("AmazonDE"); + } + + [Fact] + public async Task ConvertTransactions_ParsesAndConvertsTransactions_AmazonES() + { + await IntegrationTestBase("AmazonES"); + } + + [Fact] + public async Task ConvertTransactions_ParsesAndConvertsTransactions_AmazonGB() + { + await IntegrationTestBase("AmazonGB"); + } + + [Fact] + public async Task ConvertTransactions_ParsesAndConvertsTransactions_AmazonIT() + { + await IntegrationTestBase("AmazonIT"); + } + + [Fact] + public async Task ConvertTransactions_ParsesAndConvertsTransactions_AmazonJP() + { + await IntegrationTestBase("AmazonJP"); + } + + [Fact] + public async Task ConvertTransactions_ParsesAndConvertsTransactions_AmazonMX() + { + await IntegrationTestBase("AmazonMX"); + } + + [Fact] + public async Task ConvertTransactions_ParsesAndConvertsTransactions_AmazonNL() + { + await IntegrationTestBase("AmazonNL"); + } + + [Fact] + public async Task ConvertTransactions_ParsesAndConvertsTransactions_Shopify() + { + await IntegrationTestBase("Shopify"); + } + + [Fact] + [Bug] + public async Task ConvertTransactions_ParsesAndConvertsTransactions_ZerosBug() + { + await IntegrationTestBase("Zeros"); + } + + private async Task IntegrationTestBase(string testCaseDataName) + { + // Arrange + string inputTransactionFile = @$"../../../TestData/{testCaseDataName}.csv"; + + //Encoding.RegisterProvider(CodePagesEncodingProvider.Instance); + + var configMock = new Mock(); + configMock.Setup(m => m.TransactionConverterConfigsDir).Returns(@"..\..\..\..\Mapp.UI\Transactions Configs"); + + string resultText = string.Empty; + var fileManagerMock = new Mock(); + fileManagerMock + .Setup(fm => fm.WriteAllTextToFile(It.IsAny(), It.IsAny())) + .Callback((name, content) => resultText = content); + + var dateTimeManagerMock = new Mock(); + dateTimeManagerMock + .Setup(m => m.Today).Returns(1.April(2024)); + + var jsonManager = new JsonManager(configMock.Object, new FileManager()); + var transactionsConverter = new TransactionsReader(jsonManager); + var gpcGenerator = new GpcGenerator(fileManagerMock.Object, dateTimeManagerMock.Object); + + // Act + var transactions = transactionsConverter.ReadTransactionsFromMultipleFiles(new[] { inputTransactionFile }); + gpcGenerator.SaveTransactions(transactions, "IrrelevantFileName"); + + await Verify(resultText); + } + + public IntegrationTests() : base() { } + } +} diff --git a/Mapp.BusinessLogic.Transactions.Tests/Mapp.BusinessLogic.Transactions.Tests.csproj b/Mapp.BusinessLogic.Transactions.Tests/Mapp.BusinessLogic.Transactions.Tests.csproj index d0ff165..8d428e6 100644 --- a/Mapp.BusinessLogic.Transactions.Tests/Mapp.BusinessLogic.Transactions.Tests.csproj +++ b/Mapp.BusinessLogic.Transactions.Tests/Mapp.BusinessLogic.Transactions.Tests.csproj @@ -11,10 +11,20 @@ + - + + + + + + + + + + diff --git a/Mapp.BusinessLogic.Transactions.Tests/TestData/AmazonCA.csv b/Mapp.BusinessLogic.Transactions.Tests/TestData/AmazonCA.csv new file mode 100644 index 0000000..cd69d9a --- /dev/null +++ b/Mapp.BusinessLogic.Transactions.Tests/TestData/AmazonCA.csv @@ -0,0 +1,122 @@ +"Includes Amazon Marketplace, Fulfillment by Amazon (FBA), and Amazon Webstore transactions" +"All amounts in CAD, unless specified" +"Definitions:" +"Sales tax collected: Includes sales tax collected from buyers for product sales, shipping, and gift wrap." +"Selling fees: Includes variable closing fees and referral fees." +"Other transaction fees: Includes shipping chargebacks and shipping holdbacks." +"Other: Includes non-order transaction amounts. For more details, see the ""Type"" and ""Description"" columns for each order ID." +"date/time","settlement id","type","order id","sku","description","quantity","marketplace","fulfillment","order city","order state","order postal","tax collection model","product sales","product sales tax","shipping credits","shipping credits tax","gift wrap credits","giftwrap credits tax","promotional rebates","promotional rebates tax","selling fees","fba fees","other transaction fees","other","total" +"Nov. 1, 2020 11:25:42 p.m. PST","13473939541","Order","701-9484932-6982640","YR-BRTT-5G3D","Dermacol Make up Cover, Waterproof Hypoallergenic For All Skin Types, nr 210","1","amazon.ca","Seller","Sault Ste. Marie","Ontario","P6B 4P6","","28.99","0","4.99","0","0","0","0","0","-5.10","0","0","0","28.88" +"Nov. 1, 2020 11:25:49 p.m. PST","13473939541","Order","702-4317301-5975426","55-DJY4-FR1092","Tescoma Delícia Beehive Mould","1","amazon.ca","Seller","Ottawa","ON","K1T 0R7","","14.00","0","4.99","0","0","0","-3.00","0","-0.96","0","0","0","15.03" +"Nov. 1, 2020 11:29:34 p.m. PST","13473939541","Order","701-3242788-4921810","U9-YL7L-UKDP","Dermacol Make-up Cover - Waterproof Hypoallergenic Foundation 30g 100% Original Guaranteed from Authorized Stockists (218)","1","amazon.ca","Seller","East Garafraxa","Ontario","L9W7J4","","28.99","0","4.99","0","0","0","0","0","-5.10","0","0","0","28.88" +"Nov. 1, 2020 11:29:41 p.m. PST","13473939541","Order","701-6768764-1969801","LP-Z9TL-0SHG","Adela jeste nevecerela / Adele Hasn't Had Her Dinner Yet","1","amazon.ca","Seller","Calgary","Alberta","T3K 0Y2","","32.82","0","4.99","0","0","0","0","0","-6.67","0","0","0","31.14" +"Nov. 1, 2020 11:33:35 p.m. PST","13473939541","Order","701-9065053-8537024","RL-JACB-TWC7","Dermacol 207 full coverage foundation long lasting waterproof makeup cover SPF30 hypoallergenic and light weight liquid, 30 gram","1","amazon.ca","Seller","Brossard","Quebec","J4Y 1W1","","29.99","0","3.99","0","0","0","0","0","-5.10","0","0","0","28.88" +"Nov. 1, 2020 11:33:35 p.m. PST","13473939541","Order","701-9065053-8537024","U8-1UBH-UGSF","Dermacol Make-Up Cover Colour Light 209 by Dermacol","1","amazon.ca","Seller","Brossard","Quebec","J4Y 1W1","","28.99","0","4.00","0","0","0","0","0","-4.95","0","0","0","28.04" +"Nov. 1, 2020 11:35:03 p.m. PST","13473939541","Order","701-9827848-9667435","V4-ARNF-NGPY","KOH-I-NOOR Set of Magic fibrepens 10+2, Multi-Colour, 14 x 7 x 1 cm","1","amazon.ca","Seller","Montreal","Quebec","H2P 1Z3","","34.99","0","4.99","0","0","0","-3.00","0","-5.55","0","0","0","31.43" +"Nov. 1, 2020 11:38:28 p.m. PST","13473939541","Order","701-7514810-1817004","22-A5DR-Q9SF","Tescoma Delicia 12-Piece Large Cookie Cutters","1","amazon.ca","Seller","Winnipeg","Manitoba","R3Y 1Y9","","15.00","0","3.40","0","0","0","-1.63","0","-1.01","0","0","0","15.76" +"Nov. 1, 2020 11:38:28 p.m. PST","13473939541","Order","701-7514810-1817004","RE-8DVD-BQ6D","Tescoma Cookie Cutters Biscuits, 12 Pcs Delicia, 22.1 x 11.6 x 3.8 cm, Assorted","1","amazon.ca","Seller","Winnipeg","Manitoba","R3Y 1Y9","","17.83","0","3.39","0","0","0","-1.94","0","-2.89","0","0","0","16.39" +"Nov. 1, 2020 11:38:28 p.m. PST","13473939541","Order","701-7514810-1817004","UM-4NIE-FXFW","Tescoma Cookie Cutter Little Mushroom Delicia, 4.2 x 5.5cm","1","amazon.ca","Seller","Winnipeg","Manitoba","R3Y 1Y9","","7.14","0","3.40","0","0","0","-0.78","0","-1.46","0","0","0","8.30" +"Nov. 1, 2020 11:38:28 p.m. PST","13473939541","Order","701-7514810-1817004","29-XEJO-PJE2","Tescoma Chocolate Mould Crescent-Shaped Roll Delicia, 24 Pieces","1","amazon.ca","Seller","Winnipeg","Manitoba","R3Y 1Y9","","18.58","0","3.40","0","0","0","-2.01","0","-1.20","0","0","0","18.77" +"Nov. 1, 2020 11:38:28 p.m. PST","13473939541","Order","701-7514810-1817004","33-PKMS-904V","Trèfle à quatre feuilles DELÍCIA","1","amazon.ca","Seller","Winnipeg","Manitoba","R3Y 1Y9","","7.14","0","3.40","0","0","0","-0.78","0","-1.46","0","0","0","8.30" +"Nov. 1, 2020 11:42:11 p.m. PST","13473939541","Order","702-9963967-5167405","E0-5BTW-2QIB","Dermacol Make-up Cover Full Coverage Foundation - 100% Original Guaranteed","1","amazon.ca","Seller","Mission","British Columbia","V2V 3R6","","28.99","0","4.99","0","0","0","0","0","-5.10","0","0","0","28.88" +"Nov. 1, 2020 11:42:40 p.m. PST","13473939541","Order","701-4321371-1809802","U5-NLCF-IYWR","Tescoma 630048.00 Rosette Waffle Iron with 4 Shapes, Rosette Waffle Maker","1","amazon.ca","Seller","Edmonton","Alberta","T6W0S1","","38.00","0","4.99","0","0","0","0","0","-6.45","0","0","0","36.54" +"Nov. 1, 2020 11:42:50 p.m. PST","13473939541","Order","701-6240257-4165822","55-KOH-FR5461","KOH-I-NOOR Extra Soft Pastels Set/12 (FA8552)","1","amazon.ca","Seller","Saint-Colomban","Quebec","J5K 1Y7","","17.00","0","4.99","0","0","0","0","0","-3.30","0","0","0","18.69" +"Nov. 1, 2020 11:49:38 p.m. PST","13473939541","Order","701-2083835-8304257","YZ-S462-XR7I","Dermacol Make-up Cover - Waterproof Hypoallergenic Foundation 30g 100% Original Guaranteed from Authorized Stockists (209)","1","amazon.ca","Seller","Puslinch","Ontario","N0B 2J0","","28.99","0","4.99","0","0","0","0","0","-5.10","0","0","0","28.88" +"Nov. 2, 2020 5:05:55 a.m. PST","13473939541","Service Fee","","","Cost of Advertising","","","","","","","","0","0","0","0","0","0","0","0","0","0","-46.98","0","-46.98" +"Nov. 3, 2020 10:58:04 p.m. PST","13473939541","Order","701-0535158-2041041","ND-8PGP-SSEI","KOH-I-Noor 4190 Graphite Leads 2,0mm (120mm) 3B Pack of 12","2","amazon.ca","Seller","Cranbrook","BC","V1C 6L6","","20.00","0","7.99","0","0","0","0","0","-4.20","0","0","0","23.79" +"Nov. 3, 2020 11:03:08 p.m. PST","13473939541","Order","702-0921955-2933012","U8-1UBH-UGSF","Dermacol Make-Up Cover Colour Light 209 by Dermacol","1","amazon.ca","Seller","Bradford","Ontario","L3Z 1Z2","","28.99","0","4.99","0","0","0","0","0","-5.10","0","0","0","28.88" +"Nov. 3, 2020 11:03:11 p.m. PST","13473939541","Order","701-5447597-4232255","EP-TL68-8Z9S","Gold Elixir Caviar Night Rejuvenating Caviar Night Cream with Omega 3 & 6, 50 ml Made in Czech Republic","2","amazon.ca","Seller","Ottawa","Ontario","K2J 6A3","","79.98","0","7.99","0","0","0","0","0","-13.20","0","0","0","74.77" +"Nov. 3, 2020 11:03:49 p.m. PST","13473939541","Order","701-6345745-4445858","EP-TL68-8Z9S","Gold Elixir Caviar Night Rejuvenating Caviar Night Cream with Omega 3 & 6, 50 ml Made in Czech Republic","2","amazon.ca","Seller","Ottawa","Ontario","K2J 6A3","","79.98","0","7.99","0","0","0","0","0","-13.20","0","0","0","74.77" +"Nov. 3, 2020 11:06:21 p.m. PST","13473939541","Order","702-5128786-6749854","JA-ZQK4-9Z93","Curaprox Swiss 5460 Ultra Soft Toothbrush (3 Pack) 0.10 mm Assorted Colors","3","amazon.ca","Seller","Camrose","Alberta","T4V 5H6","","75.00","0","10.99","0","0","0","0","0","-12.90","0","0","0","73.09" +"Nov. 3, 2020 11:07:39 p.m. PST","13473939541","Order","702-1609783-3503408","55-DJY4-FR1092","Tescoma Delícia Beehive Mould","1","amazon.ca","Seller","Scarborough","Ontario","M1K 3W8","","15.00","0","4.99","0","0","0","0","0","-1.20","0","0","0","18.79" +"Nov. 3, 2020 11:08:30 p.m. PST","13473939541","Order","701-1621734-5067431","9O-GEMY-YBTU","Alpa Franzbranntwein/Franovka Herbal Massage Tincture - 160ml","1","amazon.ca","Seller","York","Ontario","M9N 3R9","","30.00","0","6.99","0","0","0","0","0","-5.55","0","0","0","31.44" +"Nov. 3, 2020 11:12:33 p.m. PST","13473939541","Order","702-8569104-9317834","MR-BK6T-2QTV","Dermacol Make-up Cover - Waterproof Hypoallergenic Foundation 30g 100% Original Guaranteed (207)","1","amazon.ca","Seller","Edmonton","Alberta","T5W4G3","","28.99","0","4.99","0","0","0","0","0","-5.10","0","0","0","28.88" +"Nov. 3, 2020 11:12:40 p.m. PST","13473939541","Order","701-7101119-5528263","CL-SMMW-55ZK","Dermacol 208 full coverage foundation long lasting waterproof makeup cream SPF30 hypoallergenic and light weight liquid, 30 gram","1","amazon.ca","Seller","Mission","British Columbia","V2V 2M1","","26.99","0","4.99","0","0","0","0","0","-4.80","0","0","0","27.18" +"Nov. 4, 2020 11:48:01 p.m. PST","13473939541",,"9102c616-6e84-4353-8ea4-055de26fb56c","","Save C$3 on TESCOMA","1","Amazon.ca","","","","","","0","0","0","0","0","0","0","0","0","0","-0.60","0","-0.60" +"Nov. 5, 2020 12:18:25 a.m. PST","13473939541",,"ab474535-e4c1-4645-9e6e-ea4f803a79dd","","Save C$3 on KOHINOOR","1","Amazon.ca","","","","","","0","0","0","0","0","0","0","0","0","0","-0.60","0","-0.60" +"Nov. 5, 2020 10:31:49 p.m. PST","13519123031","Order","702-5435494-1565041","P2-6EFC-OZ88","Koh-i-noor 5340 Green All Metal Lead Holder with Built Sharpener.","1","amazon.ca","Seller","Toronto","Ontario","M9B 2H2","","23.99","0","4.99","0","0","0","0","0","-4.35","0","0","0","24.63" +"Nov. 5, 2020 10:32:20 p.m. PST","13519123031","Order","702-3317856-9817029","55-KOH-FR6462","Koh-I-Noor 5343 Metal Chalk Holder 9,0mm (90mm) Black","1","amazon.ca","Seller","Gatineau","Quebec","J8Z 1T9","","29.00","0","4.99","0","0","0","-3.00","0","-4.65","0","0","0","26.34" +"Nov. 5, 2020 10:35:00 p.m. PST","13519123031","Order","702-6103102-0969848","5B-OA8M-XNO0","Ham maker with thermometer Tescoma by Tescoma","1","amazon.ca","Seller","Tavistock","Ontario","N0B 2R0","","89.00","0","4.99","0","0","0","0","0","-14.10","0","0","0","79.89" +"Nov. 5, 2020 10:41:53 p.m. PST","13519123031","Order","702-2152339-7717863","55-KOH-FR6310","KOH-I-Noor 4190 Graphite Leads 2,0mm (120mm) 6B Pack of 12","1","amazon.ca","Seller","LaHave","Nova Scotia","B0R 1C0","","10.00","0","4.99","0","0","0","-3.00","0","-1.80","0","0","0","10.19" +"Nov. 5, 2020 10:43:14 p.m. PST","13519123031","Order","701-0291050-1587445","3P-EBU9-A549","Tescoma Delícia Beehive Mould","1","amazon.ca","Seller","Oakville","Ontario","L6H 2C5","","15.00","0","4.99","0","0","0","-3.00","0","-1.02","0","0","0","15.97" +"Nov. 6, 2020 5:29:36 p.m. PST","13519123031","Transfer","","","To account ending with: 907","","","","","","","","0","0","0","0","0","0","0","0","0","0","0","-1,655.49","-1,655.49" +"Nov. 8, 2020 10:57:38 p.m. PST","13519123031","Order","701-9611448-9345863","I7-08II-3AKW","Koh I noor Jumbo Special Coloured Magic Pencil - America Red","1","amazon.ca","Seller","Quebec","Quebec","G1X 3E1","","10.00","0","4.99","0","0","0","0","0","-2.25","0","0","0","12.74" +"Nov. 8, 2020 10:57:52 p.m. PST","13519123031","Order","702-2431959-9636234","TX-Z5V6-11WS","Gott Karel: 80/80: Nejvetsi hity 1964-2019 (4CD)","1","amazon.ca","Seller","Edmonton","Alberta","T6M 0H1","","77.80","0","4.99","0","0","0","0","0","-13.42","0","0","0","69.37" +"Nov. 8, 2020 10:58:14 p.m. PST","13519123031","Order","701-3194717-4573855","4PK-EEV-B6R","Koh-I-Noor 5343 Metal Chalk Holder 9,0mm (90mm) Black","1","amazon.ca","Seller","Verdun","Quebec","H4G 1Z7","","29.00","0","4.99","0","0","0","-3.00","0","-4.65","0","0","0","26.34" +"Nov. 8, 2020 11:00:53 p.m. PST","13519123031","Order","701-4541174-4777830","4M-GLUK-7X6J","Dermacol 209 full coverage foundation long lasting waterproof makeup cover SPF30 hypoallergenic and light weight liquid, 30 gram","1","amazon.ca","Seller","Millet","Alberta","T0C1Z0","","26.99","0","4.99","0","0","0","0","0","-4.80","0","0","0","27.18" +"Nov. 8, 2020 11:01:32 p.m. PST","13519123031","Order","701-2913430-9408205","55-DJY4-FR1651","Tescoma Spits for Traditional Chimney Cake Trdelnik Prügelkrapfen Baumstriezelv","1","amazon.ca","Seller","Montréal","QC","H9J1Z5","","69.00","0","4.99","0","0","0","0","0","-11.10","0","0","0","62.89" +"Nov. 8, 2020 11:02:41 p.m. PST","13519123031","Order","701-8472303-4767455","3P-EBU9-A549","Tescoma Delícia Beehive Mould","1","amazon.ca","Seller","Calgary","Alberta","T3H 3G9","","15.00","0","4.99","0","0","0","0","0","-1.20","0","0","0","18.79" +"Nov. 8, 2020 11:04:09 p.m. PST","13519123031","Order","701-9651837-1156268","V6G-EW6-ICL","Tescoma Egg Shaping Moulds, 4 Pcs Presto, 30 x 18 x 5.4 cm, Assorted","1","amazon.ca","Seller","Burnaby","British Columbia","V5C 6P3","","26.99","0","4.99","0","0","0","0","0","-4.80","0","0","0","27.18" +"Nov. 8, 2020 11:04:50 p.m. PST","13519123031","Order","702-5563717-9714609","MR-BK6T-2QTV","Dermacol Make-up Cover - Waterproof Hypoallergenic Foundation 30g 100% Original Guaranteed (207)","1","amazon.ca","Seller","winnipeg","manitoba","R2J 1K9","","28.99","0","4.99","0","0","0","0","0","-5.10","0","0","0","28.88" +"Nov. 8, 2020 11:05:39 p.m. PST","13519123031","Order","701-6203117-2300260","55-DJY4-FR1092","Tescoma Delícia Beehive Mould","1","amazon.ca","Seller","Pefferlaw","Ontario","L0E 1N0","","15.00","0","4.99","0","0","0","-3.00","0","-1.02","0","0","0","15.97" +"Nov. 8, 2020 11:31:34 p.m. PST","13519123031",,"9102c616-6e84-4353-8ea4-055de26fb56c","","Save C$3 on TESCOMA","1","Amazon.ca","","","","","","0","0","0","0","0","0","0","0","0","0","-0.60","0","-0.60" +"Nov. 9, 2020 12:02:07 a.m. PST","13519123031",,"ab474535-e4c1-4645-9e6e-ea4f803a79dd","","Save C$3 on KOHINOOR","2","Amazon.ca","","","","","","0","0","0","0","0","0","0","0","0","0","-1.20","0","-1.20" +"Nov. 10, 2020 11:20:40 p.m. PST","13519123031","Order","702-2713372-5748227","U8-1UBH-UGSF","Dermacol Make-Up Cover Colour Light 209 by Dermacol","1","amazon.ca","Seller","Vancouver","British Columbia","V6Z 2Z5","","28.99","0","4.99","0","0","0","0","0","-5.10","0","0","0","28.88" +"Nov. 10, 2020 11:33:30 p.m. PST","13519123031","Order","701-5971370-8638641","Z2-B51Q-ECW9","Curaprox CPS 011 Prime Refill","1","amazon.ca","Seller","Castlegar","British Columbia","V1N 2G1","","39.99","0","4.99","0","0","0","0","0","-6.75","0","0","0","38.23" +"Nov. 10, 2020 11:34:01 p.m. PST","13519123031","Order","702-7681734-2318603","55-KOH-FR3212","Kum 105.11.21 Polystyrene Lead Pointer 2-Hole Pencil Sharpeners with Container, Colors Vary","1","amazon.ca","Seller","Port Aux Basques","Newfoundland","A0M1C0","","12.00","0","4.99","0","0","0","0","0","-2.55","0","0","0","14.44" +"Nov. 11, 2020 11:38:01 p.m. PST","13519123031",,"9102c616-6e84-4353-8ea4-055de26fb56c","","Save C$3 on TESCOMA","1","Amazon.ca","","","","","","0","0","0","0","0","0","0","0","0","0","-0.60","0","-0.60" +"Nov. 12, 2020 12:04:51 a.m. PST","13519123031",,"ab474535-e4c1-4645-9e6e-ea4f803a79dd","","Save C$3 on KOHINOOR","1","Amazon.ca","","","","","","0","0","0","0","0","0","0","0","0","0","-0.60","0","-0.60" +"Nov. 12, 2020 11:27:46 p.m. PST","13519123031","Order","701-5290239-0422649","SI-SIDS-QLCT","Dermacol Make-Up Cover Foundation 30g (218)","1","amazon.ca","Seller","Lethbridge","Alberta","T1H 1Z1","","29.99","0","4.99","0","0","0","0","0","-5.25","0","0","0","29.73" +"Nov. 12, 2020 11:28:00 p.m. PST","13519123031","Order","701-5914334-5524215","SI-SIDS-QLCT","Dermacol Make-Up Cover Foundation 30g (218)","1","amazon.ca","Seller","Lethbridge","Alberta","T1H 1Z1","","29.99","0","4.99","0","0","0","0","0","-5.25","0","0","0","29.73" +"Nov. 12, 2020 11:28:29 p.m. PST","13519123031","Order","701-2776189-9549830","4PK-EEV-B6R","Koh-I-Noor 5343 Metal Chalk Holder 9,0mm (90mm) Black","1","amazon.ca","Seller","West kelowna","British Columbia","V4T 1V9","","29.00","0","4.99","0","0","0","0","0","-5.10","0","0","0","28.89" +"Nov. 12, 2020 11:32:09 p.m. PST","13519123031","Order","701-0342217-5181819","ZN-C24A-UO50","Dermacol Make-up Cover - Waterproof Hypoallergenic For All Skin Types - nr 211","1","amazon.ca","Seller","Burton","New Brunswick","E2V 3E2","","28.99","0","4.99","0","0","0","0","0","-5.10","0","0","0","28.88" +"Nov. 15, 2020 11:38:00 p.m. PST","13519123031","Order","701-2551290-8783460","3P-EBU9-A549","Tescoma Delícia Beehive Mould","1","amazon.ca","Seller","St. Albert","Alberta","T8N 2M4","","19.00","0","4.99","0","0","0","-3.00","0","-1.26","0","0","0","19.73" +"Nov. 15, 2020 11:43:25 p.m. PST","13519123031","Order","702-2688171-6762620","9ZP-P2E-P8M","KOH-I-NOOR 3712 Mondeluz Aquarell Coloured Pencils - Assorted Colour (Set of 36)","1","amazon.ca","Seller","kitchener","Ontario","N2A 0C1","","32.52","0","4.99","0","0","0","0","0","-5.63","0","0","0","31.88" +"Nov. 15, 2020 11:44:07 p.m. PST","13519123031","Order","701-3661438-8073003","I7-W9TN-C6IM","Tescoma Set of carving tools PRESTO CARVING","1","amazon.ca","Seller","Calgary","Alberta","T2W 3Z4","","69.00","0","4.99","0","0","0","0","0","-11.10","0","0","0","62.89" +"Nov. 15, 2020 11:44:25 p.m. PST","13519123031","Order","702-0649298-3105832","55-DJY4-FR836","Tescoma 630048.00 Rosette Waffle Iron with 4 Shapes, Rosette Waffle Maker","1","amazon.ca","Seller","Moose Jaw","SK","S6H 3S5","","38.00","0","4.99","0","0","0","0","0","-6.45","0","0","0","36.54" +"Nov. 15, 2020 11:50:56 p.m. PST","13519123031","Order","702-5606134-4905823","3P-EBU9-A549","Tescoma Delícia Beehive Mould","2","amazon.ca","Seller","Kitchener","Ontario","N2B1R8","","38.00","0","7.99","0","0","0","0","0","-2.76","0","0","0","43.23" +"Nov. 15, 2020 11:53:34 p.m. PST","13519123031","Order","702-0866904-0037812","55-KOH-FR6871","KOH-I-NOOR MAGIC 3406 Jumbo Special Coloured Pencil in Blister Pack","1","amazon.ca","Seller","Toronto","Ontario","M4G 2V9","","19.99","0","4.99","0","0","0","-3.00","0","-3.30","0","0","0","18.68" +"Nov. 15, 2020 11:55:24 p.m. PST","13519123031","Order","702-8566311-1401805","9Y-FLN1-D6I4","The Painted Bird/Nabarvene ptace DVD 2019","1","amazon.ca","Seller","North Hatley","Quebec","J0B 2C0","","52.99","0","6.99","0","0","0","0","0","-10.00","0","0","0","49.98" +"Nov. 17, 2020 11:24:54 p.m. PST","13519123031","Order","701-1528983-7657042","55-DJY4-FR1283","Tescoma Granola Bar Maker, Press and Mold, for home made bars","1","amazon.ca","Seller","Québec","Québec","G1L 1V6","","59.00","0","4.99","0","0","0","0","0","-9.60","0","0","0","54.39" +"Nov. 17, 2020 11:27:03 p.m. PST","13519123031","Order","701-0860571-2633808","HJ-K021-UL3X","Tescoma Delicia 45 x 49 cm Horse-Shoe Cookie Cutter","1","amazon.ca","Seller","Winnipeg","Manitoba","R3Y 1Y9","","7.14","0","3.66","0","0","0","0","0","-1.62","0","0","0","9.18" +"Nov. 17, 2020 11:27:03 p.m. PST","13519123031","Order","701-0860571-2633808","HS-N7R9-FQ60","Tescoma Cookie Cutters in Ring Delicia, 6 Pieces","1","amazon.ca","Seller","Winnipeg","Manitoba","R3Y 1Y9","","15.00","0","3.66","0","0","0","0","0","-1.12","0","0","0","17.54" +"Nov. 17, 2020 11:27:03 p.m. PST","13519123031","Order","701-0860571-2633808","6X-3ZYG-KJMP","Tescoma Delícia 24-Piece Little Nut","1","amazon.ca","Seller","Winnipeg","Manitoba","R3Y 1Y9","","17.15","0","3.67","0","0","0","0","0","-1.25","0","0","0","19.57" +"Nov. 17, 2020 11:36:47 p.m. PST","13519123031","Order","702-1539640-3993834","UO-CP0H-M0WQ","Ryor Enzymatic Peeling","2","amazon.ca","Seller","Ancaster","Ontario","L9G 3W3","","47.98","0","9.99","0","0","0","0","0","-8.70","0","0","0","49.27" +"Nov. 17, 2020 11:37:03 p.m. PST","13519123031","Order","702-2917272-7276225","55-DJY4-FR836","Tescoma 630048.00 Rosette Waffle Iron with 4 Shapes, Rosette Waffle Maker","1","amazon.ca","Seller","Saskatoon","Saskatchewan","S7L 5V9","","38.00","0","4.99","0","0","0","0","0","-6.45","0","0","0","36.54" +"Nov. 17, 2020 11:37:29 p.m. PST","13519123031","Order","701-5901917-7925857","JQ-357H-V5GM","Koh-I-Noor MAGIC Erasers for graphite pencils","1","amazon.ca","Seller","Toronto","Ontario","M4E 2C1","","5.71","0","4.99","0","0","0","0","0","-1.61","0","0","0","9.09" +"Nov. 17, 2020 11:37:37 p.m. PST","13519123031","Order","702-4897323-9313863","N2-12B6-NEBL","KOH-I-NOOR 2H Grade Graphite Lead for 2mm Diameter 120mm Mechanical Pencil","1","amazon.ca","Seller","Saint John","New Brunswick","E2M 2X7","","8.57","0","4.99","0","0","0","0","0","-2.03","0","0","0","11.53" +"Nov. 17, 2020 11:37:44 p.m. PST","13519123031","Order","702-7170018-7075419","6T-MGTZ-3R2C","Muz z prvniho stoleti (Man of the First Century) box","1","amazon.ca","Seller","Oakville","ON","L6H 2A8","","39.99","0","4.99","0","0","0","0","0","-7.75","0","0","0","37.23" +"Nov. 17, 2020 11:39:14 p.m. PST","13519123031","Order","701-8613987-5321023","4PK-EEV-B6R","Koh-I-Noor 5343 Metal Chalk Holder 9,0mm (90mm) Black","1","amazon.ca","Seller","Cobble Hill","British Columbia","V0R 1L5","","29.00","0","4.99","0","0","0","-3.00","0","-4.65","0","0","0","26.34" +"Nov. 18, 2020 11:43:33 p.m. PST","13519123031",,"9102c616-6e84-4353-8ea4-055de26fb56c","","Save C$3 on TESCOMA","1","Amazon.ca","","","","","","0","0","0","0","0","0","0","0","0","0","-0.60","0","-0.60" +"Nov. 19, 2020 12:21:38 a.m. PST","13519123031",,"ab474535-e4c1-4645-9e6e-ea4f803a79dd","","Save C$3 on KOHINOOR","1","Amazon.ca","","","","","","0","0","0","0","0","0","0","0","0","0","-0.60","0","-0.60" +"Nov. 19, 2020 11:27:20 p.m. PST","13563789801","Order","702-6815619-7453035","2N-UE7G-4L8V","Koh-I-Noor Graphite Powder 80 ml","1","amazon.ca","Seller","Toronto","Ontario","M6K 3N9","","29.00","0","4.99","0","0","0","-3.00","0","-4.65","0","0","0","26.34" +"Nov. 19, 2020 11:27:42 p.m. PST","13563789801","Order","701-0714996-5468236","M1-BUV2-24OY","Dermacol Make-up Cover Full Coverage Foundation (#226)","1","amazon.ca","Seller","Riverview","New Brunswick","E1B 4S3","","29.99","0","4.99","0","0","0","0","0","-5.25","0","0","0","29.73" +"Nov. 19, 2020 11:28:13 p.m. PST","13563789801","Order","701-0539232-0863414","MO-E3A3-ATQD","Dermacol Satin Make-Up Base 30 ml","1","amazon.ca","Seller","Riverview","New Brunswick","E1B 4S3","","34.99","0","4.99","0","0","0","0","0","-6.00","0","0","0","33.98" +"Nov. 19, 2020 11:29:10 p.m. PST","13563789801","Order","701-6736991-4190665","55-KOH-FR1244","Koh-I-Noor Graphite Powder 80 ml","1","amazon.ca","Seller","Hamilton","Ontario","L8S 4E8","","29.00","0","4.99","0","0","0","0","0","-5.10","0","0","0","28.89" +"Nov. 19, 2020 11:29:48 p.m. PST","13563789801","Order","702-2186649-1699439","5N-88U7-VDQA","Milada","1","amazon.ca","Seller","Winnipeg","MB","R3T 3E8","","39.99","0","4.99","0","0","0","0","0","-7.75","0","0","0","37.23" +"Nov. 20, 2020 5:07:28 p.m. PST","13563789801","Transfer","","","To account ending with: 907","","","","","","","","0","0","0","0","0","0","0","0","0","0","0","-1,174.55","-1,174.55" +"Nov. 21, 2020 12:19:33 a.m. PST","13563789801",,"ab474535-e4c1-4645-9e6e-ea4f803a79dd","","Save C$3 on KOHINOOR","1","Amazon.ca","","","","","","0","0","0","0","0","0","0","0","0","0","-0.60","0","-0.60" +"Nov. 23, 2020 12:04:41 a.m. PST","13563789801","Order","701-0042810-4348227","A9-N80D-6270","Death is called Engelchen / Smrt si rika Engelchen","1","amazon.ca","Seller","Toronto","Ontario","M5P 2J9","","14.23","0","6.99","0","0","0","0","0","-4.18","0","0","0","17.04" +"Nov. 23, 2020 12:05:16 a.m. PST","13563789801","Order","701-3956967-1993023","55-DJY4-FR716","Tescoma 622204 Delicia Ceramic Doughnut Mould, Red/Beige, 28.5 cm","1","amazon.ca","Seller","Gatineau","Quebec","J8L 3M3","","88.00","0","4.99","0","0","0","0","0","-13.95","0","0","0","79.04" +"Nov. 23, 2020 12:06:09 a.m. PST","13563789801","Order","702-3157818-9264269","4Y-68NV-Y4FL","Dermacol a.s Dermacol Make-up Cover Full Coverage Foundation - 100% Original Guaranteed 222","2","amazon.ca","Seller","Edmonton","Alberta","T5X 3K7","","51.98","0","7.99","0","0","0","0","0","-9.00","0","0","0","50.97" +"Nov. 23, 2020 12:08:33 a.m. PST","13563789801","Order","702-9932913-3864243","55-DJY4-FR658","Tescoma Frying Pan Ø 26 cm ""President"", 26cm, Assorted","1","amazon.ca","Seller","Aldergrove","BC","V4W 3V5","","159.00","0","39.99","0","0","0","0","0","-29.85","0","0","0","169.14" +"Nov. 23, 2020 12:17:47 a.m. PST","13563789801","Order","702-7236644-9068248","CF-WWEJ-YPQN","Orion Group Pressure Ham Cooker Stainless Steel with Thermometer Ham Mould Cooking Ham Mould Max 2 kg","1","amazon.ca","Seller","Calgary","Alberta","T3A 6E1","","89.99","0","6.99","0","0","0","0","0","-14.55","0","0","0","82.43" +"Nov. 23, 2020 12:19:11 a.m. PST","13563789801","Order","702-8490829-4735446","55-KOH-FR6465","KOH-I-NOOR 5211 2mm Diameter Mechanical Clutch Lead Holder Pencil- Color May Vary","1","amazon.ca","Seller","Mississauga","Ontario","L4Y 3A6","","9.00","0","4.99","0","0","0","0","0","-2.10","0","0","0","11.89" +"Nov. 23, 2020 12:21:38 a.m. PST","13563789801",,"ab474535-e4c1-4645-9e6e-ea4f803a79dd","","Save C$3 on KOHINOOR","1","Amazon.ca","","","","","","0","0","0","0","0","0","0","0","0","0","-0.60","0","-0.60" +"Nov. 24, 2020 11:39:53 p.m. PST","13563789801","Order","702-1075668-7332237","55-DJY4-FR836","Tescoma 630048.00 Rosette Waffle Iron with 4 Shapes, Rosette Waffle Maker","1","amazon.ca","Seller","Grassland","Alberta","T0A 1V0","","38.00","0","4.99","0","0","0","0","0","-6.45","0","0","0","36.54" +"Nov. 24, 2020 11:43:31 p.m. PST","13563789801","Order","702-1809869-7807450","OB-UFJ9-RSVW","Dermacol Angelash Mascara, Black, 1 lb","1","amazon.ca","Seller","North Vancouver","British Columbia","V7J 2V7","","29.99","0","4.99","0","0","0","0","0","-5.25","0","0","0","29.73" +"Nov. 24, 2020 11:46:27 p.m. PST","13563789801","Order","701-9600837-4232237","U5-NLCF-IYWR","Tescoma 630048.00 Rosette Waffle Iron with 4 Shapes, Rosette Waffle Maker","1","amazon.ca","Seller","Aurora","Ontario","L4G7L3","","38.00","0","4.99","0","0","0","-3.00","0","-6.00","0","0","0","33.99" +"Nov. 24, 2020 11:46:46 p.m. PST","13563789801","Order","702-5685026-2155439","CL-SMMW-55ZK","Dermacol 208 full coverage foundation long lasting waterproof makeup cream SPF30 hypoallergenic and light weight liquid, 30 gram","1","amazon.ca","Seller","Edmonton","Alberta","T5H 2Z3","","24.99","0","4.99","0","0","0","0","0","-4.50","0","0","0","25.48" +"Nov. 24, 2020 11:47:13 p.m. PST","13563789801","Order","702-6599737-2551440","3P-EBU9-A549","Tescoma Delícia Beehive Mould","1","amazon.ca","Seller","Vancouver","British Columbia","V6N 3J3","","19.00","0","4.99","0","0","0","-3.00","0","-1.26","0","0","0","19.73" +"Nov. 24, 2020 11:47:38 p.m. PST","13563789801","Order","702-4837115-5537826","JJ-OOQQ-QKCR","KOH-I-Noor 4190 Graphite Leads 2,0mm (120mm) HB Pack of 12","1","amazon.ca","Seller","Vernon","British Columbia","V1T 9V2","","9.00","0","4.99","0","0","0","0","0","-2.10","0","0","0","11.89" +"Nov. 24, 2020 11:53:57 p.m. PST","13563789801","Order","701-7162969-8627416","0A-6VWY-UOUI","Tescoma Moulds for Filled Cookies, 3 Christmas Shapes Delícia, Assorted, 21 x 17 x 4 cm","1","amazon.ca","Seller","surrey","bc","V3R 1R5","","23.99","0","4.99","0","0","0","0","0","-4.35","0","0","0","24.63" +"Nov. 24, 2020 11:55:50 p.m. PST","13563789801","Order","701-1868340-9969063","55-DJY4-FR1093","Tescoma Moulds for Filled Cookies, 3 Christmas Shapes Delícia, Assorted, 21 x 17 x 4 cm","1","amazon.ca","Seller","Richmond","British Columbia","V6Y 3W9","","23.99","0","4.99","0","0","0","-3.00","0","-3.90","0","0","0","22.08" +"Nov. 26, 2020 11:12:21 p.m. PST","13563789801","Order","701-9703247-3721014","3P-EBU9-A549","Tescoma Delícia Beehive Mould","1","amazon.ca","Seller","Whitehorse","Yukon","Y1A 0E4","","19.00","0","4.99","0","0","0","0","0","-1.44","0","0","0","22.55" +"Nov. 26, 2020 11:12:46 p.m. PST","13563789801","Order","702-9030432-1026658","V0D-2ND-BQ1","Koh-i-noor Refill Leads for 3.2 mm Pencils. 4041","1","amazon.ca","Seller","Dundas","Ontario","L9H 7S6","","12.99","0","4.99","0","0","0","0","0","-2.70","0","0","0","15.28" +"Nov. 26, 2020 11:17:26 p.m. PST","13563789801","Order","702-3822475-6184268","3P-EBU9-A549","Tescoma Delícia Beehive Mould","1","amazon.ca","Seller","St Catharines","Ontario","L2N 1Y8","","19.00","0","4.99","0","0","0","-3.00","0","-1.26","0","0","0","19.73" +"Nov. 27, 2020 11:26:20 p.m. PST","13563789801",,"9102c616-6e84-4353-8ea4-055de26fb56c","","Save C$3 on TESCOMA","3","Amazon.ca","","","","","","0","0","0","0","0","0","0","0","0","0","-1.80","0","-1.80" +"Nov. 29, 2020 11:42:15 p.m. PST","13563789801",,"9102c616-6e84-4353-8ea4-055de26fb56c","","Save C$3 on TESCOMA","1","Amazon.ca","","","","","","0","0","0","0","0","0","0","0","0","0","-0.60","0","-0.60" +"Nov. 30, 2020 12:30:36 a.m. PST","13563789801","Order","701-8000690-8535461","55-KOH-FR5386","Koh-I-Noor Magic Jumbo Triangular Coloured Pencil (Pack of 13)","1","amazon.ca","Seller","Salaberry de Valleyfield","Quebec","J6S 1R1","","26.99","0","4.99","0","0","0","-3.00","0","-4.35","0","0","0","24.63" +"Nov. 30, 2020 12:32:45 a.m. PST","13563789801","Order","701-1826888-2885059","VU-WNH2-DWOV","Tescoma 630875.00 Ravioli Maker Mold For 10 round Ravioli, ravioli cutter, ravioli press, ravioli stamp","1","amazon.ca","Seller","Abbotsford","British Columbia","V2S 7R9","","28.59","0","4.99","0","0","0","0","0","-5.04","0","0","0","28.54" +"Nov. 30, 2020 12:33:40 a.m. PST","13563789801","Order","702-1543859-1573814","CF-WWEJ-YPQN","Orion Group Pressure Ham Cooker Stainless Steel with Thermometer Ham Mould Cooking Ham Mould Max 2 kg","1","amazon.ca","Seller","Saint-Leonard","Quebec","H1R 3X7","","89.99","0","6.99","0","0","0","0","0","-14.55","0","0","0","82.43" +"Nov. 30, 2020 12:35:34 a.m. PST","13563789801","Order","702-3626637-7685006","RL-JACB-TWC7","Dermacol 207 full coverage foundation long lasting waterproof makeup cover SPF30 hypoallergenic and light weight liquid, 30 gram","1","amazon.ca","Seller","Kola","Manitoba","R0M1B0","","26.99","0","4.99","0","0","0","0","0","-4.80","0","0","0","27.18" +"Nov. 30, 2020 12:37:32 a.m. PST","13563789801","Order","701-7599801-7985041","0SV-1RV-JLK","Koh-I-Noor : Plastic Mechanical Clutch Leadholder for 5.6mm Leads 5347","1","amazon.ca","Seller","Windsor","Ontario","N8T 2K1","","17.15","0","4.99","0","0","0","0","0","-3.32","0","0","0","18.82" +"Nov. 30, 2020 12:37:59 a.m. PST","13563789801","Order","701-7242256-4741806","55-KOH-FR5466","KOH-I-NOOR Set of Magic fibrepens 10+2, Multi-Colour, 14 x 7 x 1 cm","1","amazon.ca","Seller","L'Ancienne-Lorette","Quebec","G2E 2T5","","34.99","0","4.99","0","0","0","-3.00","0","-5.55","0","0","0","31.43" +"Nov. 30, 2020 12:38:15 a.m. PST","13563789801","Order","701-6795347-8577001","0SV-1RV-JLK","Koh-I-Noor : Plastic Mechanical Clutch Leadholder for 5.6mm Leads 5347","1","amazon.ca","Seller","Hamilton","Ontario","L8S 4E8","","17.15","0","4.99","0","0","0","0","0","-3.32","0","0","0","18.82" +"Nov. 30, 2020 12:39:14 a.m. PST","13563789801","Order","701-7004723-5065867","55-DJY4-FR232","Tescoma Fish scraper PRESTO","1","amazon.ca","Seller","Burnaby","BC","V3N 2S3","","19.00","0","4.99","0","0","0","0","0","-3.60","0","0","0","20.39" +"Nov. 30, 2020 12:39:34 a.m. PST","13563789801","Order","702-5296361-8987463","9Q-AOKU-5MGL","KOH-I-NOOR Coloured Leads for 2mm Diameter 120mm Mechanical Pencil - Black","2","amazon.ca","Seller","Winnipeg","MB","R3N 1M7","","14.28","0","7.99","0","0","0","0","0","-3.34","0","0","0","18.93" +"Nov. 30, 2020 12:40:42 a.m. PST","13563789801","Order","702-3002463-8663430","55-KOH-FR6571","Koh-I-Noor Progresso Jumbo Woodless Graphite Pencil 2B by Koh-I-Noor","1","amazon.ca","Seller","Ottawa","Ontario","K2A 2B7","","9.00","0","4.99","0","0","0","0","0","-2.10","0","0","0","11.89" +"Nov. 30, 2020 12:40:57 a.m. PST","13563789801","Order","701-4435825-7101055","55-DJY4-FR1093","Tescoma Moulds for Filled Cookies, 3 Christmas Shapes Delícia, Assorted, 21 x 17 x 4 cm","1","amazon.ca","Seller","Airdrie","Alberta","T4A 3K3","","23.99","0","4.99","0","0","0","0","0","-4.35","0","0","0","24.63" +"Nov. 30, 2020 12:41:01 a.m. PST","13563789801","Order","701-6836936-6775440","55-KOH-FR3232","KOH-I-NOOR 9095000110PK Table Top Sharpener","1","amazon.ca","Seller","Westmount","Quebec","H3Z 1S6","","25.00","0","4.99","0","0","0","0","0","-4.50","0","0","0","25.49" +"Nov. 30, 2020 12:41:02 a.m. PST","13563789801","Order","701-1649550-7826655","ZVP-XHF-TKP","Koh-i-Noor Mechanical Hardtmuth Lead Holder with 5.6mm x 80mm Lead, Black with Clip, 1 Each (5311CN1005PK)","1","amazon.ca","Seller","Russell","Ontario","K4R 0E6","","21.99","0","4.99","0","0","0","0","0","-4.05","0","0","0","22.93" +"Nov. 30, 2020 12:43:48 a.m. PST","13563789801","Order","701-6623769-2256258","55-DJY4-FR1092","Tescoma Delícia Beehive Mould","1","amazon.ca","Seller","Toronto","ON","M9P1A8","","19.00","0","4.99","0","0","0","0","0","-1.44","0","0","0","22.55" diff --git a/Mapp.BusinessLogic.Transactions.Tests/TestData/AmazonDE.csv b/Mapp.BusinessLogic.Transactions.Tests/TestData/AmazonDE.csv new file mode 100644 index 0000000..c5a673c --- /dev/null +++ b/Mapp.BusinessLogic.Transactions.Tests/TestData/AmazonDE.csv @@ -0,0 +1,223 @@ +"Einschließlich Transaktionen zu Amazon Marketplace, Versand durch Amazon und Amazon Webstore" +"Alle Beträge in Euro sofern nicht anders gekennzeichnet" +"Definitionen:" +"Verkaufsgebühren: Beinhaltet variable Abschlussgebühren und Werbekostenerstattungen." +"Andere Transaktionsgebühren: Einschließlich Ausgleichsbuchungen für Versand und Versandgebühren." +"Andere: Enthält Beträge zu Transaktionen, die nicht auf eine Bestellung bezogen sind. Weitere Details finden Sie zu jeder Bestellung in den Spalten ""Typ"" und ""Beschreibung""." +"Datum/Uhrzeit","Abrechnungsnummer","Typ","Bestellnummer","SKU","Beschreibung","Menge","Marketplace","Versand","Ort der Bestellung","Bundesland","Postleitzahl","Steuererhebungsmodell","Umsätze","Produktumsatzsteuer","Gutschrift für Versandkosten","Steuer auf Versandgutschrift","Gutschrift für Geschenkverpackung","Steuer auf Geschenkverpackungsgutschriften","Rabatte aus Werbeaktionen","Steuer auf Aktionsrabatte","Verkaufsgebühren","Gebühren zu Versand durch Amazon","Andere Transaktionsgebühren","Andere","Gesamt" +"02.11.2020 03:52:56 UTC","14320109692","Servicegebühr","","","Werbekosten","","","","","","","","0","0","0","0","0","0","0","0","0","0","-9,73","0","-9,73" +"02.11.2020 07:44:12 UTC","14320109692","Bestellung","306-6333689-3588324","WA-BPYV-SN1D","Ecstasy / Extase","1","amazon.de","Verkäufer","Wien","","1100","","19,99","0","5,00","0","0","0","0","0","-4,56","0","0","0","20,43" +"02.11.2020 07:49:15 UTC","14320109692","Bestellung","028-6611103-3907502","DZ-GTMK-V2LD","Darmodej","1","amazon.de","Verkäufer","München","bayern","81543","","26,56","0","6,00","0","0","0","0","0","-5,69","0","0","0","26,87" +"02.11.2020 07:49:22 UTC","14320109692","Bestellung","304-5495408-4799544","55-DJY4-FR1085","Tescoma Delicia Kleine Nussformen 24 Stück","1","amazon.de","Verkäufer","Völkermarkt","","9100","","9,20","0","5,00","0","0","0","0","0","-2,13","0","0","0","12,07" +"02.11.2020 07:50:53 UTC","14320109692","Bestellung","028-0546544-4596321","55-DJY4-FR820","Tescoma Teigtaschenrad, Plastik, weiß/gelb, 21 x 7 x 1.3 cm","1","amazon.de","Verkäufer","Aldingen","","78554","","11,48","0","6,00","0","0","0","0","0","-2,62","0","0","0","14,86" +"02.11.2020 07:51:06 UTC","14320109692","Bestellung","304-9293070-4405162","RZ-HGAJ-8PV8","Kral sokolu (Thomas and the Falcon King)","1","amazon.de","Verkäufer","Coesfeld","NRW","48653","","9,14","0","6,00","0","0","0","0","0","-3,08","0","0","0","12,06" +"02.11.2020 07:54:45 UTC","14320109692","Bestellung","303-8965780-7632363","55-DJY4-FR1275","Tescoma der Haus Set für Vorbereitung Käse Weich, Kunststoff, Mehrfarbig, 23.5 x 12 x 17.1 cm","1","amazon.de","Verkäufer","Reutlingen","","72760","","29,88","0","6,00","0","0","0","0","0","-5,38","0","0","0","30,50" +"02.11.2020 07:56:02 UTC","14320109692","Bestellung","302-3482098-4437936","IT-HSHX-J39X","Kalamita","1","amazon.de","Verkäufer","Pullach i. Isartal","Bayern","82049","","7,99","0","6,00","0","0","0","0","0","-2,91","0","0","0","11,08" +"02.11.2020 07:56:26 UTC","14320109692","Bestellung","304-0185389-8510776","0S-7GEA-VF3B","Tri Cunici","1","amazon.de","Verkäufer","GREBOCIN","","87-122","","26,56","0","3,00","0","0","0","0","0","-5,24","0","0","0","24,32" +"02.11.2020 07:56:26 UTC","14320109692","Bestellung","304-0185389-8510776","4Q-HGRM-NSJZ","Divne Stoleti","1","amazon.de","Verkäufer","GREBOCIN","","87-122","","25,90","0","3,00","0","0","0","0","0","-5,15","0","0","0","23,75" +"02.11.2020 07:57:34 UTC","14320109692","Bestellung","303-0530893-2617105","55-KOH-FR5184","Koh-I-Noor Hardtmuth Set of coloured leads 3,2 4041 2x6","1","amazon.de","Verkäufer","Ulm","Baden Württemberg","89077","","3,45","0","6,00","0","0","0","0","0","-1,42","0","0","0","8,03" +"02.11.2020 07:57:38 UTC","14320109692","Bestellung","028-2829830-5265904","55-DJY4-FR1085","Tescoma Delicia Kleine Nussformen 24 Stück","1","amazon.de","Verkäufer","3710 Ziersdorf","","3710 ZIERSDORF","","9,20","0","28,00","0","0","0","0","0","-5,58","0","0","0","31,62" +"02.11.2020 07:59:17 UTC","14320109692","Bestellung","304-5348199-9922730","55-DJY4-FR1092","Tescoma 631640 Förmchen für gefülltes Gebäck Bienenkörbchen DELICIA, Muffin-Backform","1","amazon.de","Verkäufer","Schwarzenberg","Vorarlberg","6867","","1,90","0","28,00","0","0","0","0","0","-4,49","0","0","0","25,41" +"02.11.2020 07:59:20 UTC","14320109692","Bestellung","028-2213005-6046714","55-DJY4-FR1085","Tescoma Delicia Kleine Nussformen 24 Stück","3","amazon.de","Verkäufer","Reinprechtspöller","","3713","","27,60","0","7,00","0","0","0","0","0","-5,19","0","0","0","29,41" +"02.11.2020 08:07:57 UTC","14320109692","Bestellung","304-3708081-4926759","5X-KU3C-78VO","Pan Tau","1","amazon.de","Verkäufer","Frankfurt (oder)","Brandenburg","15234","","9,14","0","6,00","0","0","0","0","0","-3,08","0","0","0","12,06" +"04.11.2020 07:09:15 UTC","14320109692","Bestellung","303-7992500-3467536","55-DJY4-FR1092","Tescoma 631640 Förmchen für gefülltes Gebäck Bienenkörbchen DELICIA, Muffin-Backform","1","amazon.de","Verkäufer","Bruck an der Leitha","Niederösterreich","2460","","1,90","0","5,00","0","0","0","0","0","-1,04","0","0","0","5,86" +"04.11.2020 07:09:50 UTC","14320109692","Bestellung","302-4384520-7137138","55-DJY4-FR1092","Tescoma 631640 Förmchen für gefülltes Gebäck Bienenkörbchen DELICIA, Muffin-Backform","1","amazon.de","Verkäufer","Neutal","Burgenland","7343","","1,90","0","5,00","0","0","0","0","0","-1,04","0","0","0","5,86" +"04.11.2020 07:14:44 UTC","14320109692","Bestellung","305-0902140-9469133","CM-VWCP-05PC","Pat a Mat Kolekce 1-4","1","amazon.de","Verkäufer","Herrieden","Bayern","91567","","29,99","0","6,00","0","0","0","0","0","-6,21","0","0","0","29,78" +"06.11.2020 06:40:10 UTC","14320109692","Bestellung","028-1040043-3820330","55-DJY4-FR1092","Tescoma 631640 Förmchen für gefülltes Gebäck Bienenkörbchen DELICIA, Muffin-Backform","1","amazon.de","Verkäufer","Berndorf","Niederösterreich","2560","","1,90","0","5,00","0","0","0","0","0","-1,04","0","0","0","5,86" +"06.11.2020 06:40:38 UTC","14320109692","Bestellung","304-5436434-9212306","55-DJY4-FR1092","Tescoma 631640 Förmchen für gefülltes Gebäck Bienenkörbchen DELICIA, Muffin-Backform","10","amazon.de","Verkäufer","Ludersdorf","Steiermark","8200","","19,00","0","14,00","0","0","0","0","0","-5,00","0","0","0","28,00" +"06.11.2020 06:43:18 UTC","14320109692","Bestellung","302-5257192-3285918","55-DJY4-FR255","Tescoma Maronizange","1","amazon.de","Verkäufer","Wildschönau/Oberau","Tirol","6311","","10,99","0","5,00","0","0","0","0","0","-2,40","0","0","0","13,59" +"06.11.2020 06:43:47 UTC","14320109692","Bestellung","305-8822110-4828310","55-DJY4-FR255","Tescoma Maronizange","1","amazon.de","Verkäufer","Weidingen","","0953","","10,99","0","7,00","0","0","0","0","0","-2,70","0","0","0","15,29" +"06.11.2020 06:47:25 UTC","14320109692","Bestellung","306-5724325-2266748","CJ-E99W-P03E","MARLENKA Honigkuchen mit Nüssen (1 x 800g)","1","amazon.de","Verkäufer","Rodange","Luxembourg","4830","","19,99","0","7,00","0","0","0","0","0","-4,05","0","0","0","22,94" +"06.11.2020 06:48:05 UTC","14320109692","Bestellung","304-0752726-7281148","25-SOPE-AECG","Dedictvi, aneb kurvahosigutntag (The Inheritance or Fuckoffguysgoodday) by Boleslav Polivka","1","amazon.de","Verkäufer","Vienna","","1200","","7,99","0","5,00","0","0","0","0","0","-2,76","0","0","0","10,23" +"06.11.2020 06:49:06 UTC","14320109692","Bestellung","028-7169405-2943561","55-KOH-FR6801","KOH-I-NOOR Fallbleistift Druckbleistift Metall 2er Set hellbau","1","amazon.de","Verkäufer","Dallgow-döberitz","","14624","","15,00","0","6,00","0","0","0","0","0","-3,15","0","0","0","17,85" +"06.11.2020 06:49:19 UTC","14320109692","Bestellung","304-5175774-7934749","55-DJY4-NY255","Tescoma Maronizange","1","amazon.de","Verkäufer","Prejmer","","507165","","10,99","0","5,00","0","0","0","0","0","-2,40","0","0","0","13,59" +"06.11.2020 06:49:32 UTC","14320109692","Bestellung","303-0156355-3399552","55-DJY4-FR820","Tescoma Teigtaschenrad, Plastik, weiß/gelb, 21 x 7 x 1.3 cm","1","amazon.de","Verkäufer","Schmirn","TIROL","6154","","11,48","0","5,00","0","0","0","0","0","-2,47","0","0","0","14,01" +"06.11.2020 06:50:09 UTC","14320109692","Bestellung","306-1137924-4966701","55-DJY4-FR255","Tescoma Maronizange","1","amazon.de","Verkäufer","Palzem","Rheinland-Pfalz","54439","","10,99","0","6,00","0","0","0","0","0","-2,55","0","0","0","14,44" +"06.11.2020 06:50:15 UTC","14320109692","Bestellung","302-5596478-4457154","4D-KJ1I-W1PG","80/80 Největší hity 1964-2019 (80/80 Greatest hits of 1964-2019)","1","amazon.de","Verkäufer","Haselbachtal","Deutschland","01920","","28,98","0","6,00","0","0","0","0","0","-6,06","0","0","0","28,92" +"09.11.2020 07:06:45 UTC","14320109692","Bestellung","305-8620245-6358746","55-DJY4-FR331","Tescoma Kaffee Sediment Sieb Presto Ø 8 cm","1","amazon.de","Verkäufer","Hannover","","30179","","5,99","0","6,00","0","0","0","0","0","-1,80","0","0","0","10,19" +"09.11.2020 07:10:26 UTC","14320109692","Bestellung","302-2912169-0893155","II-E1F6-WXGC","Jak Se Kroti Krokodyli (Jak se krotí krokodýli )","1","amazon.de","Verkäufer","Freilassing","Bayern","83395","","23,32","0","6,00","0","0","0","0","0","-5,21","0","0","0","24,11" +"09.11.2020 07:10:33 UTC","14320109692","Bestellung","028-8301280-0783541","39-S0L7-HMVL","Best of the Best","1","amazon.de","Verkäufer","Dresden","Sachsen","01069","","19,99","0","6,00","0","0","0","0","0","-4,71","0","0","0","21,28" +"09.11.2020 07:12:44 UTC","14320109692","Bestellung","305-3202311-0818711","KO-E2TM-Y1DF","Golden Eels / Zlati uhori","1","amazon.de","Verkäufer","Hagen","NRW","58093","","22,99","0","6,00","0","0","0","0","0","-5,16","0","0","0","23,83" +"09.11.2020 07:13:44 UTC","14320109692","Bestellung","302-8172539-6407536","FQ-C7AF-SOSO","Dermacol - Botocell - Intensive Lifting Creme botulotoxin Effekt 50 ml","1","amazon.de","Verkäufer","Berlin","","10779","","17,99","0","6,00","0","0","0","0","0","-3,60","0","0","0","20,39" +"09.11.2020 07:14:01 UTC","14320109692","Bestellung","305-8722050-8068305","56-Y6GZ-IFFY","Princ Bajaja (Prinz Bajaja)","1","amazon.de","Verkäufer","Laucha a.d. Unstrut","Sachsen-Anhalt","06636","","9,99","0","6,00","0","0","0","0","0","-3,21","0","0","0","12,78" +"09.11.2020 07:15:55 UTC","14320109692","Bestellung","305-1929288-4739514","DP-J0EH-8872","Diamond Collection","1","amazon.de","Verkäufer","Erfurt","","99099","","23,03","0","6,00","0","0","0","0","0","-5,16","0","0","0","23,87" +"09.11.2020 07:16:23 UTC","14320109692","Bestellung","028-1928709-1092311","56-Y6GZ-IFFY","Princ Bajaja (Prinz Bajaja)","1","amazon.de","Verkäufer","Schöneiche","","15566","","9,99","0","6,00","0","0","0","0","0","-3,21","0","0","0","12,78" +"09.11.2020 07:16:27 UTC","14320109692","Bestellung","028-4171860-5329961","0B-PW06-U214","Alpa Francovka Czech Alcohol Herbal Tincture Franzbran (Alpa Lesna 1000 ml)","1","amazon.de","Verkäufer","Mötz","Tirol, Rakousko","6423","","22,99","0","5,00","0","0","0","0","0","-4,20","0","0","0","23,79" +"10.11.2020 01:10:51 UTC","14404032282","Übertrag","","","An Konto mit der Endung: 907","","","","","","","","0","0","0","0","0","0","0","0","0","0","0","-729,84","-729,84" +"11.11.2020 07:27:37 UTC","14404032282","Bestellung","302-1934445-3508339","4A-ZVNZ-YTH3","Bílé Vánoce","1","amazon.de","Verkäufer","Wittichenau","Sachsen","02997","","16,80","0","6,00","0","0","0","0","0","-4,23","0","0","0","18,57" +"11.11.2020 07:30:50 UTC","14404032282","Bestellung","303-3978232-4007502","55-DJY4-FR1114","Tescoma Delicia Küchenwaage, 2,2 kg","1","amazon.de","Verkäufer","Sentjernej","","8310","","26,42","0","5,00","0","0","0","0","0","-4,71","0","0","0","26,71" +"11.11.2020 07:30:50 UTC","14404032282","Bestellung","305-2190977-1182748","WI-GB6S-B6UP","Pysna princezna / Die Stolze Princess","1","amazon.de","Verkäufer","Potsdam OT Groß Glienicke","Deutschland","14476","","21,99","0","6,00","0","0","0","0","0","-5,01","0","0","0","22,98" +"11.11.2020 07:31:03 UTC","14404032282","Bestellung","028-3354142-5639519","CM-VWCP-05PC","Pat a Mat Kolekce 1-4","1","amazon.de","Verkäufer","Herrnhut","Sachsen","02747","","29,99","0","6,00","0","0","0","0","0","-6,21","0","0","0","29,78" +"11.11.2020 07:31:21 UTC","14404032282","Bestellung","303-7083431-7796323","55-DJY4-FR1786","Tescoma Precioso Geflügelschere","1","amazon.de","Verkäufer","Wien","","1020","","29,00","0","5,00","0","0","0","0","0","-5,10","0","0","0","28,90" +"13.11.2020 07:38:18 UTC","14404032282","Bestellung","305-7788544-8387514","4D-KJ1I-W1PG","80/80 Největší hity 1964-2019 (80/80 Greatest hits of 1964-2019)","1","amazon.de","Verkäufer","Kreischa","Sachsen","01731","","28,98","0","6,00","0","0","0","0","0","-6,06","0","0","0","28,92" +"13.11.2020 07:38:31 UTC","14404032282","Bestellung","028-8682086-4356350","P7-IX1A-PZXC","Strakonicky dudak (The Strakonice Bagpiper) paper sleeve","1","amazon.de","Verkäufer","1209 Genève","","1209","","4,54","0","7,00","0","0","0","0","0","-2,54","0","0","0","9,00" +"13.11.2020 07:44:08 UTC","14404032282","Bestellung","028-3278103-0700349","FD-WN0B-A0JQ","Obecna skola - remasterovana verze (Blu-ray) (Obecná škola)","1","amazon.de","Verkäufer","Erfurt","","99096","","20,68","0","6,00","0","0","0","0","0","-4,81","0","0","0","21,87" +"13.11.2020 07:44:15 UTC","14404032282","Bestellung","028-4763675-3738743","55-DJY4-FR1085","Tescoma Delicia Kleine Nussformen 24 Stück","1","amazon.de","Verkäufer","Graz","","8020","","9,20","0","5,00","0","0","0","0","0","-2,13","0","0","0","12,07" +"13.11.2020 07:44:48 UTC","14404032282","Bestellung","303-9483927-8547513","55-DJY4-FR1092","Tescoma 631640 Förmchen für gefülltes Gebäck Bienenkörbchen DELICIA, Muffin-Backform","6","amazon.de","Verkäufer","Mühldorf A. Inn","","84453","","11,40","0","11,00","0","0","0","0","0","-3,36","0","0","0","19,04" +"13.11.2020 07:44:58 UTC","14404032282","Bestellung","305-0605649-0304315","55-DJY4-FR1092","Tescoma 631640 Förmchen für gefülltes Gebäck Bienenkörbchen DELICIA, Muffin-Backform","1","amazon.de","Verkäufer","Markersdorf","NÖ","3385","","1,90","0","5,00","0","0","0","0","0","-1,04","0","0","0","5,86" +"13.11.2020 07:49:46 UTC","14404032282","Bestellung","306-1251192-1578725","A2-3C7T-2IWS","Retro Hracky 50. - 80. leta (Retro hraèky)","1","amazon.de","Verkäufer","Heitersheim","Deutschland","79423","","22,98","0","6,00","0","0","0","0","0","-5,16","0","0","0","23,82" +"13.11.2020 07:51:27 UTC","14404032282","Bestellung","304-5892279-2990721","55-DJY4-FR1092","Tescoma 631640 Förmchen für gefülltes Gebäck Bienenkörbchen DELICIA, Muffin-Backform","10","amazon.de","Verkäufer","Wies","","8551","","19,00","0","14,00","0","0","0","0","0","-5,00","0","0","0","28,00" +"13.11.2020 07:53:25 UTC","14404032282","Bestellung","028-3468600-0213935","55-DJY4-FR1092","Tescoma 631640 Förmchen für gefülltes Gebäck Bienenkörbchen DELICIA, Muffin-Backform","1","amazon.de","Verkäufer","Perchtoldsdorf","Niederösterreich","2380","","1,90","0","5,00","0","0","0","0","0","-1,04","0","0","0","5,86" +"13.11.2020 08:01:33 UTC","14404032282","Bestellung","302-2080859-0810759","55-DJY4-FR1888","Tescoma Vorratsglas, Glas, transparent, 10.4 x 10.4 x 17 cm","1","amazon.de","Verkäufer","Stuttgart","Baden-Württemberg","70190","","18,38","0","6,00","0","0","0","0","0","-3,66","0","0","0","20,72" +"16.11.2020 08:01:58 UTC","14404032282","Bestellung","305-5415630-5952312","H1-8ZA5-QI1C","Kuschelnester (Pelisky) Remastered","1","amazon.de","Verkäufer","Holzkirchen","Bayern","83607","","14,99","0","6,00","0","0","0","0","0","-3,96","0","0","0","17,03" +"16.11.2020 08:02:45 UTC","14404032282","Bestellung","306-3713336-1296352","TF-0N8B-BKXE","Gebäckkugeln mit Honig""Marlenka"", tiefgefroren 235g","1","amazon.de","Verkäufer","Hague","Netherlands","2593GN","","8,99","0","7,00","0","0","0","0","0","-2,40","0","0","0","13,59" +"16.11.2020 08:02:59 UTC","14404032282","Bestellung","303-7156118-2398756","JY-7TO9-BOL8","DERMACOL HOHE ABDECKUNG MAKE-UP ABDECKUNG STIFTUNG HYPOALLERGENIC FUNKY PLANET SET MIT MARKEN FUNKY PLANET SCHWAMM FÜR PERFEKTE HOLLYWOOD MAKE-UP (21","1","amazon.de","Verkäufer","Österreich","Steiermark","8921","","14,99","0","5,00","0","0","0","0","0","-3,00","0","0","0","16,99" +"16.11.2020 08:03:09 UTC","14404032282","Bestellung","304-5320042-6619559","FZ-YNNN-E0Y2","Tescoma Topf, silikon, Silber, 33.5 x 12.5 x 16 cm","1","amazon.de","Verkäufer","Loiching-Kronwieden","","84180","","39,00","0","6,00","0","0","0","0","0","-6,75","0","0","0","38,25" +"16.11.2020 08:03:22 UTC","14404032282","Bestellung","304-7535372-3999521","07-8VMJ-43VW","DERMACOL HOHE ABDECKUNG MAKE-UP ABDECKUNG STIFTUNG HYPOALLERGENIC FUNKY PLANET SET MIT MARKEN FUNKY PLANET SCHWAMM FÜR PERFEKTE HOLLYWOOD MAKE-UP (21","1","amazon.de","Verkäufer","Linz","Oberösterreich","4020","","14,99","0","5,00","0","0","0","0","0","-3,00","0","0","0","16,99" +"16.11.2020 08:05:33 UTC","14404032282","Bestellung","305-4200679-4022713","WA-BPYV-SN1D","Ecstasy / Extase","1","amazon.de","Verkäufer","MUENSTER","","48145","","19,99","0","6,00","0","0","0","0","0","-4,71","0","0","0","21,28" +"16.11.2020 08:05:36 UTC","14404032282","Bestellung","302-7556809-0525933","2C-GOL4-D73S","Tri Orisky pro Popelku (Drei Haselnüsse für Aschenbrödel) Remastered","1","amazon.de","Verkäufer","Berlin","","10779","","14,99","0","6,00","0","0","0","0","0","-3,96","0","0","0","17,03" +"16.11.2020 08:05:42 UTC","14404032282","Bestellung","028-1724105-9989916","JG-9JQA-8FBP","Snowboardaci [Snowboarders]","1","amazon.de","Verkäufer","Steyr","Oberösterreich","4400","","17,23","0","5,00","0","0","0","0","0","-4,14","0","0","0","18,09" +"16.11.2020 08:06:28 UTC","14404032282","Bestellung","305-1167478-8694743","PL-6IZQ-FRR2","Slunce, Seno, Jahody by Pavel Kikincuk","1","amazon.de","Verkäufer","Attendorn","","57439","","7,99","0","6,00","0","0","0","0","0","-2,91","0","0","0","11,08" +"16.11.2020 08:06:41 UTC","14404032282","Bestellung","304-2729735-5845922","55-DJY4-FR942","Tescoma Dekorierstift","1","amazon.de","Verkäufer","Langenwang","","8665","","12,99","0","5,00","0","0","0","0","0","-2,70","0","0","0","15,29" +"16.11.2020 08:07:28 UTC","14404032282","Bestellung","305-5874553-7010756","LZ-WZCS-SO8D","Indulona Marigold - cream for deep regeneration in larger family packaging","1","amazon.de","Verkäufer","Wien","","1210","","15,99","0","5,00","0","0","0","0","0","-3,15","0","0","0","17,84" +"16.11.2020 08:08:05 UTC","14404032282","Bestellung","303-8399952-6469919","H1-8ZA5-QI1C","Kuschelnester (Pelisky) Remastered","1","amazon.de","Verkäufer","Elzach","Baden-Württemberg","79215","","14,99","0","6,00","0","0","0","0","0","-3,96","0","0","0","17,03" +"16.11.2020 08:08:12 UTC","14404032282","Bestellung","306-9881856-8869943","CF-42ML-5815","Prednosta stanice","1","amazon.de","Verkäufer","Karlsruhe","Baden-Württemberg","76185","","9,99","0","2,00","0","0","0","0","0","-2,61","0","0","0","9,38" +"16.11.2020 08:08:12 UTC","14404032282","Bestellung","306-9881856-8869943","O3-W3GC-BI4U","Dum na predmesti","1","amazon.de","Verkäufer","Karlsruhe","Baden-Württemberg","76185","","17,23","0","2,00","0","0","0","0","0","-3,69","0","0","0","15,54" +"16.11.2020 08:08:12 UTC","14404032282","Bestellung","306-9881856-8869943","VI-1JN2-ZNIP","Kristian","1","amazon.de","Verkäufer","Karlsruhe","Baden-Württemberg","76185","","17,23","0","2,00","0","0","0","0","0","-3,69","0","0","0","15,54" +"16.11.2020 08:08:12 UTC","14404032282","Bestellung","306-9881856-8869943","VJ-QRJM-AHD1","Kdo chce zabit Jessii?","1","amazon.de","Verkäufer","Karlsruhe","Baden-Württemberg","76185","","7,94","0","2,00","0","0","0","0","0","-2,30","0","0","0","7,64" +"16.11.2020 08:08:12 UTC","14404032282","Bestellung","306-9881856-8869943","VI-0QUA-SJCA","Kulovy blesk","1","amazon.de","Verkäufer","Karlsruhe","Baden-Württemberg","76185","","4,54","0","2,00","0","0","0","0","0","-1,79","0","0","0","4,75" +"16.11.2020 08:08:29 UTC","14404032282","Bestellung","303-8206916-5699566","YI-G4TA-C8DU","Indulona Profi Original Intensive Schutzcreme Unbekannt Papera Krém NA ruce Indulona,promaš?ující,100 ml-","1","amazon.de","Verkäufer","Goldenstedt","kreis Vechta","49424","","9,99","0","6,00","0","0","0","0","0","-2,40","0","0","0","13,59" +"16.11.2020 08:08:56 UTC","14404032282","Bestellung","306-8742832-1669111","NJ-4IIE-OUC4","5 DVD Kolekce Juraje Herze","1","amazon.de","Verkäufer","Hamburg","","22767","","34,47","0","6,00","0","0","0","0","0","-6,88","0","0","0","33,59" +"16.11.2020 08:09:55 UTC","14404032282","Bestellung","028-4066053-2569902","55-DJY4-FR1092","Tescoma 631640 Förmchen für gefülltes Gebäck Bienenkörbchen DELICIA, Muffin-Backform","2","amazon.de","Verkäufer","Moedling","Niederoesterreich","2340","","3,80","0","6,00","0","0","0","0","0","-1,48","0","0","0","8,32" +"16.11.2020 08:10:02 UTC","14404032282","Bestellung","304-1419131-5953959","94-0ORZ-WQWK","BIER - BIER BADESALZ 150 GV CANVAS TASCHE PIVRNEC Czech Bier","2","amazon.de","Verkäufer","Wien","Wien","1180","","23,98","0","6,00","0","0","0","0","0","-4,50","0","0","0","25,48" +"17.11.2020 22:06:27 UTC","14404032282","Bestellung","305-1678290-2223517","ZP-VTPQ-JSV3","Dermacol Wimperntusch mit spektakülarem Volumen Mascara Mania, 2er Pack (2 x 1 Stück)","1","amazon.de","Verkäufer","Berlin","","12679","","14,93","0","6,00","0","0","0","0","0","-3,14","0","0","0","17,79" +"18.11.2020 07:41:56 UTC","14404032282","Bestellung","306-6336090-4793155","W9-TTVM-752Q","Wonderful Years That Sucked / Bajecna leta pod psa DVD English subtitles Remastered","1","amazon.de","Verkäufer","Berlin","Berlin","12249","","13,99","0","6,00","0","0","0","0","0","-3,81","0","0","0","16,18" +"18.11.2020 07:42:08 UTC","14404032282","Bestellung","304-5334292-8369169","OU-PQI7-5FOC","3er Pack Kolonada Obladen Haselnuss (3 x 175g)","3","amazon.de","Verkäufer","SANTA FE","NM","87501-2365","","44,97","0","13,00","0","0","0","0","0","-8,70","0","0","0","49,27" +"18.11.2020 07:42:15 UTC","14404032282","Bestellung","306-8931068-5657158","55-DJY4-NY349","Tescoma Stifteschneider, Edelstahl, Silber, 15.5 x 11.5 x 1.2 cm","2","amazon.de","Verkäufer","Wernigerode","","38855","","13,98","0","7,00","0","0","0","0","0","-3,14","0","0","0","17,84" +"18.11.2020 07:42:37 UTC","14404032282","Bestellung","306-1361547-8541919","T6-YJRT-1MN2","Ostre sledovane vlaky","1","amazon.de","Verkäufer","Hradec Králové","","50009","","9,99","0","5,00","0","0","0","0","0","-3,06","0","0","0","11,93" +"18.11.2020 07:43:55 UTC","14404032282","Bestellung","028-4624296-2259538","DP-K1XF-ULOS","Policie Modrava (Box 6DVD)","1","amazon.de","Verkäufer","Braunschweig","","38106","","39,99","0","6,00","0","0","0","0","0","-7,71","0","0","0","38,28" +"18.11.2020 07:46:16 UTC","14404032282","Bestellung","306-2763492-5833120","4D-KJ1I-W1PG","80/80 Největší hity 1964-2019 (80/80 Greatest hits of 1964-2019)","1","amazon.de","Verkäufer","Sprendlingen","Rheinland-Pfalz","55576","","28,98","0","6,00","0","0","0","0","0","-6,06","0","0","0","28,92" +"18.11.2020 07:46:26 UTC","14404032282","Bestellung","304-0617377-9480366","55-DJY4-FR226","Tescoma Presto Sparschäler","2","amazon.de","Verkäufer","Lappeenranta","FI","53850","","13,76","0","8,00","0","0","0","0","0","-3,26","0","0","0","18,50" +"18.11.2020 07:46:33 UTC","14404032282","Bestellung","304-2766283-8541161","T6-YJRT-1MN2","Ostre sledovane vlaky","1","amazon.de","Verkäufer","Altensteig","","72213","","9,99","0","6,00","0","0","0","0","0","-3,21","0","0","0","12,78" +"18.11.2020 07:47:58 UTC","14404032282","Bestellung","305-7970734-5161931","55-DJY4-FR452","Tescoma Presto Kochgabel, Graphit","1","amazon.de","Verkäufer","Wasserhofen","Kärnten","9122","","11,49","0","5,00","0","0","0","0","0","-2,47","0","0","0","14,02" +"18.11.2020 07:48:15 UTC","14404032282","Bestellung","305-5893427-4661168","55-KOH-FR5738","Koh-I-Noor 074921 - Schablone Architekt für technische Zeichnungen von Innenräumen, M 1:50","1","amazon.de","Verkäufer","Cuxhaven","","27476","","5,99","0","6,00","0","0","0","0","0","-1,80","0","0","0","10,19" +"18.11.2020 07:49:18 UTC","14404032282","Bestellung","306-6640820-8161163","55-DJY4-FR1092","Tescoma 631640 Förmchen für gefülltes Gebäck Bienenkörbchen DELICIA, Muffin-Backform","1","amazon.de","Verkäufer","Kleinraming","","4442","","1,90","0","5,00","0","0","0","0","0","-1,04","0","0","0","5,86" +"18.11.2020 07:49:25 UTC","14404032282","Bestellung","302-8488952-3990752","55-DJY4-FR1404","Tescoma Pfeffer-/ Salzmühle, Holz, Braun, 6 x 5.7 x 20 cm","1","amazon.de","Verkäufer","Graz","","8051","","27,59","0","5,00","0","0","0","0","0","-4,89","0","0","0","27,70" +"18.11.2020 07:51:42 UTC","14404032282","Bestellung","306-4196379-6669952","PF-RGET-K6N4","MARLENKA Honigkuchen mit Nüssen (1 x 800g)","1","amazon.de","Verkäufer","Rodange","Luxembourg","4830","","19,99","0","8,00","0","0","0","0","0","-4,20","0","0","0","23,79" +"18.11.2020 07:51:49 UTC","14404032282","Bestellung","303-2951925-7131558","I1-7NRT-6Q1Q","Pelisky (Cosy Dens) [paper sleeve]","1","amazon.de","Verkäufer","Kobarid","","5222","","3,00","0","5,00","0","0","0","0","0","-2,01","0","0","0","5,99" +"18.11.2020 07:52:02 UTC","14404032282","Bestellung","306-8119019-0623534","X2-SK5U-T0AO","Marlenka - Snack with honey 50g x 20","1","amazon.de","Verkäufer","Rodange","Luxembourg","4830","","29,99","0","8,00","0","0","0","0","0","-5,70","0","0","0","32,29" +"18.11.2020 07:52:12 UTC","14404032282","Bestellung","302-0253443-2138729","55-DJY4-FR2471","Tescoma Teekanne, grün/transparent, 25 x 18.8 x 18.6 cm","1","amazon.de","Verkäufer","München","Bayern","81379","","28,74","0","6,00","0","0","0","0","0","-5,21","0","0","0","29,53" +"18.11.2020 07:52:27 UTC","14404032282","Bestellung","302-6048496-4493907","55-DJY4-FR788","Tescoma Bräter, Glas, transparent, 43 x 26.5 x 12.7 cm","1","amazon.de","Verkäufer","Pfaffenhofen an der Glonn","","85235","","85,06","0","6,00","0","0","0","0","0","-13,66","0","0","0","77,40" +"20.11.2020 07:40:49 UTC","14404032282","Bestellung","303-0186218-2045176","55-DJY4-FR1045","Tescoma Ausstecher, grün/gelb/rot, 23 x 14 x 3.6 cm","2","amazon.de","Verkäufer","Sachsenburg","Kärnten","9751","","16,10","0","6,00","0","0","0","0","0","-3,32","0","0","0","18,78" +"20.11.2020 07:41:13 UTC","14404032282","Bestellung","306-9336039-7362768","F3-9IWB-UR42","Vrchni, prchni! [Waiter, Run for It!] by Josef Abrham","1","amazon.de","Verkäufer","Berlin","","13595","","11,48","0","6,00","0","0","0","0","0","-3,43","0","0","0","14,05" +"20.11.2020 07:41:40 UTC","14404032282","Bestellung","302-5151645-7563550","4D-KJ1I-W1PG","80/80 Největší hity 1964-2019 (80/80 Greatest hits of 1964-2019)","1","amazon.de","Verkäufer","Chemnitz","Sachsen","09117","","28,98","0","6,00","0","0","0","0","0","-6,06","0","0","0","28,92" +"20.11.2020 07:41:43 UTC","14404032282","Bestellung","305-0913423-9410701","4A-ZVNZ-YTH3","Bílé Vánoce","1","amazon.de","Verkäufer","Praha 2","","120 00","","16,80","0","5,00","0","0","0","0","0","-4,08","0","0","0","17,72" +"20.11.2020 07:42:18 UTC","14404032282","Bestellung","303-4576728-7237140","SI-591T-LL3L","Alpa Kiefer Franzbranntwein Gel 100ml - 3er Pack","1","amazon.de","Verkäufer","Bad Nenndorf","","31542","","14,99","0","6,00","0","0","0","0","0","-3,15","0","0","0","17,84" +"20.11.2020 07:42:34 UTC","14404032282","Bestellung","303-2794978-6380315","EE-BR19-DFBV","Kdyby tisic klarinetu / If a Thousand Clarinets","1","amazon.de","Verkäufer","Mollkirch","","67190","","14,93","0","4,00","0","0","0","0","0","-3,65","0","0","0","15,28" +"20.11.2020 07:42:34 UTC","14404032282","Bestellung","303-2794978-6380315","I5-SCB3-4XBA","A Night at Karlstein / Noc na Karlstejne Remastered","1","amazon.de","Verkäufer","Mollkirch","","67190","","19,99","0","4,00","0","0","0","0","0","-4,41","0","0","0","19,58" +"20.11.2020 07:43:26 UTC","14404032282","Bestellung","304-8389183-7847506","55-DJY4-FR1045","Tescoma Ausstecher, grün/gelb/rot, 23 x 14 x 3.6 cm","1","amazon.de","Verkäufer","St. Margarethen","","9412","","8,05","0","5,00","0","0","0","0","0","-1,96","0","0","0","11,09" +"20.11.2020 07:44:06 UTC","14404032282","Bestellung","306-0492436-5989137","55-DJY4-FR1045","Tescoma Ausstecher, grün/gelb/rot, 23 x 14 x 3.6 cm","1","amazon.de","Verkäufer","Wien","","1130","","8,05","0","5,00","0","0","0","0","0","-1,96","0","0","0","11,09" +"20.11.2020 07:44:42 UTC","14404032282","Bestellung","306-9321044-2885924","I5-SCB3-4XBA","A Night at Karlstein / Noc na Karlstejne Remastered","1","amazon.de","Verkäufer","Wien","Österreich","1090","","19,99","0","3,00","0","0","0","0","0","-4,26","0","0","0","18,73" +"20.11.2020 07:44:42 UTC","14404032282","Bestellung","306-9321044-2885924","PL-6IZQ-FRR2","Slunce, Seno, Jahody by Pavel Kikincuk","1","amazon.de","Verkäufer","Wien","Österreich","1090","","7,99","0","3,00","0","0","0","0","0","-2,46","0","0","0","8,53" +"20.11.2020 07:45:40 UTC","14404032282","Bestellung","305-4969564-6577917","55-DJY4-FR1045","Tescoma Ausstecher, grün/gelb/rot, 23 x 14 x 3.6 cm","1","amazon.de","Verkäufer","Pöllau","Steiermark","8311","","8,05","0","5,00","0","0","0","0","0","-1,96","0","0","0","11,09" +"20.11.2020 07:46:34 UTC","14404032282","Bestellung","302-9580017-9345155","8M-7LPX-8L4L","DERMACOL BOTOCELL - Intensive Lifing Cremes für Gesicht, Decoleté, Augen & Lippen im S E T ! + Powerhaken","1","amazon.de","Verkäufer","Berlin","Berlin","12619","","29,99","0","6,00","0","0","0","0","0","-5,40","0","0","0","30,59" +"20.11.2020 07:49:48 UTC","14404032282","Bestellung","305-0085305-7721938","VI-0QUA-SJCA","Kulovy blesk","1","amazon.de","Verkäufer","Bühl","","77815","","4,54","0","6,00","0","0","0","0","0","-2,39","0","0","0","8,15" +"20.11.2020 07:51:49 UTC","14404032282","Bestellung","302-6877467-5957158","55-DJY4-FR1092","Tescoma 631640 Förmchen für gefülltes Gebäck Bienenkörbchen DELICIA, Muffin-Backform","1","amazon.de","Verkäufer","Linz","Österreich","4020","","1,90","0","5,00","0","0","0","0","0","-1,04","0","0","0","5,86" +"23.11.2020 08:22:26 UTC","14404032282","Bestellung","303-5321674-3101145","55-DJY4-FR1092","Tescoma 631640 Förmchen für gefülltes Gebäck Bienenkörbchen DELICIA, Muffin-Backform","1","amazon.de","Verkäufer","LANGMANNERSDORF","NIEDEROESTERREICH","3142","","1,90","0","5,00","0","0","0","0","0","-1,04","0","0","0","5,86" +"23.11.2020 08:22:55 UTC","14404032282","Bestellung","306-3743323-0993932","55-DJY4-FR1045","Tescoma Ausstecher, grün/gelb/rot, 23 x 14 x 3.6 cm","1","amazon.de","Verkäufer","St. Georgen","","9423","","8,05","0","5,00","0","0","0","0","0","-1,96","0","0","0","11,09" +"23.11.2020 08:24:37 UTC","14404032282","Bestellung","304-9851864-8334702","55-KOH-FR0818","Sax 406-09 SAX Locher 406 schwarz","1","amazon.de","Verkäufer","Graz","Steiermark","8010","","18,39","0","5,00","0","0","0","0","0","-3,51","0","0","0","19,88" +"23.11.2020 08:24:44 UTC","14404032282","Bestellung","304-1294980-7724351","9B-RI5O-NFDW","All Good Citizens / Vsichni dobri rodaci Remastered","1","amazon.de","Verkäufer","Chemnitz","Sachsen","09123","","19,99","0","6,00","0","0","0","0","0","-4,71","0","0","0","21,28" +"23.11.2020 08:25:51 UTC","14404032282","Bestellung","304-6537670-8954761","55-DJY4-FR1045","Tescoma Ausstecher, grün/gelb/rot, 23 x 14 x 3.6 cm","1","amazon.de","Verkäufer","Wolfsberg","Kärnten","9400","","8,05","0","5,00","0","0","0","0","0","-1,96","0","0","0","11,09" +"23.11.2020 08:27:12 UTC","14404032282","Bestellung","302-9323895-2733154","55-DJY4-FR1092","Tescoma 631640 Förmchen für gefülltes Gebäck Bienenkörbchen DELICIA, Muffin-Backform","4","amazon.de","Verkäufer","Neustadl","Niederösterreich","3323","","7,60","0","8,00","0","0","0","0","0","-2,36","0","0","0","13,24" +"23.11.2020 08:28:00 UTC","14404032282","Bestellung","304-2962555-3683538","55-DJY4-FR1092","Tescoma 631640 Förmchen für gefülltes Gebäck Bienenkörbchen DELICIA, Muffin-Backform","2","amazon.de","Verkäufer","Amaliendorf","Niederösterreich","3872","","3,80","0","6,00","0","0","0","0","0","-1,48","0","0","0","8,32" +"23.11.2020 08:28:16 UTC","14404032282","Bestellung","306-0427887-4656332","55-DJY4-FR1045","Tescoma Ausstecher, grün/gelb/rot, 23 x 14 x 3.6 cm","1","amazon.de","Verkäufer","Graz","Steiermark","8020","","8,05","0","5,00","0","0","0","0","0","-1,96","0","0","0","11,09" +"23.11.2020 08:28:29 UTC","14404032282","Bestellung","305-7575536-8160364","55-DJY4-FR1045","Tescoma Ausstecher, grün/gelb/rot, 23 x 14 x 3.6 cm","1","amazon.de","Verkäufer","Gänserndorf","Niederösterreich","2230","","8,05","0","5,00","0","0","0","0","0","-1,96","0","0","0","11,09" +"23.11.2020 08:29:40 UTC","14404032282","Bestellung","302-9890482-2749958","1C-XDRI-AGDS","Ecstasy / Extase","1","amazon.de","Verkäufer","Braunschweig","Niedersachsen","38116","","19,99","0","6,00","0","0","0","0","0","-4,71","0","0","0","21,28" +"23.11.2020 08:30:03 UTC","14404032282","Bestellung","028-3347102-1376352","55-DJY4-FR1977","Deep Rack Monti, 45 cm","1","amazon.de","Verkäufer","Roßdorf","","64380","","30,00","0","6,00","0","0","0","0","0","-5,40","0","0","0","30,60" +"23.11.2020 08:31:29 UTC","14404032282","Bestellung","305-1719145-9250747","2C-GOL4-D73S","Tri Orisky pro Popelku (Drei Haselnüsse für Aschenbrödel) Remastered","1","amazon.de","Verkäufer","Leipzig","Germany","04277","","14,99","0","6,00","0","0","0","0","0","-3,96","0","0","0","17,03" +"23.11.2020 08:33:08 UTC","14404032282","Bestellung","304-7143877-7757961","55-DJY4-NY255","Tescoma Maronizange","1","amazon.de","Verkäufer","Gilgenberg am Weilhart","","5133","","10,99","0","5,00","0","0","0","0","0","-2,40","0","0","0","13,59" +"23.11.2020 08:33:39 UTC","14404032282","Bestellung","305-6222896-0317148","LR-K4VL-W4MX","Navstevnici - kompletni serie (kolekce)","1","amazon.de","Verkäufer","Bremen","Bremen","28211","","21,00","0","6,00","0","0","0","0","0","-4,86","0","0","0","22,14" +"23.11.2020 08:34:03 UTC","14404032282","Bestellung","303-2655501-2594751","U00361","Navrat do budoucnosti kolekce 1.-3. 7BD (UHD+BD) (remasterovana verze) - digipack / Back to the Future 35th Anniversary Trilogy (Tschechische Version)","1","amazon.de","Verkäufer","Starnberg","Bayern","82319","","69,99","0","7,00","0","0","0","0","0","-12,36","0","0","0","64,63" +"23.11.2020 08:34:59 UTC","14404032282","Bestellung","306-6495503-2009924","55-DJY4-FR1092","Tescoma 631640 Förmchen für gefülltes Gebäck Bienenkörbchen DELICIA, Muffin-Backform","1","amazon.de","Verkäufer","Wien","","1230","","1,90","0","5,00","0","0","0","0","0","-1,04","0","0","0","5,86" +"23.11.2020 08:35:04 UTC","14404032282","Bestellung","304-7432017-2077163","55-DJY4-FR1045","Tescoma Ausstecher, grün/gelb/rot, 23 x 14 x 3.6 cm","1","amazon.de","Verkäufer","Liebenfels","Austria","9556","","8,05","0","5,00","0","0","0","0","0","-1,96","0","0","0","11,09" +"23.11.2020 08:35:14 UTC","14404032282","Bestellung","028-3400158-0998748","55-DJY4-FR1045","Tescoma Ausstecher, grün/gelb/rot, 23 x 14 x 3.6 cm","1","amazon.de","Verkäufer","Traismauer","Österreich","3133","","8,05","0","5,00","0","0","0","0","0","-1,96","0","0","0","11,09" +"23.11.2020 08:37:30 UTC","14404032282","Bestellung","303-2979894-2272363","TF-0N8B-BKXE","Gebäckkugeln mit Honig""Marlenka"", tiefgefroren 235g","1","amazon.de","Verkäufer","Reinach","Aargau","5734","","8,99","0","4,00","0","0","0","0","0","-1,95","0","0","0","11,04" +"23.11.2020 08:37:30 UTC","14404032282","Bestellung","303-2979894-2272363","CJ-E99W-P03E","MARLENKA Honigkuchen mit Nüssen (1 x 800g)","1","amazon.de","Verkäufer","Reinach","Aargau","5734","","19,99","0","4,00","0","0","0","0","0","-3,60","0","0","0","20,39" +"23.11.2020 08:37:40 UTC","14404032282","Bestellung","305-3789960-9523525","55-DJY4-FR1045","Tescoma Ausstecher, grün/gelb/rot, 23 x 14 x 3.6 cm","1","amazon.de","Verkäufer","pertisau","tirol","6213","","8,05","0","5,00","0","0","0","0","0","-1,96","0","0","0","11,09" +"23.11.2020 08:38:01 UTC","14404032282","Bestellung","304-6849894-2397137","4D-KJ1I-W1PG","80/80 Největší hity 1964-2019 (80/80 Greatest hits of 1964-2019)","1","amazon.de","Verkäufer","Kamen","","59174","","28,98","0","6,00","0","0","0","0","0","-6,06","0","0","0","28,92" +"23.11.2020 08:38:11 UTC","14404032282","Bestellung","028-3868455-2398741","55-DJY4-FR255","Tescoma Maronizange","1","amazon.de","Verkäufer","Wien","","1050","","13,99","0","5,00","0","0","0","0","0","-2,85","0","0","0","16,14" +"23.11.2020 08:38:42 UTC","14404032282","Bestellung","305-9800279-1529141","55-KOH-FR6578","Koh-I-NOOR 3222 Contour braun Farbige Zeichenstifte rund, braun (Box von 12)","1","amazon.de","Verkäufer","Hannover","Niedersachsen","30629","","2,30","0","6,00","0","0","0","0","0","-1,25","0","0","0","7,05" +"23.11.2020 08:39:56 UTC","14404032282","Bestellung","302-4624893-6189945","UD-P28D-KCJK","Alpa Windsor Rasierwasser (blau","10","amazon.de","Verkäufer","Hennef (Sieg)","Nordrhein-Westfalen","53773","","49,90","0","15,00","0","0","0","0","0","-5,20","0","0","0","59,70" +"23.11.2020 08:40:21 UTC","14404032282","Bestellung","302-5780122-1044315","55-DJY4-FR1092","Tescoma 631640 Förmchen für gefülltes Gebäck Bienenkörbchen DELICIA, Muffin-Backform","2","amazon.de","Verkäufer","Zistersdorf","Österreich","2225","","3,80","0","6,00","0","0","0","0","0","-1,48","0","0","0","8,32" +"23.11.2020 08:40:32 UTC","14404032282","Bestellung","305-6191492-3995501","FZ-YNNN-E0Y2","Tescoma Topf, silikon, Silber, 33.5 x 12.5 x 16 cm","1","amazon.de","Verkäufer","Wiehl","","51674","","39,00","0","6,00","0","0","0","0","0","-6,75","0","0","0","38,25" +"23.11.2020 08:40:35 UTC","14404032282","Bestellung","305-0176196-8891548","DS-J30Z-RP03","Kolekce filmu dvojice Voskovec + Werich","1","amazon.de","Verkäufer","Nürnberg","","90443","","25,24","0","6,00","0","0","0","0","0","-5,50","0","0","0","25,74" +"23.11.2020 08:40:50 UTC","14404032282","Bestellung","303-4575614-3458735","55-DJY4-FR1045","Tescoma Ausstecher, grün/gelb/rot, 23 x 14 x 3.6 cm","1","amazon.de","Verkäufer","Wien","","1220","","8,05","0","5,00","0","0","0","0","0","-1,96","0","0","0","11,09" +"23.11.2020 08:42:17 UTC","14404032282","Bestellung","306-6866445-4042723","55-DJY4-FR1045","Tescoma Ausstecher, grün/gelb/rot, 23 x 14 x 3.6 cm","1","amazon.de","Verkäufer","Vienna, Austria","","1230","","8,05","0","5,00","0","0","0","0","0","-1,96","0","0","0","11,09" +"24.11.2020 01:47:50 UTC","14489942482","Übertrag","","","An Konto mit der Endung: 907","","","","","","","","0","0","0","0","0","0","0","0","0","0","0","-1.891,05","-1.891,05" +"25.11.2020 07:56:53 UTC","14489942482","Bestellung","302-5736631-5029932","55-DJY4-FR1092","Tescoma 631640 Förmchen für gefülltes Gebäck Bienenkörbchen DELICIA, Muffin-Backform","1","amazon.de","Verkäufer","kindberg","steiermark","8650","","1,90","0","5,00","0","0","0","0","0","-1,04","0","0","0","5,86" +"25.11.2020 07:57:40 UTC","14489942482","Bestellung","306-6357347-6049950","MF-U6D2-RLQO","Crema Reafirmante de Células - Ojos y Labios - BT Cell - Dermacol","3","amazon.de","Verkäufer","Geldern","","47608","","29,97","0","8,00","0","0","0","0","0","-5,70","0","0","0","32,27" +"25.11.2020 07:59:25 UTC","14489942482","Bestellung","028-5629240-5513955","55-DJY4-NY1045","Tescoma Ausstecher, grün/gelb/rot, 23 x 14 x 3.6 cm","1","amazon.de","Verkäufer","Weil am Rhein","Badenwürttemberg","79576","","13,71","0","6,00","0","0","0","0","0","-2,96","0","0","0","16,75" +"25.11.2020 08:00:26 UTC","14489942482","Bestellung","028-9432221-8697102","55-DJY4-FR1045","Tescoma Ausstecher, grün/gelb/rot, 23 x 14 x 3.6 cm","1","amazon.de","Verkäufer","wagenfeld","niedersachsen","49419","","8,05","0","6,00","0","0","0","0","0","-2,11","0","0","0","11,94" +"25.11.2020 08:00:26 UTC","14489942482","Bestellung","303-4543185-7154737","K8-1VIZ-GGIV","Indulona Marigold","1","amazon.de","Verkäufer","Klaus","Vorarlberg","6833","","9,99","0","1,76","0","0","0","0","0","-1,76","0","0","0","9,99" +"25.11.2020 08:00:26 UTC","14489942482","Bestellung","303-4543185-7154737","0H-LNUQ-CVIF","Indulona Universal Hand Protection Cream 100 ml / 92 g by Indulona","2","amazon.de","Verkäufer","Klaus","Vorarlberg","6833","","15,98","0","5,33","0","0","0","0","0","-3,20","0","0","0","18,11" +"25.11.2020 08:00:52 UTC","14489942482","Bestellung","306-0055097-1393141","55-DJY4-FR1045","Tescoma Ausstecher, grün/gelb/rot, 23 x 14 x 3.6 cm","1","amazon.de","Verkäufer","Weißenfels","","06667","","8,05","0","6,00","0","0","0","0","0","-2,11","0","0","0","11,94" +"25.11.2020 08:01:03 UTC","14489942482","Bestellung","305-5833625-8244351","6B-WDC9-DGIG","Sentiment","1","amazon.de","Verkäufer","Leipzig","","04177","","18,99","0","6,00","0","0","0","0","0","-4,56","0","0","0","20,43" +"25.11.2020 08:01:36 UTC","14489942482","Bestellung","302-0572128-3891521","55-DJY4-FR1045","Tescoma Ausstecher, grün/gelb/rot, 23 x 14 x 3.6 cm","1","amazon.de","Verkäufer","Lans","Tirol","6072","","8,05","0","5,00","0","0","0","0","0","-1,96","0","0","0","11,09" +"25.11.2020 08:01:42 UTC","14489942482","Bestellung","303-0900584-5737138","55-DJY4-FR1045","Tescoma Ausstecher, grün/gelb/rot, 23 x 14 x 3.6 cm","1","amazon.de","Verkäufer","Feldkirchen","","9560","","8,05","0","5,00","0","0","0","0","0","-1,96","0","0","0","11,09" +"25.11.2020 08:04:26 UTC","14489942482","Bestellung","028-7818778-0586766","55-DJY4-FR1045","Tescoma Ausstecher, grün/gelb/rot, 23 x 14 x 3.6 cm","1","amazon.de","Verkäufer","Eslarn","Bayern","92693","","8,05","0","6,00","0","0","0","0","0","-2,11","0","0","0","11,94" +"25.11.2020 08:04:43 UTC","14489942482","Bestellung","304-8362881-2397958","55-DJY4-FR1045","Tescoma Ausstecher, grün/gelb/rot, 23 x 14 x 3.6 cm","1","amazon.de","Verkäufer","Hanshagen","Mecklenburg-Vorpommern","17509","","8,05","0","6,00","0","0","0","0","0","-2,11","0","0","0","11,94" +"25.11.2020 08:04:43 UTC","14489942482","Bestellung","028-0729725-5237956","55-DJY4-FR1092","Tescoma 631640 Förmchen für gefülltes Gebäck Bienenkörbchen DELICIA, Muffin-Backform","2","amazon.de","Verkäufer","Fötschach","","8463","","3,80","0","6,00","0","0","0","0","0","-1,48","0","0","0","8,32" +"25.11.2020 08:08:16 UTC","14489942482","Bestellung","306-1404919-8577115","OJ-MJ1H-5ED1","Celkem jina","1","amazon.de","Verkäufer","Strážnice","","69662","","22,93","0","5,00","0","0","0","0","0","-5,00","0","0","0","22,93" +"25.11.2020 08:08:26 UTC","14489942482","Bestellung","028-5934760-7371566","55-DJY4-FR1045","Tescoma Ausstecher, grün/gelb/rot, 23 x 14 x 3.6 cm","1","amazon.de","Verkäufer","Gramatneusiedl","","2440","","8,05","0","5,00","0","0","0","0","0","-1,96","0","0","0","11,09" +"25.11.2020 08:08:33 UTC","14489942482","Bestellung","303-9133361-9863506","55-DJY4-FR1045","Tescoma Ausstecher, grün/gelb/rot, 23 x 14 x 3.6 cm","1","amazon.de","Verkäufer","Lage","","32791","","8,05","0","6,00","0","0","0","0","0","-2,11","0","0","0","11,94" +"25.11.2020 08:09:27 UTC","14489942482","Bestellung","302-0330053-5635505","55-DJY4-FR1045","Tescoma Ausstecher, grün/gelb/rot, 23 x 14 x 3.6 cm","1","amazon.de","Verkäufer","Zirl","Tirol","6170","","8,05","0","5,00","0","0","0","0","0","-1,96","0","0","0","11,09" +"25.11.2020 08:09:34 UTC","14489942482","Bestellung","028-3291087-2213117","55-DJY4-FR1045","Tescoma Ausstecher, grün/gelb/rot, 23 x 14 x 3.6 cm","1","amazon.de","Verkäufer","Holzkirchen","Bayern","83607","","8,05","0","6,00","0","0","0","0","0","-2,11","0","0","0","11,94" +"25.11.2020 08:09:40 UTC","14489942482","Bestellung","305-3769021-1119531","55-DJY4-FR1045","Tescoma Ausstecher, grün/gelb/rot, 23 x 14 x 3.6 cm","1","amazon.de","Verkäufer","Berlin","Berlin","10243","","8,05","0","6,00","0","0","0","0","0","-2,11","0","0","0","11,94" +"25.11.2020 08:10:55 UTC","14489942482","Bestellung","304-6515452-4614710","55-DJY4-FR1045","Tescoma Ausstecher, grün/gelb/rot, 23 x 14 x 3.6 cm","1","amazon.de","Verkäufer","Paderborn","Nordrhein-Westfalen","33100","","8,05","0","6,00","0","0","0","0","0","-2,11","0","0","0","11,94" +"27.11.2020 07:20:39 UTC","14489942482","Bestellung","305-2600241-9837916","55-DJY4-FR1045","Tescoma Ausstecher, grün/gelb/rot, 23 x 14 x 3.6 cm","1","amazon.de","Verkäufer","Karlsruhe","Baden-Württemberg","76137","","8,05","0","6,00","0","0","0","0","0","-2,11","0","0","0","11,94" +"27.11.2020 07:21:01 UTC","14489942482","Bestellung","305-6168039-5911519","55-DJY4-FR1045","Tescoma Ausstecher, grün/gelb/rot, 23 x 14 x 3.6 cm","1","amazon.de","Verkäufer","Rheinböllen","Rhein land Pfalz","55494","","8,05","0","6,00","0","0","0","0","0","-2,11","0","0","0","11,94" +"27.11.2020 07:21:20 UTC","14489942482","Bestellung","028-0671652-1756349","55-DJY4-FR1045","Tescoma Ausstecher, grün/gelb/rot, 23 x 14 x 3.6 cm","1","amazon.de","Verkäufer","Hamburg","Hamburg","22419","","8,05","0","6,00","0","0","0","0","0","-2,11","0","0","0","11,94" +"27.11.2020 07:22:08 UTC","14489942482","Bestellung","302-1278517-5045146","55-DJY4-FR1045","Tescoma Ausstecher, grün/gelb/rot, 23 x 14 x 3.6 cm","1","amazon.de","Verkäufer","Bautzen","Sachsen","02625","","8,05","0","6,00","0","0","0","0","0","-2,11","0","0","0","11,94" +"27.11.2020 07:24:17 UTC","14489942482","Bestellung","306-3901102-0341111","2C-GOL4-D73S","Tri Orisky pro Popelku (Drei Haselnüsse für Aschenbrödel) Remastered","1","amazon.de","Verkäufer","wien","","1200","","14,99","0","5,00","0","0","0","0","0","-3,81","0","0","0","16,18" +"27.11.2020 07:24:24 UTC","14489942482","Bestellung","305-5923891-0662757","R4-R9UJ-ORN8","Filthy / Spina","1","amazon.de","Verkäufer","Pixendorf","","3441","","19,99","0","5,00","0","0","0","0","0","-4,56","0","0","0","20,43" +"27.11.2020 07:26:03 UTC","14489942482","Bestellung","028-4143821-6689149","55-DJY4-FR1045","Tescoma Ausstecher, grün/gelb/rot, 23 x 14 x 3.6 cm","1","amazon.de","Verkäufer","Eckernförde","Schleswig-Holstein","24340","","8,05","0","6,00","0","0","0","0","0","-2,11","0","0","0","11,94" +"27.11.2020 07:26:19 UTC","14489942482","Bestellung","306-0282424-0943571","55-DJY4-FR1045","Tescoma Ausstecher, grün/gelb/rot, 23 x 14 x 3.6 cm","1","amazon.de","Verkäufer","Lassee","Niederösterreich","2291","","8,05","0","5,00","0","0","0","0","0","-1,96","0","0","0","11,09" +"27.11.2020 07:26:35 UTC","14489942482","Bestellung","302-3732555-3666755","55-DJY4-FR579","Tescoma 428798.00 Muskatmühle mit Keramikmahlwerk","1","amazon.de","Verkäufer","Rain","Bayern","86641","","16,65","0","6,00","0","0","0","0","0","-3,40","0","0","0","19,25" +"27.11.2020 07:26:48 UTC","14489942482","Bestellung","303-0736986-8226766","55-DJY4-FR1045","Tescoma Ausstecher, grün/gelb/rot, 23 x 14 x 3.6 cm","1","amazon.de","Verkäufer","Friesenheim","Baden-Württemberg","77948","","8,05","0","6,00","0","0","0","0","0","-2,11","0","0","0","11,94" +"27.11.2020 07:30:31 UTC","14489942482","Bestellung","302-6134246-5309920","4D-KJ1I-W1PG","80/80 Největší hity 1964-2019 (80/80 Greatest hits of 1964-2019)","1","amazon.de","Verkäufer","Friesoythe","Niedersachsen","26169","","28,98","0","6,00","0","0","0","0","0","-6,06","0","0","0","28,92" +"27.11.2020 07:30:57 UTC","14489942482","Bestellung","303-2903764-7754704","56-Y6GZ-IFFY","Princ Bajaja (Prinz Bajaja)","1","amazon.de","Verkäufer","Welzow","Brandenburg","03119","","9,99","0","6,00","0","0","0","0","0","-3,21","0","0","0","12,78" +"27.11.2020 07:31:10 UTC","14489942482","Bestellung","302-9664783-1655556","7R-YAAG-R461","Tescoma 631643 Delicia Kuchenständer mit Wabenmuster, 24,5 x 20,5 x 5 cm","1","amazon.de","Verkäufer","Eggendorf in Traunkreis","Oberösterreich","4622","","20,68","0","5,00","0","0","0","0","0","-3,85","0","0","0","21,83" +"27.11.2020 07:32:17 UTC","14489942482","Bestellung","303-7185699-8448336","4J-JU3N-K8RH","S Tebou Me Bavi Svet","1","amazon.de","Verkäufer","Wien","Wien","1210","","3,00","0","5,00","0","0","0","0","0","-2,01","0","0","0","5,99" +"27.11.2020 07:32:20 UTC","14489942482","Bestellung","302-7023667-8676316","LH-6PO7-9820","DVD FILMY - Kolekce Husite: Jan Hus + Jan Rohac z Dube + Jan Zizka + Proti vsem","1","amazon.de","Verkäufer","Bruchköbel","","63486","","23,99","0","6,00","0","0","0","0","0","-5,31","0","0","0","24,68" +"27.11.2020 07:32:20 UTC","14489942482","Bestellung","303-5610517-6417138","ES-HCQF-775W","Tri orisky pro Popelku (Drei Haselnüsse für Aschenbrödel (Three Wishes for Cinderella)) [paper sleeve]","1","amazon.de","Verkäufer","Griesingen","Baden-Württemberg","89608","","4,89","0","6,00","0","0","0","0","0","-2,44","0","0","0","8,45" +"27.11.2020 07:32:34 UTC","14489942482","Bestellung","303-9614461-1957943","55-DJY4-FR1045","Tescoma Ausstecher, grün/gelb/rot, 23 x 14 x 3.6 cm","1","amazon.de","Verkäufer","Essen","NRW","45357","","8,05","0","6,00","0","0","0","0","0","-2,11","0","0","0","11,94" +"27.11.2020 07:33:07 UTC","14489942482","Bestellung","302-0416682-8227513","9Q-CRMT-W8N2","Cisaruv pekar - Pekaruv cisar [paper sleeve]","1","amazon.de","Verkäufer","Meiningen","Thüringen","98617","","9,99","0","6,00","0","0","0","0","0","-3,21","0","0","0","12,78" +"27.11.2020 07:33:07 UTC","14489942482","Bestellung","302-5467155-7616322","07-8VMJ-43VW","DERMACOL HOHE ABDECKUNG MAKE-UP ABDECKUNG STIFTUNG HYPOALLERGENIC FUNKY PLANET SET MIT MARKEN FUNKY PLANET SCHWAMM FÜR PERFEKTE HOLLYWOOD MAKE-UP (21","1","amazon.de","Verkäufer","Mattighofen","Oberösterreich","5230","","14,99","0","5,00","0","0","0","0","0","-3,00","0","0","0","16,99" +"27.11.2020 07:40:06 UTC","14489942482","Bestellung","028-4915916-7706714","55-DJY4-FR1045","Tescoma Ausstecher, grün/gelb/rot, 23 x 14 x 3.6 cm","1","amazon.de","Verkäufer","Essen","Nordrhein-Westfalen","45279","","8,05","0","6,00","0","0","0","0","0","-2,11","0","0","0","11,94" +"30.11.2020 08:46:59 UTC","14489942482","Bestellung","304-8560646-2711526","55-DJY4-FR1045","Tescoma Ausstecher, grün/gelb/rot, 23 x 14 x 3.6 cm","1","amazon.de","Verkäufer","Absam","Tirol","6067","","8,05","0","5,00","0","0","0","0","0","-1,96","0","0","0","11,09" +"30.11.2020 08:46:59 UTC","14489942482","Bestellung","303-5742138-7340315","07-8VMJ-43VW","DERMACOL HOHE ABDECKUNG MAKE-UP ABDECKUNG STIFTUNG HYPOALLERGENIC FUNKY PLANET SET MIT MARKEN FUNKY PLANET SCHWAMM FÜR PERFEKTE HOLLYWOOD MAKE-UP (21","1","amazon.de","Verkäufer","Schnifis","Österreich","6822","","14,99","0","5,00","0","0","0","0","0","-3,00","0","0","0","16,99" +"30.11.2020 08:47:20 UTC","14489942482","Bestellung","302-8022930-1278740","SI-591T-LL3L","Alpa Kiefer Franzbranntwein Gel 100ml - 3er Pack","1","amazon.de","Verkäufer","HARDISLEBEN","Thüringen","99628","","14,99","0","6,00","0","0","0","0","0","-3,15","0","0","0","17,84" +"30.11.2020 08:47:26 UTC","14489942482","Bestellung","028-5072320-4675526","55-DJY4-FR1045","Tescoma Ausstecher, grün/gelb/rot, 23 x 14 x 3.6 cm","1","amazon.de","Verkäufer","Olzheim","","54597","","8,05","0","6,00","0","0","0","0","0","-2,11","0","0","0","11,94" +"30.11.2020 08:49:04 UTC","14489942482","Bestellung","028-4811761-4071544","55-DJY4-FR1045","Tescoma Ausstecher, grün/gelb/rot, 23 x 14 x 3.6 cm","1","amazon.de","Verkäufer","Gnadendorf","Niederösterreich","2152","","8,05","0","5,00","0","0","0","0","0","-1,96","0","0","0","11,09" +"30.11.2020 08:50:01 UTC","14489942482","Bestellung","304-7834744-1015568","LO-ILR6-CLN9","Rockfield By Chinaski (0001-01-01)","1","amazon.de","Verkäufer","Machern","","04827","","24,08","0","6,00","0","0","0","0","0","-5,32","0","0","0","24,76" +"30.11.2020 08:50:05 UTC","14489942482","Bestellung","303-2159737-5946757","QU-SSL8-9UGD","Pat a Mat Kolekce 5-8","1","amazon.de","Verkäufer","Müglitztal","Sachsen","01809","","49,99","0","6,00","0","0","0","0","0","-9,21","0","0","0","46,78" +"30.11.2020 08:50:48 UTC","14489942482","Bestellung","303-2879775-9971503","4D-KJ1I-W1PG","80/80 Největší hity 1964-2019 (80/80 Greatest hits of 1964-2019)","1","amazon.de","Verkäufer","Passau","Bayern","94036","","28,98","0","6,00","0","0","0","0","0","-6,06","0","0","0","28,92" +"30.11.2020 08:51:20 UTC","14489942482","Bestellung","306-6441814-9312357","CM-VWCP-05PC","Pat a Mat Kolekce 1-4","1","amazon.de","Verkäufer","Nordhorn","Niedersachsen","48531","","29,99","0","6,00","0","0","0","0","0","-6,21","0","0","0","29,78" +"30.11.2020 08:53:39 UTC","14489942482","Bestellung","304-0036366-0345915","4D-KJ1I-W1PG","80/80 Největší hity 1964-2019 (80/80 Greatest hits of 1964-2019)","2","amazon.de","Verkäufer","Zwiesel","Bayern","94227","","57,96","0","7,00","0","0","0","0","0","-11,36","0","0","0","53,60" +"30.11.2020 08:54:53 UTC","14489942482","Bestellung","303-7920831-4900311","DE-SKWE-LIID","Rad satenovych masli (Zauberhafte Erbschaft)","1","amazon.de","Verkäufer","Wien","","1130","","7,99","0","5,00","0","0","0","0","0","-2,76","0","0","0","10,23" +"30.11.2020 08:55:03 UTC","14489942482","Bestellung","306-7917229-4918725","V1-KUR8-S3VP","Jan Hus (3DVD+CD)","1","amazon.de","Verkäufer","Luxemburg","","0121","","39,99","0","7,00","0","0","0","0","0","-7,86","0","0","0","39,13" +"30.11.2020 08:57:16 UTC","14489942482","Bestellung","303-2547939-7083543","GN-CT9K-KMJ2","Carovne dedictvi (Zauberhafte Erbschaft) paper sleeve","1","amazon.de","Verkäufer","Wien","","1130","","5,69","0","5,00","0","0","0","0","0","-2,41","0","0","0","8,28" +"30.11.2020 09:01:50 UTC","14489942482","Bestellung","304-5550727-3249151","XW-4BBL-8OE3","Once Upon A Time There Was A King (Byl Jednou Jeden Kral...) [NON-USA FORMAT, PAL, Reg.0 Import - Czech Republic]","1","amazon.de","Verkäufer","EDINBURGH","","EH3 9GR","","17,99","0","7,00","0","0","0","0","0","-4,56","0","0","0","20,43" +"30.11.2020 09:02:56 UTC","14489942482","Bestellung","303-8421550-1145917","JE-HIVN-S2SC","Vanoce Ve Zlate Praze","1","amazon.de","Verkäufer","Weinböhla","Sachsen","01689","","39,80","0","6,00","0","0","0","0","0","-7,68","0","0","0","38,12" +"30.11.2020 09:04:51 UTC","14489942482","Bestellung","302-4323259-8529114","7R-YAAG-R461","Tescoma 631643 Ständer für Bienenwabenmuster, Kunststoff","1","amazon.de","Verkäufer","Wien","","1220","","20,68","0","3,00","0","0","0","0","0","-3,55","0","0","0","20,13" +"30.11.2020 09:04:51 UTC","14489942482","Bestellung","302-4323259-8529114","55-DJY4-FR1092","Tescoma 631640 Förmchen für gefülltes Gebäck Bienenkörbchen DELICIA, Muffin-Backform","1","amazon.de","Verkäufer","Wien","","1220","","1,90","0","3,00","0","0","0","0","0","-0,74","0","0","0","4,16" +"30.11.2020 09:05:47 UTC","14489942482","Bestellung","306-2244759-4119535","55-DJY4-FR1045","Tescoma Ausstecher, grün/gelb/rot, 23 x 14 x 3.6 cm","1","amazon.de","Verkäufer","Dugo Selo","","10370","","8,05","0","5,00","0","0","0","0","0","-1,96","0","0","0","11,09" +"30.11.2020 09:06:01 UTC","14489942482","Bestellung","305-0528176-1853901","55-DJY4-FR1045","Tescoma Ausstecher, grün/gelb/rot, 23 x 14 x 3.6 cm","1","amazon.de","Verkäufer","Hollabrunn","NÖ","2020","","8,05","0","5,00","0","0","0","0","0","-1,96","0","0","0","11,09" +"30.11.2020 09:06:34 UTC","14489942482","Bestellung","303-8534035-3724327","4D-KJ1I-W1PG","80/80 Největší hity 1964-2019 (80/80 Greatest hits of 1964-2019)","1","amazon.de","Verkäufer","Glauchau","Sachsen","08371","","28,98","0","6,00","0","0","0","0","0","-6,06","0","0","0","28,92" +"30.11.2020 09:06:48 UTC","14489942482","Bestellung","303-0531411-8093132","55-DJY4-FR1068","Tescoma Ausstechform, Metall, Silber, 5.5 cm","1","amazon.de","Verkäufer","Gundelfingen","","79194","","5,00","0","6,00","0","0","0","0","0","-1,65","0","0","0","9,35" +"30.11.2020 09:08:53 UTC","14489942482","Bestellung","306-5110239-6755541","4D-KJ1I-W1PG","80/80 Největší hity 1964-2019 (80/80 Greatest hits of 1964-2019)","1","amazon.de","Verkäufer","Seeheim-Jugenheim","","64342","","28,98","0","6,00","0","0","0","0","0","-6,06","0","0","0","28,92" +"30.11.2020 09:09:21 UTC","14489942482","Bestellung","028-8766040-5669135","55-DJY4-FR1045","Tescoma Ausstecher, grün/gelb/rot, 23 x 14 x 3.6 cm","1","amazon.de","Verkäufer","Dornbirn","Vorarlberg","6850","","8,05","0","5,00","0","0","0","0","0","-1,96","0","0","0","11,09" +"30.11.2020 09:09:31 UTC","14489942482","Bestellung","306-0377713-3123508","55-DJY4-FR1092","Tescoma 631640 Förmchen für gefülltes Gebäck Bienenkörbchen DELICIA, Muffin-Backform","1","amazon.de","Verkäufer","Kitzeck i.S.","Steiermark","8442","","1,90","0","5,00","0","0","0","0","0","-1,04","0","0","0","5,86" +"30.11.2020 09:11:48 UTC","14489942482","Bestellung","303-7846836-7205130","55-DJY4-FR1045","Tescoma Ausstecher, grün/gelb/rot, 23 x 14 x 3.6 cm","1","amazon.de","Verkäufer","Kiens","Bozen","39030","","8,05","0","7,00","0","0","0","0","0","-2,26","0","0","0","12,79" +"30.11.2020 09:11:51 UTC","14489942482","Bestellung","303-8159881-3050766","L1-LELP-KG6I","MARLENKA® HONEY CAKE WITH COCOA","1","amazon.de","Verkäufer","Salzburg","Salzburg","5020","","15,99","0","5,00","0","0","0","0","0","-3,15","0","0","0","17,84" +"30.11.2020 09:12:08 UTC","14489942482","Bestellung","028-6457283-9660302","IF-MHXO-DLZR","Krecek v nocni kosili (Hamster in a Nightshirt)","1","amazon.de","Verkäufer","Eching","Bayern","85386","","19,48","0","6,00","0","0","0","0","0","-4,63","0","0","0","20,85" +"30.11.2020 09:13:49 UTC","14489942482","Bestellung","028-2356686-4549966","55-DJY4-FR722","Tescoma Backblech flach DELÍCIA 40x36 cm, ohne Rand","2","amazon.de","Verkäufer","Ermenswil","SG","8734","","48,26","0","8,00","0","0","0","0","0","-8,44","0","0","0","47,82" +"30.11.2020 09:14:11 UTC","14489942482","Bestellung","028-5794149-3265134","L6-YDX0-MI20","Treti princ","1","amazon.de","Verkäufer","lychen","","17279","","6,94","0","2,67","0","0","0","0","0","-2,25","0","0","0","7,36" +"30.11.2020 09:14:11 UTC","14489942482","Bestellung","028-5794149-3265134","AQ-4JUI-VT1P","Princ a Vecernice / Prince and Vesper DVD English subtitles","1","amazon.de","Verkäufer","lychen","","17279","","7,99","0","2,67","0","0","0","0","0","-2,41","0","0","0","8,25" +"30.11.2020 09:14:11 UTC","14489942482","Bestellung","028-5794149-3265134","22-8887-XFEN","Tri Orisky Pro Popelku (Three Wishes for Cinderella)","1","amazon.de","Verkäufer","lychen","","17279","","5,62","0","2,66","0","0","0","0","0","-2,05","0","0","0","6,23" +"30.11.2020 09:14:25 UTC","14489942482","Bestellung","306-0616851-0931568","PL-6IZQ-FRR2","Slunce, Seno, Jahody by Pavel Kikincuk","1","amazon.de","Verkäufer","Gundersheim","Rheinland-Pfalz","67598","","7,99","0","6,00","0","0","0","0","0","-2,91","0","0","0","11,08" +"30.11.2020 09:14:39 UTC","14489942482","Bestellung","305-9913770-6773136","55-DJY4-FR1045","Tescoma Ausstecher, grün/gelb/rot, 23 x 14 x 3.6 cm","1","amazon.de","Verkäufer","hamburg","","22307","","8,05","0","6,00","0","0","0","0","0","-2,11","0","0","0","11,94" +"30.11.2020 09:15:24 UTC","14489942482","Bestellung","302-8947628-7988305","55-KOH-FR5182","KOH-I-NOOR Mondeluz Aquarellstifte im Metalletui, 72 Stück","1","amazon.de","Verkäufer","Eppeldorf","","9365","","48,27","0","7,00","0","0","0","0","0","-8,29","0","0","0","46,98" +"30.11.2020 09:15:42 UTC","14489942482","Bestellung","305-3224607-6537103","55-DJY4-FR1045","Tescoma Ausstecher, grün/gelb/rot, 23 x 14 x 3.6 cm","1","amazon.de","Verkäufer","Liezen","Stm.","8940","","8,05","0","5,00","0","0","0","0","0","-1,96","0","0","0","11,09" +"30.11.2020 09:16:56 UTC","14489942482","Bestellung","028-7509733-8943539","T1-5IEK-YN3N","Milada","1","amazon.de","Verkäufer","Wien","Wien","1030","","16,92","0","5,00","0","0","0","0","0","-4,10","0","0","0","17,82" +"30.11.2020 09:17:06 UTC","14489942482","Bestellung","304-2821043-0028334","55-DJY4-FR452","Tescoma Presto Kochgabel, Graphit","1","amazon.de","Verkäufer","Dresden","Sachsen","01237","","11,49","0","6,00","0","0","0","0","0","-2,62","0","0","0","14,87" diff --git a/Mapp.BusinessLogic.Transactions.Tests/TestData/AmazonES.csv b/Mapp.BusinessLogic.Transactions.Tests/TestData/AmazonES.csv new file mode 100644 index 0000000..98b437c --- /dev/null +++ b/Mapp.BusinessLogic.Transactions.Tests/TestData/AmazonES.csv @@ -0,0 +1,46 @@ +"Incluye transacciones del Marketplace de Amazon, Logística de Amazon y Amazon Webstore" +"Todos los importes en EUR, a menos que se especifique lo contrario" +"Definiciones:" +"Tarifas por venta: incluyen tarifas variables por cierre de venta y tarifas por referencia." +"Tarifas de otras transacciones: incluye reintegros de los cargos por envío, retenciones de envío y tarifas de impuestos sobre ventas." +"Otro: incluye importes de transacciones distintas del pedido. Para mas información, consulta las columnas ""Tipo"" y ""Descripción"" de cada número de pedido." +"fecha y hora","identificador de pago","tipo","número de pedido","sku","descripción","cantidad","web de Amazon","gestión logística","ciudad de procedencia del pedido","comunidad autónoma de procedencia del pedido","código postal de procedencia del pedido","Formulario de recaudación de impuestos","ventas de productos","product sales tax","abonos de envío","impuestos por abonos de envío","abonos de envoltorio para regalo","giftwrap credits tax","devoluciones promocionales","promotional rebates tax","tarifas de venta","tarifas de Logística de Amazon","tarifas de otras transacciones","otro","total" +"2 nov. 2020 7:59:51 UTC","14320207962","Pedido","403-6765431-5690742","SW-ULXV-VWAO","dermacol Make de Upo Cover - El Belleza geheimis la Stars - Color Claro 209","1","amazon.es","Vendedor","Aviles","Asturias","33401","","9,99","0","7,00","0","0","0","0","0","-2,55","0","0","0","14,44" +"6 nov. 2020 6:41:47 UTC","14320207962","Pedido","405-2259891-4567511","55-KOH-FR5107","Herlitz - Bolsas de plastico, A5, transparente, 25 unidades","1","amazon.es","Vendedor","Barcelona","Barcelona","08026","","3,45","0","7,00","0","0","0","0","0","-1,57","0","0","0","8,88" +"6 nov. 2020 6:48:51 UTC","14320207962","Pedido","408-8819784-4493143","55-KOH-FR6310","KOH-I-NOOR - Minas de grafito, 6B, 2 mm","1","amazon.es","Vendedor","Ciudad Real","Ciudad Real","13004","","2,30","0","7,00","0","0","0","0","0","-1,40","0","0","0","7,90" +"6 nov. 2020 6:50:51 UTC","14320207962","Pedido","404-7185026-2332307","VJ-9VWO-UMPK","Dermacol - Crema de Día - Rellenadora de Arrugas - Hialuronterapia - HT 3D - 1 unidad","1","amazon.es","Vendedor","Llanos de Alba","Leon","24649","","14,99","0","7,00","0","0","0","0","0","-3,30","0","0","0","18,69" +"9 nov. 2020 7:08:39 UTC","14320207962","Pedido","408-1651165-3126758","07-8VMJ-43VW","Dermacol Base de maquillaje, muy cubriente, hipoalergénica, con esponja","1","amazon.es","Vendedor","Barcelona","Molins de Rei","08750","","9,99","0","7,00","0","0","0","0","0","-2,55","0","0","0","14,44" +"9 nov. 2020 7:12:16 UTC","14320207962","Pedido","404-8907384-6246740","55-KOH-FR6378","Koh-I-Noor - Lápiz de grafito (5H, 1 unidad)","1","amazon.es","Vendedor","Canals","Valencia","46650","","2,30","0","7,00","0","0","0","0","0","-1,40","0","0","0","7,90" +"10 nov. 2020 1:32:24 UTC","14403953832","Transferir","","","En la cuenta que termina en: 907","","","","","","","","0","0","0","0","0","0","0","0","0","0","0","-122,77","-122,77" +"11 nov. 2020 7:27:29 UTC","14403953832","Pedido","408-8666692-6242712","5J-7E5W-DIBT","DERMACOL ACNECOVER MAKEUP WITH CORRECTOR 4 30ML","1","amazon.es","Vendedor","zaragoza","zaragoza","50002","","11,99","0","7,00","0","0","0","0","0","-2,85","0","0","0","16,14" +"11 nov. 2020 7:29:06 UTC","14403953832","Pedido","404-7080890-4440366","55-KOH-FR1358","Koh-i-noor 4040/11 - Minas de recambio para lápices de 3,2 mm, color marrón","1","amazon.es","Vendedor","albolote","Granada","18220","","19,54","0","7,00","0","0","0","0","0","-3,98","0","0","0","22,56" +"11 nov. 2020 7:30:07 UTC","14403953832","Pedido","407-8810069-8213104","CJ-E99W-P03E","Medový dort Marlenka s o?íšky","1","amazon.es","Vendedor","Sant Jordi Palma","Baleares","07199","","24,99","0","7,00","0","0","0","0","0","-4,80","0","0","0","27,19" +"13 nov. 2020 7:45:07 UTC","14403953832","Pedido","403-6682895-4937930","LY-EY1R-A0G3","PASTEL DE MIEL CON CACAO MARLENKA® 100G","1","amazon.es","Vendedor","Bilbao","Pais Vasco","48015","","10,99","0","7,00","0","0","0","0","0","-2,70","0","0","0","15,29" +"13 nov. 2020 7:45:44 UTC","14403953832","Pedido","404-3986987-2113110","55-KOH-FR6307","Koh-I-Noor - Minas de grafito (5B, 2 mm)","1","amazon.es","Vendedor","Valencia","Valencia","46014","","3,45","0","7,00","0","0","0","0","0","-1,57","0","0","0","8,88" +"13 nov. 2020 7:49:31 UTC","14403953832","Pedido","404-4027028-7603565","55-KOH-FR6310","KOH-I-NOOR - Minas de grafito, 6B, 2 mm","1","amazon.es","Vendedor","Cieza","Murcia","30530","","2,30","0","7,00","0","0","0","0","0","-1,40","0","0","0","7,90" +"16 nov. 2020 8:03:26 UTC","14403953832","Pedido","407-5488965-1731554","55-KOH-FR0030","KOH-I-NOOR 016273900000 40 ml - oro pintura de color acrílico","1","amazon.es","Vendedor","valencia","valencia","46009","","3,99","0","7,00","0","0","0","0","0","-1,65","0","0","0","9,34" +"16 nov. 2020 8:04:50 UTC","14403953832","Pedido","402-0131547-1649939","KH-TAZW-V46N","Dermacol 218 - Funda para make Up Cover, hipoalergénica, para todos los tipos de piel","1","amazon.es","Vendedor","Hoya del campo, Abaran","Murcia","30559","","9,99","0","7,00","0","0","0","0","0","-2,55","0","0","0","14,44" +"16 nov. 2020 8:09:50 UTC","14403953832","Pedido","405-5928174-7515509","55-KOH-FR6310","KOH-I-NOOR - Minas de grafito, 6B, 2 mm","1","amazon.es","Vendedor","Pamplona","Navarra","31006","","2,30","0","7,00","0","0","0","0","0","-1,40","0","0","0","7,90" +"18 nov. 2020 7:45:54 UTC","14403953832","Pedido","403-7506714-5951511","55-KOH-FR1245","KOH-I-NOOR 4190 Juego de 6 de grafito minas para portaminas diammetro dureza HB 3,2 mm","1","amazon.es","Vendedor","Sevilla","Sevilla","41019","","5,75","0","7,00","0","0","0","0","0","-1,91","0","0","0","10,84" +"20 nov. 2020 7:39:55 UTC","14403953832","Pedido","171-8966959-7277161","55-KOH-FR5514","Koh-I-Noor 1417S0601KK - Tinta técnica para dibujo (6 unidades, 20 g)","1","amazon.es","Vendedor","TERRASSA","Barcelona","08224","","8,05","0","7,00","0","0","0","0","0","-2,26","0","0","0","12,79" +"20 nov. 2020 7:48:47 UTC","14403953832","Pedido","403-1847311-0063522","55-KOH-FR6308","KOH-I-NOOR - Minas de grafito, 8B, 2 mm","2","amazon.es","Vendedor","Madrid","Madrid","28224","","9,20","0","9,00","0","0","0","0","0","-2,74","0","0","0","15,46" +"20 nov. 2020 7:50:14 UTC","14403953832","Pedido","402-9317382-4023566","55-KOH-FR5514","Koh-I-Noor 1417S0601KK - Tinta técnica para dibujo (6 unidades, 20 g)","1","amazon.es","Vendedor","Torelló","Spain","08570","","8,05","0","7,00","0","0","0","0","0","-2,26","0","0","0","12,79" +"20 nov. 2020 7:52:11 UTC","14403953832","Pedido","402-7660038-2212321","WE-WF7I-QU7G","Dermacol Make-up Cover (base de maquillaje que cubre tatuajes y cicatrices), 221","1","amazon.es","Vendedor","Tortosa","Tortosa","43500","","9,99","0","7,00","0","0","0","0","0","-2,55","0","0","0","14,44" +"20 nov. 2020 13:57:38 UTC","14403953832","Reembolso","171-6776400-3329145","8T-JTCG-K49S","anshinto detalles sobre Dermacol impermeable de alta Covering ocultar Fil Base de maquillaje crema, tela, 210, talla única","1","amazon.es","Vendedor","Coslada","Madrid","28821","","-8,12","0","-7,00","0","0","0","0","0","1,82","0","0","0","-13,30" +"23 nov. 2020 8:25:34 UTC","14403953832","Pedido","403-9759039-5022748","55-KOH-FR5219","Gioconda Juego de carbón blanco (4 unidades, extra suave, medio, rígido), color blanco","1","amazon.es","Vendedor","Écatepec","Mexico","55120","","6,97","0","8,99","0","0","0","0","0","-2,39","0","0","0","13,57" +"23 nov. 2020 8:26:29 UTC","14403953832","Pedido","403-5601376-6160320","55-KOH-FR5219","Gioconda Juego de carbón blanco (4 unidades, extra suave, medio, rígido), color blanco","1","amazon.es","Vendedor","Écatepec","Mexico","55120","","6,97","0","8,99","0","0","0","0","0","-2,39","0","0","0","13,57" +"23 nov. 2020 8:26:48 UTC","14403953832","Pedido","408-7515419-1201920","55-DJY4-FR1544","Tescoma 707220 TAPA PARA GRILL PARTY TIME, Gris","1","amazon.es","Vendedor","Pasaia","gipuzkoa","20110","","59,00","0","7,00","0","0","0","0","0","-9,90","0","0","0","56,10" +"23 nov. 2020 8:30:40 UTC","14403953832","Pedido","171-3770028-8282729","JAP-AAU-0RJ","KOH-I-NOOR MAGIC - Juego de lápices de colores, diseño triangular, 24 unidades, incluye 2 gomas y 1 sacapuntas","1","amazon.es","Vendedor","Ripollet","Barcelona","08291","","36,99","0","7,00","0","0","0","0","0","-6,60","0","0","0","37,39" +"24 nov. 2020 1:48:02 UTC","14489790262","Transferir","","","En la cuenta que termina en: 907","","","","","","","","0","0","0","0","0","0","0","0","0","0","0","-303,29","-303,29" +"25 nov. 2020 8:03:53 UTC","14489790262","Pedido","403-9506275-4165156","CGE00031","Codenames","1","amazon.es","Vendedor","ROSSELLO","Lleida","25124","","19,58","0","7,00","0","0","0","0","0","-3,99","0","0","0","22,59" +"27 nov. 2020 7:23:05 UTC","14489790262","Pedido","405-4807059-1700336","55-KOH-FR6385","Lápices de grafito Koh-I-Noor 1500/9H (individual)","1","amazon.es","Vendedor","Oviedo","Asturias","33011","","1,15","0","7,00","0","0","0","0","0","-1,22","0","0","0","6,93" +"27 nov. 2020 7:24:52 UTC","14489790262","Pedido","407-1387200-5598712","KH-TAZW-V46N","Dermacol 218 - Funda para make Up Cover, hipoalergénica, para todos los tipos de piel","1","amazon.es","Vendedor","Roquetas de mar","Almeria","04740","","9,99","0","7,00","0","0","0","0","0","-2,55","0","0","0","14,44" +"27 nov. 2020 7:29:32 UTC","14489790262","Pedido","405-4521610-0608305","C4-E4UG-IEL5","¡100% ORIGINAL ! Dermacol - FUNDACION ALTA COVERING / MAKE UP CONCEALER / SPF 30 ! Entrega fría (1212)","1","amazon.es","Vendedor","Barcelona","España","08150","","16,96","0","7,00","0","0","0","0","0","-3,59","0","0","0","20,37" +"27 nov. 2020 7:32:43 UTC","14489790262","Pedido","402-3093487-9694703","YD-4NO9-IRWG","Dermacol - Base de maquillaje 30 g","1","amazon.es","Vendedor","Castelló d'Empuries","Girona","17486","","9,99","0","7,00","0","0","0","0","0","-2,55","0","0","0","14,44" +"30 nov. 2020 8:48:59 UTC","14489790262","Pedido","406-3071539-8057923","FU-9ZJ2-R9B8","Dermacol 9825 Satin Make Base de Maquillaje - 15 ml","1","amazon.es","Vendedor","Getafe","Perales del Río","28909","","9,99","0","7,00","0","0","0","0","0","-2,55","0","0","0","14,44" +"30 nov. 2020 8:52:29 UTC","14489790262","Pedido","171-1193280-8432353","KH-TAZW-V46N","Dermacol 218 - Funda para make Up Cover, hipoalergénica, para todos los tipos de piel","1","amazon.es","Vendedor","Torrevieja","Alicante","03181","","9,99","0","7,00","0","0","0","0","0","-2,55","0","0","0","14,44" +"30 nov. 2020 8:54:46 UTC","14489790262","Pedido","407-0085007-9203519","CGE00019","Desconocido Juego de Mesa (RGG490) (Importado)","1","amazon.es","Vendedor","Gijón","asturias","33204","","34,00","0","7,00","0","0","0","0","0","-6,15","0","0","0","34,85" +"30 nov. 2020 9:01:10 UTC","14489790262","Pedido","403-3939652-5233160","8A-9WXE-9KGS","Jen Pockej! 2 (Nu, pogodi! 2) (Versión checa)","1","amazon.es","Vendedor","PAMPLONA/IRUÑA","Navarra","31012","","5,69","0","7,00","0","0","0","0","0","-2,71","0","0","0","9,98" +"30 nov. 2020 9:02:13 UTC","14489790262","Pedido","404-0203877-6614708","CGE00019","Desconocido Juego de Mesa (RGG490) (Importado)","1","amazon.es","Vendedor","Barcelona","Bracelona","08003","","34,00","0","7,00","0","0","0","0","0","-6,15","0","0","0","34,85" +"30 nov. 2020 9:13:43 UTC","14489790262","Pedido","402-7394005-8150741","55-KOH-FR6308","KOH-I-NOOR - Minas de grafito, 8B, 2 mm","1","amazon.es","Vendedor","Torre del mar","Málaga","29740","","4,60","0","4,50","0","0","0","0","0","-1,37","0","0","0","7,73" +"30 nov. 2020 9:13:43 UTC","14489790262","Pedido","402-7394005-8150741","55-KOH-FR6310","KOH-I-NOOR - Minas de grafito, 6B, 2 mm","1","amazon.es","Vendedor","Torre del mar","Málaga","29740","","2,30","0","4,50","0","0","0","0","0","-1,02","0","0","0","5,78" diff --git a/Mapp.BusinessLogic.Transactions.Tests/TestData/AmazonGB.csv b/Mapp.BusinessLogic.Transactions.Tests/TestData/AmazonGB.csv new file mode 100644 index 0000000..32876ad --- /dev/null +++ b/Mapp.BusinessLogic.Transactions.Tests/TestData/AmazonGB.csv @@ -0,0 +1,236 @@ +"Includes Amazon Marketplace, Fulfilment by Amazon (FBA), and Amazon Webstore transactions" +"All amounts in GBP, unless specified" +"Definitions:" +"Sales tax collected: Includes sales tax collected from buyers for product sales, delivery, and gift wrap." +"Selling fees: Includes variable closing fees and referral fees." +"Other transaction fees: Includes delivery chargebacks, delivery holdbacks." +"Other: Includes non-order transaction amounts. For more details, see the ""Type"" and ""Description"" columns for each order ID." +"date/time","settlement id","type","order id","sku","description","quantity","marketplace","fulfilment","order city","order state","order postal","tax collection model","product sales","product sales tax","postage credits","shipping credits tax","gift wrap credits","giftwrap credits tax","promotional rebates","promotional rebates tax","marketplace withheld tax","selling fees","fba fees","other transaction fees","other","total" +"2 Nov 2020 07:45:18 UTC","14320178762","Order","206-3339988-7976313","BW-16TQ-ZXZ5","Fábri Zoltán 100 Gyűjteményes kiadás III.","1","amazon.co.uk","Seller","St Germain les Corbeil","","91250","","79.99","0","4.99","0","0","0","0","0","0","-13.50","0","0","0","71.48" +"2 Nov 2020 07:45:18 UTC","14320178762","Order","206-3339988-7976313","LG-DM86-AJ58","Fábri Zoltán 100 II. - Gyűjteményes kiadás II. 6xDVD","1","amazon.co.uk","Seller","St Germain les Corbeil","","91250","","66.95","0","5.00","0","0","0","0","0","0","-11.51","0","0","0","60.44" +"2 Nov 2020 07:48:51 UTC","14320178762","Order","205-3000236-5244340","55-KOH-FR5817","koh I noor Round Brush 9935 Squirrel 10, Brown, 24.5 x 6 x 0.6 cm","1","amazon.co.uk","Seller","Denton","Lancashire","M34 2BP","","16.00","0","5.00","0","0","0","0","0","0","-3.21","0","0","0","17.79" +"2 Nov 2020 07:49:01 UTC","14320178762","Order","202-0066282-5025930","41-I46E-986L","Tomorrow I'll Wake Up and Scald Myself with Tea/Zitra vstanu a oparim se cajem","1","amazon.co.uk","Seller","LITTLEBOROUGH","","OL15 0NG","","12.99","0","6.00","0","0","0","0","0","0","-3.41","0","0","0","15.58" +"2 Nov 2020 07:49:14 UTC","14320178762","Order","202-8310396-0801906","SC-LUHH-YXDS","Setkani v cervenci Remastered","1","amazon.co.uk","Seller","GUILDFORD","SURREY","GU2 8JX","","9.99","0","6.00","0","0","0","0","0","0","-2.95","0","0","0","13.04" +"2 Nov 2020 07:50:33 UTC","14320178762","Order","203-9153922-3365134","7Z-9FCL-2R7J","RYOR Beer Conditioner with Keratin 250 ml","1","amazon.co.uk","Seller","Fredericia","","7000","","14.99","0","3.50","0","0","0","0","0","0","-2.83","0","0","0","15.66" +"2 Nov 2020 07:50:33 UTC","14320178762","Order","203-9153922-3365134","WG-R4YP-SBNJ","Ryor Beer Glycerine Soap","1","amazon.co.uk","Seller","Fredericia","","7000","","11.99","0","3.49","0","0","0","0","0","0","-2.37","0","0","0","13.11" +"2 Nov 2020 07:50:40 UTC","14320178762","Order","202-3813579-0973916","7R-8RZM-7RLP","How to Get Dad Into Reform School/Jak dostat tatinka do polepsovny Remastered DVD","1","amazon.co.uk","Seller","GUILDFORD","SURREY","GU2 8JX","","17.99","0","6.00","0","0","0","0","0","0","-4.17","0","0","0","19.82" +"2 Nov 2020 07:52:21 UTC","14320178762","Order","026-0042599-6325135","Q7-45QF-O386","Caviar Long-stay Make-up & Corrector No. 0.0 Ivory","1","amazon.co.uk","Seller","CARLISLE","","CA4 8QY","","23.99","0","6.00","0","0","0","0","0","0","-4.59","0","0","0","25.40" +"2 Nov 2020 07:54:27 UTC","14320178762","Order","026-8070195-8148302","0L-X3WD-LRYX","Napoleons- Marlenka 6 per Box","1","amazon.co.uk","Seller","SOUTHAMPTON","Hampshire","SO15 1BX","","11.99","0","6.00","0","0","0","0","0","0","-2.75","0","0","0","15.24" +"2 Nov 2020 07:54:30 UTC","14320178762","Order","204-2113939-6925152","55-DJY4-FR2051","Tescoma Wasp Trap, Nylon/A","1","amazon.co.uk","Seller","Lymington","Hampshire","SO41 9DY","","14.99","0","5.00","0","0","0","0","0","0","-3.06","0","0","0","16.93" +"2 Nov 2020 07:54:33 UTC","14320178762","Order","202-4613377-1765914","55-KOH-FR3390","Herlitz 382408 A4 Blotting Paper 10 Sheets a4","1","amazon.co.uk","Seller","BURTON-ON-TRENT","","DE142AQ","","4.99","0","5.00","0","0","0","0","0","0","-1.53","0","0","0","8.46" +"2 Nov 2020 07:55:03 UTC","14320178762","Order","202-5866393-6774769","PF-H00U-1URT","Pod Jezevci skalou (Unter dem Dachsfelsen) paper sleeve","2","amazon.co.uk","Seller","GUILDFORD","SURREY","GU2 8JX","","8.00","0","7.00","0","0","0","0","0","0","-3.30","0","0","0","11.70" +"2 Nov 2020 07:55:22 UTC","14320178762","Order","206-3219616-2780343","XL-UOB4-3CZY","Andel Pane (Andìl Pánì)","1","amazon.co.uk","Seller","Burry Port","Carmarthenshire","SA16 0PN","","9.99","0","6.00","0","0","0","0","0","0","-2.95","0","0","0","13.04" +"2 Nov 2020 07:55:49 UTC","14320178762","Order","206-0107226-7147571","5555777","S Tebou me bavi svet (With You The World Is Fun)","1","amazon.co.uk","Seller","CALAIS","","62100","","4.00","0","5.00","0","0","0","0","0","0","-1.88","0","0","0","7.12" +"2 Nov 2020 07:55:49 UTC","14320178762","Order","206-0107226-7147571","KH-K4FE-SYGN","Postriziny / Cutting it Short DVD cardboard sleeve","1","amazon.co.uk","Seller","CALAIS","","62100","","3.99","0","4.99","0","0","0","0","0","0","-1.87","0","0","0","7.11" +"2 Nov 2020 07:55:58 UTC","14320178762","Order","203-7003237-8168328","XC-KD6F-0ET5","Orion Nugeta Peanut Chocolate Spread, 340 g","1","amazon.co.uk","Seller","Tavernes Blanques","Valencia","46016","","11.99","0","6.99","0","0","0","0","0","0","-2.90","0","0","0","16.08" +"2 Nov 2020 07:57:13 UTC","14320178762","Order","205-2734128-8370712","G1-1JOD-BNKP","The Painted Bird / Nabarvene ptace DVD 2019","1","amazon.co.uk","Seller","LONDON","","SE3 7LG","","20.15","0","6.00","0","0","0","0","0","0","-4.50","0","0","0","21.65" +"2 Nov 2020 07:57:26 UTC","14320178762","Order","204-3696636-5770766","GV-4EFC-E7BF","The Magic Quill/Certi brko","1","amazon.co.uk","Seller","ipswich","","IP1 6TJ","","17.99","0","6.00","0","0","0","0","0","0","-4.17","0","0","0","19.82" +"2 Nov 2020 07:58:22 UTC","14320178762","Order","204-5135979-4487520","WX-UXB0-PH8R","Hori, ma panenko (The Fireman's Ball) digipack","1","amazon.co.uk","Seller","London","","W7 3BE","","12.95","0","6.00","0","0","0","0","0","0","-3.40","0","0","0","15.55" +"2 Nov 2020 08:00:19 UTC","14320178762","Order","205-5789563-7977104","TF-0N8B-BKXE","Marlenka Classic Honey Nuggets 250 g","1","amazon.co.uk","Seller","TRURO","","TR1 3GZ","","6.99","0","6.00","0","0","0","0","0","0","-1.99","0","0","0","11.00" +"2 Nov 2020 08:06:44 UTC","14320178762","Order","205-6456959-3662744","C5-7RB9-38G0","Alpa Francovka Czech Alcohol Herbal Tincture Essential Oils (Alpa Classic 1000ml)","1","amazon.co.uk","Seller","WOKING","","GU21 2DH","","17.99","0","5.00","0","0","0","0","0","0","-3.52","0","0","0","19.47" +"2 Nov 2020 15:44:20 UTC","14320178762","Refund","026-3948352-7742724","FU-9ZJ2-R9B8","Dermacol Satin Make Up - 15 g","1","amazon.co.uk","Seller","MAIDENHEAD","","SL6 6SN","","-12.99","0","-5.00","0","0","0","0","0","0","2.20","0","0","0","-15.79" +"4 Nov 2020 07:10:15 UTC","14320178762","Order","206-4293763-6598717","J4-Z702-Y07X","Calendrier de l'Avent Kinder Maxi Mix","1","amazon.co.uk","Seller","FELTHAM","","TW13 6DH","","22.99","0","6.00","0","0","0","0","0","0","-4.44","0","0","0","24.55" +"4 Nov 2020 07:12:33 UTC","14320178762","Order","026-0601543-4339530","WD-88H1-122C","Skrivanci na niti [Larks on a String]","1","amazon.co.uk","Seller","Clapham Park","London","SW120JU","","6.99","0","3.50","0","0","0","0","0","0","-2.11","0","0","0","8.38" +"4 Nov 2020 07:12:33 UTC","14320178762","Order","026-0601543-4339530","KH-K4FE-SYGN","Postriziny / Cutting it Short DVD cardboard sleeve","1","amazon.co.uk","Seller","Clapham Park","London","SW120JU","","3.99","0","3.50","0","0","0","0","0","0","-1.65","0","0","0","5.84" +"4 Nov 2020 07:13:28 UTC","14320178762","Order","202-0728355-0369112","LG-DM86-AJ58","Fábri Zoltán 100 II. - Gyűjteményes kiadás II. 6xDVD","1","amazon.co.uk","Seller","Helsinki","Uusimaa","00510","","66.95","0","7.99","0","0","0","0","0","0","-11.97","0","0","0","62.97" +"4 Nov 2020 07:15:23 UTC","14320178762","Order","205-7135545-7873111","Y0-H9J0-QP6I","Pani kluci (Boys Will Be Boys) DVD remastered box","1","amazon.co.uk","Seller","ABINGDON","Oxon","OX14 5DG","","8.95","0","6.00","0","0","0","0","0","0","-2.79","0","0","0","12.16" +"4 Nov 2020 07:15:52 UTC","14320178762","Order","206-3444600-1060333","TF-0N8B-BKXE","Marlenka Classic Honey Nuggets 250 g","3","amazon.co.uk","Seller","Milton Keynes","","MK6 3DG","","20.97","0","8.00","0","0","0","0","0","0","-2.37","0","0","0","26.60" +"4 Nov 2020 07:15:55 UTC","14320178762","Order","204-0376407-9667513","0B-PW06-U214","Alpa Francovka Czech Alcohol Herbal Tincture Essential Oils (Alpa Lesna 1l)","1","amazon.co.uk","Seller","LONDON","","W12 8BU","","19.99","0","5.00","0","0","0","0","0","0","-3.82","0","0","0","21.17" +"4 Nov 2020 07:16:21 UTC","14320178762","Order","203-4797275-3117126","G1-1JOD-BNKP","The Painted Bird / Nabarvene ptace DVD 2019","1","amazon.co.uk","Seller","Maryburgh","Ross Shire","IV7 8EB","","20.15","0","6.00","0","0","0","0","0","0","-4.50","0","0","0","21.65" +"4 Nov 2020 07:16:37 UTC","14320178762","Order","204-5559958-6443519","H1-8ZA5-QI1C","Pelisky / Cosy Dens DVD English subtitles Remastered","1","amazon.co.uk","Seller","LONDON","","E4 6PH","","14.79","0","3.50","0","0","0","0","0","0","-3.30","0","0","0","14.99" +"4 Nov 2020 07:16:37 UTC","14320178762","Order","204-5559958-6443519","5555777","S Tebou me bavi svet (With You The World Is Fun)","1","amazon.co.uk","Seller","LONDON","","E4 6PH","","4.00","0","3.50","0","0","0","0","0","0","-1.65","0","0","0","5.85" +"4 Nov 2020 07:17:16 UTC","14320178762","Order","204-4687597-9537927","55-KOH-FR4189","Magic Eraser for Graphite Pencils and Colouring Pencils","4","amazon.co.uk","Seller","MARKET HARBOROUGH","Leicestershire","LE16 9DG","","8.00","0","8.00","0","0","0","0","0","0","-2.44","0","0","0","13.56" +"4 Nov 2020 07:17:22 UTC","14320178762","Order","204-0001026-7069927","CJ-E99W-P03E","Marlenka Classic Honey Cake 800 g","1","amazon.co.uk","Seller","TONBRIDGE","Kent","TN11 0JT","","20.99","0","6.00","0","0","0","0","0","0","-4.13","0","0","0","22.86" +"4 Nov 2020 07:17:41 UTC","14320178762","Order","206-0035745-6664311","CI-X4VO-P184","Rok dabla (Year of the Devil)","1","amazon.co.uk","Seller","Amsterdam","","1015 AS","","9.99","0","7.99","0","0","0","0","0","0","-3.25","0","0","0","14.73" +"4 Nov 2020 07:17:54 UTC","14320178762","Order","204-3136463-5525967","C5-7RB9-38G0","Alpa Francovka Czech Alcohol Herbal Tincture Essential Oils (Alpa Classic 1000ml)","1","amazon.co.uk","Seller","Birmingham","west midlands","B14 7HE","","17.99","0","5.00","0","0","0","0","0","0","-3.52","0","0","0","19.47" +"4 Nov 2020 07:19:11 UTC","14320178762","Order","203-1864027-5668348","55-DJY4-FR908","Tescoma Delicia 630341-Mechanical Sieve, Yellow, 16 x 11.5 x 11.5 cm","1","amazon.co.uk","Seller","Franca","São Paulo","14400760","","12.99","0","9.99","0","0","0","0","0","0","-3.52","0","0","0","19.46" +"6 Nov 2020 06:39:49 UTC","14320178762","Order","206-0646335-9521959","CJ-E99W-P03E","Marlenka Classic Honey Cake 800 g","2","amazon.co.uk","Seller","Jabriya","Kuwait","12345","","41.98","0","61.99","0","0","0","0","0","0","-15.90","0","0","0","88.07" +"6 Nov 2020 06:42:22 UTC","14320178762","Order","026-7333881-5381123","TF-0N8B-BKXE","Marlenka Classic Honey Nuggets 250 g","1","amazon.co.uk","Seller","SHEFFIELD","","S9 4RX","","6.99","0","6.00","0","0","0","0","0","0","-1.99","0","0","0","11.00" +"6 Nov 2020 06:45:34 UTC","14320178762","Order","204-9497969-0683549","55-DJY4-FR1092","Tescoma Delícia Beehive Mould","1","amazon.co.uk","Seller","Galway","Galway","H91TWT7","","3.99","0","6.99","0","0","0","0","0","0","-1.68","0","0","0","9.30" +"6 Nov 2020 06:46:44 UTC","14320178762","Order","206-9894877-3860341","GN-YPYH-MMRX","Cerny prapor (The Black Battalion) English subtitles","1","amazon.co.uk","Seller","Frechen","","50226","","12.99","0","7.99","0","0","0","0","0","0","-3.71","0","0","0","17.27" +"6 Nov 2020 06:48:30 UTC","14320178762","Order","204-1456365-5890765","WA-BPYV-SN1D","Ecstasy/Extase","1","amazon.co.uk","Seller","Ranelagh,","Dublin","6","","16.99","0","7.99","0","0","0","0","0","0","-4.32","0","0","0","20.66" +"6 Nov 2020 06:50:10 UTC","14320178762","Order","205-7922882-4108362","55-DJY4-FR718","Tescoma Ceramic Lamb Pan Delícia","1","amazon.co.uk","Seller","ALLOA","","FK10 1JY","","31.99","0","5.00","0","0","0","0","0","0","-5.66","0","0","0","31.33" +"6 Nov 2020 06:50:44 UTC","14320178762","Order","205-2616056-9456343","DT-YINY-50R7","COCOA Honey Cake MARLENKA® 100% NATURAL - 800g","2","amazon.co.uk","Seller","Witney","","OX29 9UB","","39.98","0","7.00","0","0","0","0","0","0","-7.18","0","0","0","39.80" +"6 Nov 2020 06:51:00 UTC","14320178762","Order","203-3810732-4051501","TF-0N8B-BKXE","Marlenka Classic Honey Nuggets 250 g","2","amazon.co.uk","Seller","Campbeltown","Argyll","PA28 6ER","","13.98","0","7.00","0","0","0","0","0","0","-3.22","0","0","0","17.76" +"6 Nov 2020 06:51:20 UTC","14320178762","Order","204-5081529-5309105","55-DJY4-FR1999","Tescoma Silicone Drainer 42X30 cm “Clean Kit”, Assorted, 46.2 x 31 x 2 cm","1","amazon.co.uk","Seller","SEVENOAKS","KENT","TN13 2TL","","34.00","0","5.00","0","0","0","0","0","0","-5.97","0","0","0","33.03" +"6 Nov 2020 19:33:20 UTC","14320178762","Service Fee","","","Subscription","","Amazon.co.uk","","","","","","0","0","0","0","0","0","0","0","0","0","0","0","-6.47","-6.47" +"9 Nov 2020 07:06:25 UTC","14320178762","Order","206-3430739-9879561","0L-Q0JS-S9A2","Macskafogó (Cat City)","1","amazon.co.uk","Seller","BRISTOL","","BS37 4LG","","18.99","0","5.00","0","0","0","0","0","0","-4.17","0","0","0","19.82" +"9 Nov 2020 07:07:52 UTC","14320178762","Order","206-2409510-0309907","55-DJY4-FR1092","Tescoma Delícia Beehive Mould","1","amazon.co.uk","Seller","SALFORD","Manchester","M6 8DH","","3.99","0","5.00","0","0","0","0","0","0","-1.38","0","0","0","7.61" +"9 Nov 2020 07:11:15 UTC","14320178762","Order","205-4170243-7133969","55-DJY4-FR1092","Tescoma Delícia Beehive Mould","1","amazon.co.uk","Seller","Leeds","Uk","LS96AJ","","3.99","0","5.00","0","0","0","0","0","0","-1.38","0","0","0","7.61" +"9 Nov 2020 07:12:11 UTC","14320178762","Order","206-7102639-4261115","DS-8F1L-QXZ6","Tri Veterani (Three Veterans)","1","amazon.co.uk","Seller","JERSEY","Channel Islands","JE2 6WA","","4.95","0","6.00","0","0","0","0","0","0","-2.18","0","0","0","8.77" +"9 Nov 2020 07:13:12 UTC","14320178762","Order","206-5242012-3185946","55-KOH-FR0030","KOH-I-NOOR 016273900000 40 ml Acrylic Colour Paint - Gold","1","amazon.co.uk","Seller","WINDSOR","Berkshire","SL4 2QW","","2.00","0","5.00","0","0","0","0","0","0","-1.07","0","0","0","5.93" +"9 Nov 2020 07:13:33 UTC","14320178762","Order","203-5729221-5603522","G1-1JOD-BNKP","The Painted Bird / Nabarvene ptace DVD 2019","1","amazon.co.uk","Seller","BALLYMENA","Co Antrim","BT42 1QG","","20.15","0","6.00","0","0","0","0","0","0","-4.50","0","0","0","21.65" +"9 Nov 2020 07:15:13 UTC","14320178762","Order","026-5887673-0802714","CA-D736-0CXC","Kridla Vanoc","1","amazon.co.uk","Seller","HEYWOOD","Lancs","OL10 1AD","","7.99","0","6.00","0","0","0","0","0","0","-2.64","0","0","0","11.35" +"9 Nov 2020 07:15:48 UTC","14320178762","Order","203-4840570-3338737","55-DJY4-FR1092","Tescoma Delícia Beehive Mould","1","amazon.co.uk","Seller","TEIGNMOUTH","Devon","TQ14 0AE","","3.99","0","5.00","0","0","0","0","0","0","-1.38","0","0","0","7.61" +"9 Nov 2020 07:16:02 UTC","14320178762","Order","203-9511774-8784319","C5-7RB9-38G0","Alpa Francovka Czech Alcohol Herbal Tincture Essential Oils (Alpa Classic 1000ml)","2","amazon.co.uk","Seller","CHICHESTER","","PO19 5PH","","35.98","0","6.00","0","0","0","0","0","0","-6.42","0","0","0","35.56" +"9 Nov 2020 07:16:13 UTC","14320178762","Order","206-6542888-7145966","KH-K4FE-SYGN","Postriziny / Cutting it Short DVD cardboard sleeve","1","amazon.co.uk","Seller","Aylesbury","Buckinghamshire","HP20 1AR","","3.99","0","3.50","0","0","0","0","0","0","-1.65","0","0","0","5.84" +"9 Nov 2020 07:16:13 UTC","14320178762","Order","206-6542888-7145966","PX-4OCH-306D","Skrivanci na niti (Larks on a Thread) paper sleeve","1","amazon.co.uk","Seller","Aylesbury","Buckinghamshire","HP20 1AR","","6.93","0","3.50","0","0","0","0","0","0","-2.10","0","0","0","8.33" +"9 Nov 2020 07:16:20 UTC","14320178762","Order","026-6490076-0336324","E3-B5WI-EI7H","Panna a netvor / Beauty and the Beast DVD English subtitles","1","amazon.co.uk","Seller","Glasgow","Lanarkshire","G41 3NS","","5.99","0","6.00","0","0","0","0","0","0","-2.33","0","0","0","9.66" +"9 Nov 2020 07:16:35 UTC","14320178762","Order","206-1293982-0033146","55-DJY4-FR1092","Tescoma Delícia Beehive Mould","1","amazon.co.uk","Seller","LONDON","London","NW4 1RY","","3.99","0","5.00","0","0","0","0","0","0","-1.38","0","0","0","7.61" +"9 Nov 2020 07:16:38 UTC","14320178762","Order","202-0386026-1433918","TF-0N8B-BKXE","Marlenka Classic Honey Nuggets 250 g","2","amazon.co.uk","Seller","HOVE","E Sussex","BN3 8JQ","","13.98","0","7.00","0","0","0","0","0","0","-3.22","0","0","0","17.76" +"9 Nov 2020 13:52:26 UTC","14403995222","Refund","202-8208479-0095541","HJ-QV1X-H48L","Zlate silvestry Vladimira Mensika","1","amazon.co.uk","Seller","Kingston","Ontario","K7P 2B7","","-16.24","0","0","0","0","0","0","0","0","2.49","0","0","0","-13.75" +"11 Nov 2020 01:30:43 UTC","14403995222","Transfer","","","To account ending in: 907","","","","","","","","0","0","0","0","0","0","0","0","0","0","0","0","-1,435.76","-1,435.76" +"11 Nov 2020 07:26:51 UTC","14403995222","Order","202-0120565-8820334","55-DJY4-FR1092","Tescoma Delícia Beehive Mould","1","amazon.co.uk","Seller","GRIMSBY","","DN31 3DS","","3.99","0","5.00","0","0","0","0","0","0","-1.38","0","0","0","7.61" +"11 Nov 2020 07:27:35 UTC","14403995222","Order","206-1212845-9468366","CJ-E99W-P03E","Marlenka Classic Honey Cake 800 g","1","amazon.co.uk","Seller","TADCASTER","North Yorkshire","LS24 9BH","","20.99","0","6.00","0","0","0","0","0","0","-4.13","0","0","0","22.86" +"11 Nov 2020 07:29:57 UTC","14403995222","Order","203-1883994-4998728","55-DJY4-FR938","Tescoma Holder with Nozzles and Decorating Bags ""Delicia"", Assorted, 29 x 18 x 9.9 cm","1","amazon.co.uk","Seller","GLASGOW","Select a State","G12 0QL","","19.00","0","5.00","0","0","0","0","0","0","-3.67","0","0","0","20.33" +"11 Nov 2020 07:31:25 UTC","14403995222","Order","202-1912176-1315567","55-KOH-FR6659","Koh I noor Mondeluz Aquarell Colouring Pencil - Dark Green","2","amazon.co.uk","Seller","London","","W11 2QT","","6.00","0","4.00","0","0","0","0","0","0","-1.54","0","0","0","8.46" +"11 Nov 2020 07:31:25 UTC","14403995222","Order","202-1912176-1315567","55-KOH-FR6627","Koh I noor Mondeluz Aquarell Colouring Pencil - Olive Green Light","2","amazon.co.uk","Seller","London","","W11 2QT","","2.00","0","4.00","0","0","0","0","0","0","-0.92","0","0","0","5.08" +"11 Nov 2020 07:31:41 UTC","14403995222","Order","026-6326586-1233918","10-3MRG-JJDO","Zitra vstanu a oparim se cajem (Tomorrow I'll Wake Up and Scald Myself with Tea)","1","amazon.co.uk","Seller","118 00 Praha 1","","11800","","9.95","0","4.99","0","0","0","0","0","0","-2.79","0","0","0","12.15" +"11 Nov 2020 07:42:54 UTC","14403995222","Order","204-2849309-3161916","55-DJY4-FR1092","Tescoma Delícia Beehive Mould","1","amazon.co.uk","Seller","Sheffield","","S6 3AG","","3.99","0","5.00","0","0","0","0","0","0","-1.38","0","0","0","7.61" +"13 Nov 2020 07:37:10 UTC","14403995222","Order","206-4941906-6677161","55-DJY4-FR1092","Tescoma Delícia Beehive Mould","1","amazon.co.uk","Seller","Waterford","Waterford","N/A","","3.99","0","4.49","0","0","0","0","0","0","-1.30","0","0","0","7.18" +"13 Nov 2020 07:37:10 UTC","14403995222","Order","206-4941906-6677161","55-DJY4-FR1084","Tescoma Crescent-Shaped Roll Delicia Chocolate Mould, Multi-Colour, 24-Piece","1","amazon.co.uk","Seller","Waterford","Waterford","N/A","","8.00","0","4.50","0","0","0","0","0","0","-1.91","0","0","0","10.59" +"13 Nov 2020 07:37:23 UTC","14403995222","Order","204-9385191-1423558","TF-0N8B-BKXE","Marlenka Classic Honey Nuggets 250 g","3","amazon.co.uk","Seller","LINKÖPING","","58246","","20.97","0","8.25","0","0","0","0","0","0","-2.37","0","0","0","26.85" +"13 Nov 2020 07:37:23 UTC","14403995222","Order","204-9385191-1423558","FK-ST96-4KAD","Marlenka Cocoa Honey Nuggets 250 g","2","amazon.co.uk","Seller","LINKÖPING","","58246","","13.98","0","5.50","0","0","0","0","0","0","-1.58","0","0","0","17.90" +"13 Nov 2020 07:37:23 UTC","14403995222","Order","204-9385191-1423558","AJ-N3CG-3VBQ","APRICOTE Honey Nuggets MARLENKA","1","amazon.co.uk","Seller","LINKÖPING","","58246","","6.99","0","2.75","0","0","0","0","0","0","-0.79","0","0","0","8.95" +"13 Nov 2020 07:37:23 UTC","14403995222","Order","204-9385191-1423558","LR-X4YS-Z7BB","Marlenka Lemon Honey Nuggets 250 g","2","amazon.co.uk","Seller","LINKÖPING","","58246","","13.98","0","5.49","0","0","0","0","0","0","-1.58","0","0","0","17.89" +"13 Nov 2020 07:38:09 UTC","14403995222","Order","026-2977956-0606762","9V-K7F2-ZFIO","Little From The Fish Shop/Mala z rybarny","1","amazon.co.uk","Seller","Telford","Shropshire","TF7 5PH","","13.99","0","6.00","0","0","0","0","0","0","-3.56","0","0","0","16.43" +"13 Nov 2020 07:38:21 UTC","14403995222","Order","202-1178362-0037146","FU-9ZJ2-R9B8","Dermacol Satin Make Up - 15 g","1","amazon.co.uk","Seller","SHEFFIELD","South Yorkshire","S21 3WF","","9.99","0","5.00","0","0","0","0","0","0","-2.29","0","0","0","12.70" +"13 Nov 2020 07:39:00 UTC","14403995222","Order","206-7533767-9034711","G1-1JOD-BNKP","The Painted Bird / Nabarvene ptace DVD 2019","1","amazon.co.uk","Seller","POOLE","Dorset","BH15 1JZ","","20.15","0","6.00","0","0","0","0","0","0","-4.50","0","0","0","21.65" +"13 Nov 2020 07:39:03 UTC","14403995222","Order","204-6432587-3590714","8C-1HVY-RAL4","Dinotoys Tatra 148 Excavator 72 cm Blue-Yellow","1","amazon.co.uk","Seller","BARNET","Herts","EN5 5SP","","41.99","0","6.00","0","0","0","0","0","0","-7.34","0","0","0","40.65" +"13 Nov 2020 07:39:16 UTC","14403995222","Order","206-2018537-8346702","W02362","Hra o truny kolekce 1.-8. serie 36BD / Game of Thrones Season 1-8 BD Complete Box Set (czech version)","1","amazon.co.uk","Seller","CRADLEY HEATH","","B64 6LQ","","269.99","0","6.00","0","0","0","0","0","0","-42.73","0","0","0","233.26" +"13 Nov 2020 07:40:23 UTC","14403995222","Order","204-6532276-1754723","55-DJY4-FR1092","Tescoma Delícia Beehive Mould","1","amazon.co.uk","Seller","Kingston upon Thames","Surrey","KT2 7RW","","3.99","0","5.00","0","0","0","0","0","0","-1.38","0","0","0","7.61" +"13 Nov 2020 07:40:32 UTC","14403995222","Order","204-2596718-2229168","55-DJY4-FR1092","Tescoma Delícia Beehive Mould","1","amazon.co.uk","Seller","EAST GRINSTEAD","W Sussex","RH19 4EB","","3.99","0","5.00","0","0","0","0","0","0","-1.38","0","0","0","7.61" +"13 Nov 2020 07:41:02 UTC","14403995222","Order","205-8578624-9262734","FK-ST96-4KAD","Marlenka Cocoa Honey Nuggets 250 g","1","amazon.co.uk","Seller","HARROW","","HA2 0EG","","6.99","0","6.00","0","0","0","0","0","0","-1.99","0","0","0","11.00" +"13 Nov 2020 07:41:05 UTC","14403995222","Order","205-4992682-0200367","QN-0Q46-X35D","Az ötödik pecsét / The Fifth Seal","1","amazon.co.uk","Seller","BEDFORD","BEDFORDSHIRE","MK42 7RQ","","19.99","0","3.50","0","0","0","0","0","0","-4.09","0","0","0","19.40" +"13 Nov 2020 07:41:05 UTC","14403995222","Order","205-4992682-0200367","SX-GMUV-Z0DS","A Pál utcai fiúk (1968) The Boys of Paul Street","1","amazon.co.uk","Seller","BEDFORD","BEDFORDSHIRE","MK42 7RQ","","19.99","0","3.50","0","0","0","0","0","0","-4.09","0","0","0","19.40" +"13 Nov 2020 07:43:15 UTC","14403995222","Order","203-2158256-6459508","55-DJY4-FR2040","Tescoma Food Container Online, 11 cm","1","amazon.co.uk","Seller","Dnipro City","Ukraine","49094","","28.99","0","6.99","0","0","0","0","0","0","-5.50","0","0","0","30.48" +"13 Nov 2020 07:43:36 UTC","14403995222","Order","206-3822073-9713941","G1-1JOD-BNKP","The Painted Bird / Nabarvene ptace DVD 2019","1","amazon.co.uk","Seller","WESTON-SUPER-MARE","","BS24 0PA","","20.15","0","6.00","0","0","0","0","0","0","-4.50","0","0","0","21.65" +"13 Nov 2020 07:50:03 UTC","14403995222","Order","204-5586484-9250713","55-DJY4-FR1092","Tescoma Delícia Beehive Mould","1","amazon.co.uk","Seller","LEEDS","","LS8 4DP","","3.99","0","5.00","0","0","0","0","0","0","-1.38","0","0","0","7.61" +"13 Nov 2020 07:50:06 UTC","14403995222","Order","026-7591546-3625968","EE-L6KE-S7IV","Ostre sledovane vlaky (Closely Watched Trains) paper sleeve","1","amazon.co.uk","Seller","Frome","Somerset","BA11 4JH","","9.99","0","6.00","0","0","0","0","0","0","-2.95","0","0","0","13.04" +"13 Nov 2020 07:50:38 UTC","14403995222","Order","202-7977519-9033151","55-DJY4-FR1092","Tescoma Delícia Beehive Mould","2","amazon.co.uk","Seller","Waterford","Ireland","X91K072","","7.98","0","8.99","0","0","0","0","0","0","-2.60","0","0","0","14.37" +"13 Nov 2020 07:51:07 UTC","14403995222","Order","026-7461667-8917143","55-DJY4-FR1092","Tescoma Delícia Beehive Mould","2","amazon.co.uk","Seller","Waterford","Ireland","X91K072","","7.98","0","8.99","0","0","0","0","0","0","-2.60","0","0","0","14.37" +"13 Nov 2020 07:51:56 UTC","14403995222","Order","205-0781195-5109961","G1-1JOD-BNKP","The Painted Bird / Nabarvene ptace DVD 2019","1","amazon.co.uk","Seller","Gouda","","2803 RC","","20.15","0","7.99","0","0","0","0","0","0","-4.81","0","0","0","23.33" +"13 Nov 2020 07:52:23 UTC","14403995222","Order","206-2938052-6444327","0L-X3WD-LRYX","Napoleons- Marlenka 6 per Box","4","amazon.co.uk","Seller","Jabriya","Kuwait","12345","","47.96","0","93.99","0","0","0","0","0","0","-21.72","0","0","0","120.23" +"13 Nov 2020 07:52:30 UTC","14403995222","Order","206-8109418-2631500","TF-0N8B-BKXE","Marlenka Classic Honey Nuggets 250 g","1","amazon.co.uk","Seller","LONDON","","E14 9AD","","6.99","0","6.00","0","0","0","0","0","0","-1.99","0","0","0","11.00" +"13 Nov 2020 07:53:03 UTC","14403995222","Order","026-2687199-5696369","H1-8ZA5-QI1C","Pelisky / Cosy Dens DVD English subtitles Remastered","1","amazon.co.uk","Seller","LONGHEDGE","wilts","SP4 6SA","","14.79","0","6.00","0","0","0","0","0","0","-3.68","0","0","0","17.11" +"16 Nov 2020 08:02:00 UTC","14403995222","Order","203-2980996-7922724","55-DJY4-FR081","Tescoma Chopping Board/Scoop 30X21 cm Presto, Assorted, 30 x 21 cm","1","amazon.co.uk","Seller","Southampton","Hants","SO31 1DS","","14.00","0","5.00","0","0","0","0","0","0","-2.91","0","0","0","16.09" +"16 Nov 2020 08:02:17 UTC","14403995222","Order","204-8488811-3897953","G1-1JOD-BNKP","The Painted Bird / Nabarvene ptace DVD 2019","1","amazon.co.uk","Seller","Zuerich","ZH","8045","","20.15","0","7.99","0","0","0","0","0","0","-4.81","0","0","0","23.33" +"16 Nov 2020 08:03:56 UTC","14403995222","Order","206-2585393-2971555","9F-O64A-HZW0","Silene smutna princezna (The Incredibly Sad Princess) remaster box","1","amazon.co.uk","Seller","REDHILL","","RH1 4PL","","8.96","0","6.00","0","0","0","0","0","0","-2.79","0","0","0","12.17" +"16 Nov 2020 08:04:40 UTC","14403995222","Order","206-3417451-1169902","TF-0N8B-BKXE","Marlenka Classic Honey Nuggets 250 g","1","amazon.co.uk","Seller","SCARBOROUGH","","YO11 2DP","","6.99","0","3.50","0","0","0","0","0","0","-1.61","0","0","0","8.88" +"16 Nov 2020 08:04:40 UTC","14403995222","Order","206-3417451-1169902","WF-1HF9-COFM","Walnut Honey Nuggets MARLENKA","1","amazon.co.uk","Seller","SCARBOROUGH","","YO11 2DP","","6.99","0","3.50","0","0","0","0","0","0","-1.61","0","0","0","8.88" +"16 Nov 2020 08:05:03 UTC","14403995222","Order","204-4589222-9129946","55-KOH-FR3390","Herlitz 382408 A4 Blotting Paper 10 Sheets a4","1","amazon.co.uk","Seller","kidderminster","worcs","DY11 5DD","","5.99","0","5.00","0","0","0","0","0","0","-1.68","0","0","0","9.31" +"16 Nov 2020 08:05:10 UTC","14403995222","Order","206-2233124-1663513","ZQ-JZEJ-JCB8","Marecku, podejte mi pero! (Marecek, Pass Me the Pen!) remastered box","1","amazon.co.uk","Seller","LONDON","","SE16 7DA","","9.00","0","6.00","0","0","0","0","0","0","-2.80","0","0","0","12.20" +"16 Nov 2020 08:05:23 UTC","14403995222","Order","206-6639904-8292340","55-DJY4-FR1092","Tescoma Delícia Beehive Mould","1","amazon.co.uk","Seller","LONDON","","N12 9PT","","3.99","0","5.00","0","0","0","0","0","0","-1.38","0","0","0","7.61" +"16 Nov 2020 08:06:08 UTC","14403995222","Order","205-1015686-8730745","55-DJY4-FR1092","Tescoma Delícia Beehive Mould","1","amazon.co.uk","Seller","NOTTINGHAM","Notts","NG10 3SA","","3.99","0","5.00","0","0","0","0","0","0","-1.38","0","0","0","7.61" +"16 Nov 2020 08:06:40 UTC","14403995222","Order","026-9623999-3913901","R6-06QT-KFDO","Ja, truchlivy Buh (I, Distressing God)","1","amazon.co.uk","Seller","Bratislava","SK","85106","","9.95","0","4.99","0","0","0","0","0","0","-2.79","0","0","0","12.15" +"16 Nov 2020 08:06:55 UTC","14403995222","Order","204-9872355-6332344","OM-2BLN-G8D4","Csardaskiralyno (Csárdáskirálynő)","1","amazon.co.uk","Seller","SWANSEA","","SA9 2GH","","16.99","0","5.00","0","0","0","0","0","0","-3.86","0","0","0","18.13" +"16 Nov 2020 08:09:16 UTC","14403995222","Order","206-3561369-6465923","55-KOH-FR6951","PAW - Decorative Eco Napkins - 3ply Lunch Paper Napkins, 100% Recycled and Certified, 33cm x 33cm, Top Quality Tissue, Organic, Biodegradable, Beautif","3","amazon.co.uk","Seller","Leeds","","LS18 5BQ","","12.00","0","7.00","0","0","0","0","0","0","-2.91","0","0","0","16.09" +"16 Nov 2020 08:09:50 UTC","14403995222","Order","206-5588883-0671526","55-DJY4-FR932","Tescoma Delicia Pastry Bag, 6 Nozzles","1","amazon.co.uk","Seller","WALSALL","","WS1 3DE","","13.00","0","5.00","0","0","0","0","0","0","-2.75","0","0","0","15.25" +"16 Nov 2020 08:09:56 UTC","14403995222","Order","206-9216064-3439533","3K-L0CX-40Q4","Pelisky / Cosy Dens Blu-Ray English subtitles Remastered","1","amazon.co.uk","Seller","DUNOON","Argyll","PA23 8TB","","14.99","0","6.00","0","0","0","0","0","0","-3.71","0","0","0","17.28" +"16 Nov 2020 08:10:03 UTC","14403995222","Order","205-2797437-1719516","22-8887-XFEN","Tri Orisky Pro Popelku (Three Wishes for Cinderella)","1","amazon.co.uk","Seller","RANDALSTOWN","Antrim","BT41 2EF","","7.55","0","6.00","0","0","0","0","0","0","-2.57","0","0","0","10.98" +"16 Nov 2020 08:10:03 UTC","14403995222","Order","205-6593731-9929142","55-DJY4-FR1275","Tescoma ""Della Casa"" Fresh Cheese Maker Set, Assorted","1","amazon.co.uk","Seller","ADDLESTONE","Surrey","KT15 1LZ","","26.00","0","5.00","0","0","0","0","0","0","-4.74","0","0","0","26.26" +"18 Nov 2020 07:42:45 UTC","14403995222","Order","204-7089748-8659541","6E-U9YQ-W8M7","Obecna Skola / The Elementary School DVD cardboard sleeve English subtitles","1","amazon.co.uk","Seller","Crowborough","East Sussex","TN6 1YE","","9.99","0","6.00","0","0","0","0","0","0","-2.95","0","0","0","13.04" +"18 Nov 2020 07:44:15 UTC","14403995222","Order","026-3008157-2353926","G1-1JOD-BNKP","The Painted Bird / Nabarvene ptace DVD 2019","1","amazon.co.uk","Seller","BARNET","HERTS","EN5 5QH","","20.15","0","6.00","0","0","0","0","0","0","-4.50","0","0","0","21.65" +"18 Nov 2020 07:45:36 UTC","14403995222","Order","206-6224636-4004303","TF-0N8B-BKXE","Marlenka Classic Honey Nuggets 250 g","1","amazon.co.uk","Seller","ISLEWORTH","","TW7 4DJ","","6.99","0","6.00","0","0","0","0","0","0","-1.99","0","0","0","11.00" +"18 Nov 2020 07:46:09 UTC","14403995222","Order","203-3866323-7802739","SW-EJ13-0Y6V","Donsajni (Don Juans, The)","1","amazon.co.uk","Seller","WYMONDHAM","Norfolk","NR18 0WU","","19.95","0","6.00","0","0","0","0","0","0","-4.47","0","0","0","21.48" +"18 Nov 2020 07:46:54 UTC","14403995222","Order","203-6005321-7243508","F7-7ZF2-XQEO","Krtek a kalhotky (Little Mole and the Panties) paper sleeve","1","amazon.co.uk","Seller","CAMBRIDGE","Cambs","CB21 4ND","","6.95","0","6.00","0","0","0","0","0","0","-2.48","0","0","0","10.47" +"18 Nov 2020 07:47:00 UTC","14403995222","Order","204-9571748-0370725","JF-7YB5-QNEV","Apricot Honey Cake MARLENKA","1","amazon.co.uk","Seller","London","Ontario","N5X 3T2","","19.99","0","8.99","0","0","0","0","0","0","-4.43","0","0","0","24.55" +"18 Nov 2020 07:47:00 UTC","14403995222","Order","204-9571748-0370725","CJ-E99W-P03E","Marlenka Classic Honey Cake 800 g","1","amazon.co.uk","Seller","London","Ontario","N5X 3T2","","20.99","0","9.00","0","0","0","0","0","0","-4.59","0","0","0","25.40" +"18 Nov 2020 07:47:45 UTC","14403995222","Order","026-1228941-7204302","YX-RNZX-R55O","Good Soldier Svejk / Beg To Report 2-DVD remastered English subtitles region free","1","amazon.co.uk","Seller","KARLSBORG","","54633","","26.99","0","7.99","0","0","0","0","0","0","-5.85","0","0","0","29.13" +"18 Nov 2020 07:47:54 UTC","14403995222","Order","204-3450387-0995524","W02473","Tenet 2BD (UHD+BD) / Tenet (czech version)","1","amazon.co.uk","Seller","Gosselies","Belgium","6041","","69.99","0","27.99","0","0","0","0","0","0","-15.49","0","0","0","82.49" +"18 Nov 2020 07:48:23 UTC","14403995222","Order","203-2467463-1969118","OU-PQI7-5FOC","Kolonada Czech Hazelnut Spa Wafers 175g","1","amazon.co.uk","Seller","44242 Kungälv","","","","14.00","0","6.99","0","0","0","0","0","0","-3.21","0","0","0","17.78" +"18 Nov 2020 07:49:33 UTC","14403995222","Order","206-9090675-5655568","PH-ZYK5-OYYH","Dermacol - Perfect Body Make-up , Perfectly covers any imperfections- 100 ml (Ivory)","1","amazon.co.uk","Seller","Lagos Nigeria","","00234","","6.99","0","9.99","0","0","0","0","0","0","-2.60","0","0","0","14.38" +"18 Nov 2020 07:50:06 UTC","14403995222","Order","026-4677281-8705945","N02000","Oko v oblacich BD / Eye in the Sky (czech version)","1","amazon.co.uk","Seller","JERSEY","Channel Islands","JE2 4SS","","44.99","0","6.00","0","0","0","0","0","0","-8.30","0","0","0","42.69" +"18 Nov 2020 07:51:59 UTC","14403995222","Order","026-1468562-6408325","LR-K4VL-W4MX","Navstevnici:Kolekce (5 DVD)","1","amazon.co.uk","Seller","HOVE","","BN3 6BF","","16.96","0","6.00","0","0","0","0","0","0","-4.01","0","0","0","18.95" +"18 Nov 2020 20:27:59 UTC","14403995222","Refund","204-3450387-0995524","W02473","Tenet 2BD (UHD+BD) / Tenet (czech version)","1","amazon.co.uk","Seller","Gosselies","Belgium","6041","","-69.99","0","-27.99","0","0","0","0","0","0","15.49","0","0","0","-82.49" +"19 Nov 2020 06:35:49 UTC","14403995222","Order","202-4133711-2834727","55-KOH-FR0398","KOH - I - NOOR Anilinky 12 Colour, XKC174503","20","amazon.co.uk","Seller","Leicester","Leicestershire","LE3 1AH","","79.80","0","24.00","0","0","0","0","0","0","-15.80","0","0","0","88.00" +"20 Nov 2020 07:39:32 UTC","14403995222","Order","202-4143619-1549950","UZ-ZCOZ-ER41","Dermacol Perfect me concealer CORRECTOR n. 3 sand","1","amazon.co.uk","Seller","Constanta","Constanta","900591","","9.99","0","7.99","0","0","0","0","0","0","-2.75","0","0","0","15.23" +"20 Nov 2020 07:41:56 UTC","14403995222","Order","203-4783405-2620345","QN-0Q46-X35D","Az ötödik pecsét / The Fifth Seal","1","amazon.co.uk","Seller","Gosport","United Kingdom","PO13 0DB","","19.99","0","6.00","0","0","0","0","0","0","-4.48","0","0","0","21.51" +"20 Nov 2020 07:42:06 UTC","14403995222","Order","206-7619390-0214749","LQ-7GSY-2UOZ","Dermacol Aroma Ritual Watermelon Shower Gel - 250 ml","2","amazon.co.uk","Seller","ABERDEEN","","AB22 8FN","","11.98","0","7.00","0","0","0","0","0","0","-1.54","0","0","0","17.44" +"20 Nov 2020 07:43:18 UTC","14403995222","Order","203-2695560-5445149","TF-0N8B-BKXE","Marlenka Classic Honey Nuggets 250 g","1","amazon.co.uk","Seller","DUNDEE","","DD1 5QN","","6.99","0","6.00","0","0","0","0","0","0","-1.99","0","0","0","11.00" +"20 Nov 2020 07:44:42 UTC","14403995222","Order","204-1894377-9511564","9F-O64A-HZW0","Silene smutna princezna (The Incredibly Sad Princess) remaster box","1","amazon.co.uk","Seller","Wien","Österreich","1090","","8.96","0","4.99","0","0","0","0","0","0","-2.63","0","0","0","11.32" +"20 Nov 2020 07:44:42 UTC","14403995222","Order","204-1894377-9511564","YC-DZOT-2M1M","Jak utopit dr. Mracka aneb konec vodniku v Cechach (How to Drown Dr. Mracek) Remaster","1","amazon.co.uk","Seller","Wien","Österreich","1090","","14.95","0","5.00","0","0","0","0","0","0","-3.55","0","0","0","16.40" +"20 Nov 2020 07:45:16 UTC","14403995222","Order","206-3154472-9877923","55-KOH-FR3390","Herlitz 382408 A4 Blotting Paper 10 Sheets a4","1","amazon.co.uk","Seller","Andover","Hants","SP10 3PR","","5.99","0","5.00","0","0","0","0","0","0","-1.68","0","0","0","9.31" +"20 Nov 2020 07:49:14 UTC","14403995222","Order","206-8718479-4112365","DT-YINY-50R7","COCOA Honey Cake MARLENKA® 100% NATURAL - 800g","1","amazon.co.uk","Seller","CASTLEFORD","","WF10 2SQ","","19.99","0","6.00","0","0","0","0","0","0","-3.98","0","0","0","22.01" +"20 Nov 2020 07:49:41 UTC","14403995222","Order","203-4735120-7757947","G1-1JOD-BNKP","The Painted Bird / Nabarvene ptace DVD 2019","1","amazon.co.uk","Seller","Singapore","SINGAPORE","806057","","20.15","0","11.99","0","0","0","0","0","0","-5.42","0","0","0","26.72" +"20 Nov 2020 07:52:43 UTC","14403995222","Order","026-6818128-1849169","0L-X3WD-LRYX","Napoleons- Marlenka 6 per Box","2","amazon.co.uk","Seller","MINEHEAD","Somerset","TA24 6DQ","","23.98","0","4.50","0","0","0","0","0","0","-4.36","0","0","0","24.12" +"20 Nov 2020 07:52:43 UTC","14403995222","Order","026-6818128-1849169","CJ-E99W-P03E","Marlenka Classic Honey Cake 800 g","2","amazon.co.uk","Seller","MINEHEAD","Somerset","TA24 6DQ","","41.98","0","4.50","0","0","0","0","0","0","-7.12","0","0","0","39.36" +"20 Nov 2020 07:55:06 UTC","14403995222","Order","203-3619450-5681916","55-KOH-FR6820","Koh I noor Woodless Coloured Pencil - Titanium White","2","amazon.co.uk","Seller","Abdulrahman Qafigi Street","Selwa","22002","","10.00","0","13.99","0","0","0","0","0","0","-3.68","0","0","0","20.31" +"20 Nov 2020 07:56:35 UTC","14403995222","Order","026-2034267-4929155","3Z-OMX3-HS5L","Icarus XB 1/Ikarie XB1 remastered","1","amazon.co.uk","Seller","Atherstone","Leicestershire","CV9 3LN","","21.99","0","6.00","0","0","0","0","0","0","-4.78","0","0","0","23.21" +"20 Nov 2020 07:57:04 UTC","14403995222","Order","203-7250174-9477117","TF-0N8B-BKXE","Marlenka Classic Honey Nuggets 250 g","10","amazon.co.uk","Seller","Belgrade","","11090","","69.90","0","25.99","0","0","0","0","0","0","-7.80","0","0","0","88.09" +"20 Nov 2020 07:58:09 UTC","14403995222","Order","202-0778029-5559504","0L-X3WD-LRYX","Napoleons- Marlenka 6 per Box","1","amazon.co.uk","Seller","PRESTONPANS","","EH32 0AA","","11.99","0","3.50","0","0","0","0","0","0","-2.37","0","0","0","13.12" +"20 Nov 2020 07:58:09 UTC","14403995222","Order","202-0778029-5559504","TF-0N8B-BKXE","Marlenka Classic Honey Nuggets 250 g","1","amazon.co.uk","Seller","PRESTONPANS","","EH32 0AA","","6.99","0","3.50","0","0","0","0","0","0","-1.61","0","0","0","8.88" +"23 Nov 2020 08:23:43 UTC","14403995222","Order","026-5060146-3013922","55-DJY4-FR1247","Tescoma Ceramic Peeler with Longitudinal Blade Vitamino, Assorted, 24 x 7 x 1.5 cm","2","amazon.co.uk","Seller","St. Julian's","Malta","STJ4011","","22.00","0","8.99","0","0","0","0","0","0","-4.74","0","0","0","26.25" +"23 Nov 2020 08:25:03 UTC","14403995222","Order","203-5973729-8917918","55-DJY4-FR1092","Tescoma Delícia Beehive Mould","1","amazon.co.uk","Seller","WAKEFIELD","","WF2 8BX","","3.99","0","5.00","0","0","0","0","0","0","-1.38","0","0","0","7.61" +"23 Nov 2020 08:25:11 UTC","14403995222","Order","202-9090062-8984366","JF-7YB5-QNEV","Apricot Honey Cake MARLENKA","1","amazon.co.uk","Seller","HATFIELD","","AL10 0RA","","19.99","0","6.00","0","0","0","0","0","0","-3.98","0","0","0","22.01" +"23 Nov 2020 08:25:52 UTC","14403995222","Order","026-6293319-2084306","G1-1JOD-BNKP","The Painted Bird / Nabarvene ptace DVD 2019","1","amazon.co.uk","Seller","Luton","Bedfordshire","LU2 9TZ","","20.15","0","6.00","0","0","0","0","0","0","-4.50","0","0","0","21.65" +"23 Nov 2020 08:26:24 UTC","14403995222","Order","204-8741396-0995554","CJ-E99W-P03E","Marlenka Classic Honey Cake 800 g","1","amazon.co.uk","Seller","Hare Hatch","Berkshire","RG10 9SY","","20.99","0","6.00","0","0","0","0","0","0","-4.13","0","0","0","22.86" +"23 Nov 2020 08:26:58 UTC","14403995222","Order","204-8749842-7264301","43-MOOR-FDA2","The Mysterious Castle in the Carpathians/Tajemstvi hradu v Karpatech Remastered","1","amazon.co.uk","Seller","Cudillero","Asturias","33150","","14.99","0","7.99","0","0","0","0","0","0","-4.02","0","0","0","18.96" +"23 Nov 2020 08:28:39 UTC","14403995222","Order","206-1425234-8058713","55-DJY4-FR1092","Tescoma Delícia Beehive Mould","1","amazon.co.uk","Seller","ROTHERHAM","","S60 2LY","","3.99","0","5.00","0","0","0","0","0","0","-1.38","0","0","0","7.61" +"23 Nov 2020 08:29:14 UTC","14403995222","Order","026-8607327-7026729","55-DJY4-FR822","Tescoma Pastry Crimper Delicia, Assorted, 21 x 7 x 2.2 cm","1","amazon.co.uk","Seller","Woking","Surrey","GU22 0RB","","9.99","0","5.00","0","0","0","0","0","0","-2.29","0","0","0","12.70" +"23 Nov 2020 08:31:21 UTC","14403995222","Order","204-6183912-7211512","55-KOH-FR1791","Memo Block Glued White 85 x 40 x 85 mm","1","amazon.co.uk","Seller","Standlake, Witney","Oxfordshire","OX29 7RH","","3.00","0","5.00","0","0","0","0","0","0","-1.22","0","0","0","6.78" +"23 Nov 2020 08:31:38 UTC","14403995222","Order","204-8670205-1597156","EO-4S92-O5WX","Inheritance or Fuckoffguysgoodday / Dedictvi Aneb Kurvahosigutntag DVD Remastered English subtitles","1","amazon.co.uk","Seller","Singapore","","048583","","19.99","0","11.99","0","0","0","0","0","0","-5.39","0","0","0","26.59" +"23 Nov 2020 08:31:52 UTC","14403995222","Order","202-6406248-1440300","FH-JZAT-1CVR","Burning Bush (Sacrifice) Miniseries [2 DVD] English Subtitles","1","amazon.co.uk","Seller","London","","E5 8SQ","","23.00","0","6.00","0","0","0","0","0","0","-4.94","0","0","0","24.06" +"23 Nov 2020 08:33:45 UTC","14403995222","Order","206-5211665-7918745","G1-1JOD-BNKP","The Painted Bird / Nabarvene ptace DVD 2019","1","amazon.co.uk","Seller","London","","NW1 4NR","","20.15","0","6.00","0","0","0","0","0","0","-4.50","0","0","0","21.65" +"23 Nov 2020 08:34:54 UTC","14403995222","Order","204-1414830-0354756","XC-KD6F-0ET5","Orion Nugeta Peanut Chocolate Spread, 340 g","1","amazon.co.uk","Seller","MILLOM","","LA18 4BT","","11.99","0","5.00","0","0","0","0","0","0","-2.60","0","0","0","14.39" +"23 Nov 2020 08:35:06 UTC","14403995222","Order","026-1469060-0310760","5D-JY6Y-RTAK","My Sweet Little Village (Vesnicko Ma, Strediskova)","1","amazon.co.uk","Seller","BIRMINGHAM","","B21 8NU","","6.99","0","6.00","0","0","0","0","0","0","-2.49","0","0","0","10.50" +"23 Nov 2020 08:36:09 UTC","14403995222","Order","206-9552155-4377941","TF-0N8B-BKXE","Marlenka Classic Honey Nuggets 250 g","6","amazon.co.uk","Seller","Wilmcote","Warwickshire","CV37 9XA","","41.94","0","11.00","0","0","0","0","0","0","-4.32","0","0","0","48.62" +"23 Nov 2020 08:39:16 UTC","14403995222","Order","202-2690055-7725114","G1-1JOD-BNKP","The Painted Bird / Nabarvene ptace DVD 2019","1","amazon.co.uk","Seller","Tiverton","Devon","EX16 5PB","","20.15","0","6.00","0","0","0","0","0","0","-4.50","0","0","0","21.65" +"23 Nov 2020 08:39:20 UTC","14403995222","Order","206-7013403-6624309","55-DJY4-FR1092","Tescoma Delícia Beehive Mould","1","amazon.co.uk","Seller","LONDON","","SW6 4DH","","3.99","0","5.00","0","0","0","0","0","0","-1.38","0","0","0","7.61" +"23 Nov 2020 08:39:51 UTC","14403995222","Order","202-8181663-7281933","SX-GMUV-Z0DS","A Pál utcai fiúk (1968) The Boys of Paul Street","1","amazon.co.uk","Seller","Ennis","Co. Clare","","","19.99","0","7.99","0","0","0","0","0","0","-4.78","0","0","0","23.20" +"23 Nov 2020 08:41:28 UTC","14403995222","Order","206-7112387-7193951","XA-ELEG-6WKC","The Ear/Ucho Remastered","1","amazon.co.uk","Seller","Dublin","","DUBLIN 18","","12.99","0","7.99","0","0","0","0","0","0","-3.71","0","0","0","17.27" +"23 Nov 2020 08:42:26 UTC","14403995222","Order","026-2836777-6893900","CJ-E99W-P03E","Marlenka Classic Honey Cake 800 g","2","amazon.co.uk","Seller","Attard","","ATD2380","","41.98","0","9.99","0","0","0","0","0","0","-7.96","0","0","0","44.01" +"23 Nov 2020 08:43:06 UTC","14403995222","Order","026-6032326-5477137","YH-FFVU-N2EZ","Dermacol LILY OF THE VALLEY AND FRESH CITRUS EDP 50ml","1","amazon.co.uk","Seller","St Saviour","","JE2 7SG","","59.99","0","6.00","0","0","0","0","0","0","-10.10","0","0","0","55.89" +"23 Nov 2020 08:44:21 UTC","14403995222","Order","026-6173977-2587503","CJ-E99W-P03E","Marlenka Classic Honey Cake 800 g","1","amazon.co.uk","Seller","LONDON","","SE4 1TB","","20.99","0","6.00","0","0","0","0","0","0","-4.13","0","0","0","22.86" +"25 Nov 2020 01:34:07 UTC","14489886942","Transfer","","","To account ending in: 907","","","","","","","","0","0","0","0","0","0","0","0","0","0","0","0","-2,236.11","-2,236.11" +"25 Nov 2020 07:58:10 UTC","14489886942","Order","204-6701817-3218702","G1-1JOD-BNKP","The Painted Bird / Nabarvene ptace DVD 2019","1","amazon.co.uk","Seller","Perth","PERTH & KINROSS","PH2 8DG","","20.15","0","6.00","0","0","0","0","0","0","-4.50","0","0","0","21.65" +"25 Nov 2020 08:00:17 UTC","14489886942","Order","204-9461541-6651503","2R-E4CD-KNKV","Alpa Aftershave (Alpa Windsor Cologne)","1","amazon.co.uk","Seller","NEWCASTLE UPON TYNE","Tyne and wear","NE6 2DL","","7.99","0","5.00","0","0","0","0","0","0","-1.99","0","0","0","11.00" +"25 Nov 2020 08:01:13 UTC","14489886942","Order","206-6190980-8381931","55-DJY4-FR868","Tescoma Bread Roll Maker Delicia, Spiral, Assorted, 17 x 12 x 3.3 cm","1","amazon.co.uk","Seller","London","","IG11 7YD","","5.00","0","5.00","0","0","0","0","0","0","-1.53","0","0","0","8.47" +"25 Nov 2020 08:01:19 UTC","14489886942","Order","205-0724897-0366754","TF-0N8B-BKXE","Marlenka Classic Honey Nuggets 250 g","1","amazon.co.uk","Seller","Cranbrook","Kent","TN17 3AL","","6.99","0","6.00","0","0","0","0","0","0","-1.99","0","0","0","11.00" +"25 Nov 2020 08:02:24 UTC","14489886942","Order","206-2236291-9562708","55-DJY4-FR1092","Tescoma Delícia Beehive Mould","1","amazon.co.uk","Seller","ROMFORD","United Kingdom","RM7 7HL","","3.99","0","5.00","0","0","0","0","0","0","-1.38","0","0","0","7.61" +"25 Nov 2020 08:03:52 UTC","14489886942","Order","206-2317724-8264306","55-DJY4-FR1092","Tescoma Delícia Beehive Mould","1","amazon.co.uk","Seller","GLASGOW","","G20 8QN","","3.99","0","3.00","0","0","0","0","0","0","-1.07","0","0","0","5.92" +"25 Nov 2020 08:03:52 UTC","14489886942","Order","206-2317724-8264306","55-DJY4-FR1755","Tescoma Utility Knife cm 9 Home Profi, Assorted, 9 cm","1","amazon.co.uk","Seller","GLASGOW","","G20 8QN","","7.00","0","3.00","0","0","0","0","0","0","-1.53","0","0","0","8.47" +"25 Nov 2020 08:08:48 UTC","14489886942","Order","203-1124546-6980366","BD-LDEI-XCGS","ANGEL OF THE LORD 2/ANDEL PANE 2","1","amazon.co.uk","Seller","Winscombe","","BS25 1SA","","16.99","0","3.50","0","0","0","0","0","0","-3.64","0","0","0","16.85" +"25 Nov 2020 08:08:48 UTC","14489886942","Order","203-1124546-6980366","DK-KH8T-L68L","S certy nejsou zerty (Give the Devil His Due) paper sleeve","1","amazon.co.uk","Seller","Winscombe","","BS25 1SA","","11.95","0","3.50","0","0","0","0","0","0","-2.86","0","0","0","12.59" +"25 Nov 2020 08:09:56 UTC","14489886942","Order","026-3212843-8205908","DT-YINY-50R7","COCOA Honey Cake MARLENKA® 100% NATURAL - 800g","1","amazon.co.uk","Seller","TENBY","Pembs","SA70 8DL","","19.99","0","3.50","0","0","0","0","0","0","-3.59","0","0","0","19.90" +"25 Nov 2020 08:09:56 UTC","14489886942","Order","026-3212843-8205908","TF-0N8B-BKXE","Marlenka Classic Honey Nuggets 250 g","1","amazon.co.uk","Seller","TENBY","Pembs","SA70 8DL","","6.99","0","3.50","0","0","0","0","0","0","-1.61","0","0","0","8.88" +"25 Nov 2020 08:10:37 UTC","14489886942","Order","205-6209992-4762748","55-DJY4-FR650","Tescoma Frying Pan Ø 32 cm I-Premium Stone","1","amazon.co.uk","Seller","Ala-Särkilahti","Punkaharju","58690","","61.99","0","6.99","0","0","0","0","0","0","-10.55","0","0","0","58.43" +"27 Nov 2020 07:20:25 UTC","14489886942","Order","202-6450834-0434742","K6-KBKM-K436","The Little Mermaid/Mala morska vila Remastered DVD","1","amazon.co.uk","Seller","NORTHAMPTON","Northamptonshire","NN3 9AY","","11.99","0","6.00","0","0","0","0","0","0","-3.25","0","0","0","14.74" +"27 Nov 2020 07:24:42 UTC","14489886942","Order","206-8271662-4319563","W01906","Key Largo (Blu-ray) (Key Largo)","1","amazon.co.uk","Seller","TRURO","CORNWALL","TR1 1GW","","44.99","0","6.00","0","0","0","0","0","0","-8.30","0","0","0","42.69" +"27 Nov 2020 07:24:59 UTC","14489886942","Order","204-6134519-7141926","G1-1JOD-BNKP","The Painted Bird / Nabarvene ptace DVD 2019","1","amazon.co.uk","Seller","Launceston","Cornwall","PL15 7BJ","","20.15","0","6.00","0","0","0","0","0","0","-4.50","0","0","0","21.65" +"27 Nov 2020 07:25:41 UTC","14489886942","Order","026-9355352-5014763","E2-DQOT-0L5N","Pohadky pro Emu","1","amazon.co.uk","Seller","WIGAN","","WN5 0HP","","19.99","0","6.00","0","0","0","0","0","0","-4.48","0","0","0","21.51" +"27 Nov 2020 07:26:31 UTC","14489886942","Order","205-9348559-5680361","LR-X4YS-Z7BB","Marlenka Lemon Honey Nuggets 250 g","2","amazon.co.uk","Seller","BRISTOL","","BS10 6SJ","","13.98","0","7.00","0","0","0","0","0","0","-3.22","0","0","0","17.76" +"27 Nov 2020 07:26:41 UTC","14489886942","Order","206-7728329-4183525","WA-BPYV-SN1D","Ecstasy/Extase","1","amazon.co.uk","Seller","LONDON","","W12 7PY","","16.99","0","6.00","0","0","0","0","0","0","-4.02","0","0","0","18.97" +"27 Nov 2020 07:26:47 UTC","14489886942","Order","206-9410187-5736330","W2-0YVM-GH1P","Adela jeste nevecerela / Adele Hasn't Had Her Dinner Yet","1","amazon.co.uk","Seller","Trelleborg","","23134","","15.99","0","7.99","0","0","0","0","0","0","-4.17","0","0","0","19.81" +"27 Nov 2020 07:27:36 UTC","14489886942","Order","026-4769686-5105921","G1-1JOD-BNKP","The Painted Bird / Nabarvene ptace DVD 2019","1","amazon.co.uk","Seller","Ascot","Berkshire","SL5 8JU","","20.15","0","6.00","0","0","0","0","0","0","-4.50","0","0","0","21.65" +"27 Nov 2020 07:28:22 UTC","14489886942","Order","202-2021503-5866736","OE-17NH-9BKC","Dermacol Satin Make-up Base for a Matte, Pore and Wrinkle Free Finish | for Smooth Beauty Blender and Make Up Brushes Use | Fits in Bag, Case, and Org","1","amazon.co.uk","Seller","ST LEONARDS-ON-SEA","East Sussex","TN38 0JL","","7.00","0","5.00","0","0","0","0","0","0","-1.84","0","0","0","10.16" +"27 Nov 2020 07:28:50 UTC","14489886942","Order","205-6414612-9892303","RR-H6HJ-WVCH","Vsichni dobri rodaci (All Good Citizens) box","1","amazon.co.uk","Seller","PALO ALTO","CA","94303-3838","MarketplaceFacilitator","12.84","1.15","10.99","1.00","0","0","0","0","-2.15","-4.47","0","0","0","19.36" +"27 Nov 2020 07:30:29 UTC","14489886942","Order","205-1578409-3781122","55-DJY4-FR021","Tescoma 400 ml Glass Mug Crema, Clear","1","amazon.co.uk","Seller","Dalkey","","A96 WY42","","11.00","0","6.99","0","0","0","0","0","0","-2.75","0","0","0","15.24" +"27 Nov 2020 14:52:30 UTC","14489886942","Refund","205-0640271-7165118","55-DJY4-FR1282","Tescoma Ice Cream Maker ""Della Casa"", Assorted, 18.8 x 18.8 x 22 cm","1","amazon.co.uk","Seller","Rajkot","GUJARAT","360005","","-59.00","0","-9.99","0","0","0","0","0","0","8.45","0","0","0","-60.54" +"30 Nov 2020 08:49:14 UTC","14489886942","Order","202-1176453-0673156","0J-H81K-7HGG","Babovresky 3","1","amazon.co.uk","Seller","München","","81549","","12.99","0","7.99","0","0","0","0","0","0","-3.71","0","0","0","17.27" +"30 Nov 2020 08:49:21 UTC","14489886942","Order","202-7597415-3187553","41-JBNF-UO32","Pat a Mat (A je to) 1-4 collection","1","amazon.co.uk","Seller","bristol","avon","BS3 4LJ","","24.99","0","6.00","0","0","0","0","0","0","-5.24","0","0","0","25.75" +"30 Nov 2020 08:49:35 UTC","14489886942","Order","203-3185192-6877165","EE-L6KE-S7IV","Ostre sledovane vlaky (Closely Watched Trains) paper sleeve","1","amazon.co.uk","Seller","slapton","bucks","LU7 9BZ","","9.99","0","6.00","0","0","0","0","0","0","-2.95","0","0","0","13.04" +"30 Nov 2020 08:49:59 UTC","14489886942","Order","202-4691172-7446740","4J-JU3N-K8RH","S Tebou Me Bavi Svet","1","amazon.co.uk","Seller","Cheltenham","","GL52 2QS","","3.99","0","6.00","0","0","0","0","0","0","-2.03","0","0","0","7.96" +"30 Nov 2020 08:50:36 UTC","14489886942","Order","026-9803959-8814707","FU-9ZJ2-R9B8","Dermacol Satin Make Up - 15 g","1","amazon.co.uk","Seller","Bournemouth","Dorset","BH1 4SJ","","9.99","0","5.00","0","0","0","0","0","0","-2.29","0","0","0","12.70" +"30 Nov 2020 08:50:36 UTC","14489886942","Order","026-3955817-5844329","TF-0N8B-BKXE","Marlenka Classic Honey Nuggets 250 g","1","amazon.co.uk","Seller","ENFIELD","Middx","EN1 3PD","","6.99","0","6.00","0","0","0","0","0","0","-1.99","0","0","0","11.00" +"30 Nov 2020 08:51:59 UTC","14489886942","Order","203-9023001-7985153","TF-0N8B-BKXE","Marlenka Classic Honey Nuggets 250 g","1","amazon.co.uk","Seller","Down Ampney","Gloucestershire","GL7 5BD","","6.99","0","6.00","0","0","0","0","0","0","-1.99","0","0","0","11.00" +"30 Nov 2020 08:54:29 UTC","14489886942","Order","204-6296431-4374732","55-KOH-FR3465","Natural Flat Wood Toothpicks, 500/Pack","1","amazon.co.uk","Seller","Oslo","","0557","","1.00","0","6.99","0","0","0","0","0","0","-1.22","0","0","0","6.77" +"30 Nov 2020 08:54:29 UTC","14489886942","Order","205-6124158-7660353","FQ-NJJI-S0VQ","Marlenka Pachlava - Shelf Life","1","amazon.co.uk","Seller","SUTTON","","SM2 5TQ","","14.99","0","3.50","0","0","0","0","0","0","-2.83","0","0","0","15.66" +"30 Nov 2020 08:54:29 UTC","14489886942","Order","205-6124158-7660353","0L-X3WD-LRYX","Napoleons- Marlenka 6 per Box","1","amazon.co.uk","Seller","SUTTON","","SM2 5TQ","","11.99","0","3.50","0","0","0","0","0","0","-2.37","0","0","0","13.12" +"30 Nov 2020 08:57:15 UTC","14489886942","Order","026-1121283-7028320","G1-1JOD-BNKP","The Painted Bird / Nabarvene ptace DVD 2019","1","amazon.co.uk","Seller","CLYDEBANK","West Dunbartionshire","G81 6PZ","","20.15","0","6.00","0","0","0","0","0","0","-4.50","0","0","0","21.65" +"30 Nov 2020 08:57:35 UTC","14489886942","Order","203-6865381-1569168","55-DJY4-FR1092","Tescoma Delícia Beehive Mould","1","amazon.co.uk","Seller","RADSTOCK","","BA3 4AS","","3.99","0","5.00","0","0","0","0","0","0","-1.38","0","0","0","7.61" +"30 Nov 2020 08:58:04 UTC","14489886942","Order","204-9486645-2006751","55-DJY4-FR1092","Tescoma Delícia Beehive Mould","1","amazon.co.uk","Seller","OXFORD","","OX3 8LD","","3.99","0","5.00","0","0","0","0","0","0","-1.38","0","0","0","7.61" +"30 Nov 2020 09:00:35 UTC","14489886942","Order","202-3023197-0829935","ML-10ZA-MFBY","Na samote u lesa by Zdenek Sver?k","1","amazon.co.uk","Seller","LIVERPOOL","Merseyside","L4 7UG","","5.99","0","6.00","0","0","0","0","0","0","-2.33","0","0","0","9.66" +"30 Nov 2020 09:01:39 UTC","14489886942","Order","204-5723702-2646756","WB-HKGA-TZSB","Slavnosti snezenek (The Snowdrop Festival) paper sleeve","1","amazon.co.uk","Seller","ASHFORD","Kent","TN27 9TN","","9.99","0","3.50","0","0","0","0","0","0","-2.56","0","0","0","10.93" +"30 Nov 2020 09:01:39 UTC","14489886942","Order","204-5723702-2646756","UD-T5KQ-FSZV","Rozmarné Léto (Capricious Summer)","1","amazon.co.uk","Seller","ASHFORD","Kent","TN27 9TN","","9.99","0","3.50","0","0","0","0","0","0","-2.56","0","0","0","10.93" +"30 Nov 2020 09:02:27 UTC","14489886942","Order","204-4078903-6263560","C0-I5K6-XFG0","Dermacol Natural almond day cream tube","1","amazon.co.uk","Seller","BONNYRIGG","","EH19 3GA","","9.99","0","6.00","0","0","0","0","0","0","-2.45","0","0","0","13.54" +"30 Nov 2020 09:03:20 UTC","14489886942","Order","205-0604963-2551553","0L-X3WD-LRYX","Napoleons- Marlenka 6 per Box","1","amazon.co.uk","Seller","Letchworth Garden City","Hertfordshire","SG6 3HS","","11.99","0","6.00","0","0","0","0","0","0","-2.75","0","0","0","15.24" +"30 Nov 2020 09:03:37 UTC","14489886942","Order","203-3601844-7547562","55-DJY4-FR1092","Tescoma Delícia Beehive Mould","1","amazon.co.uk","Seller","LONDON","","NW8 9NS","","3.99","0","23.99","0","0","0","0","0","0","-4.28","0","0","0","23.70" +"30 Nov 2020 09:04:28 UTC","14489886942","Order","026-7203683-5205951","10-3MRG-JJDO","Zitra vstanu a oparim se cajem (Tomorrow I'll Wake Up and Scald Myself with Tea)","1","amazon.co.uk","Seller","MIDDLESBROUGH","Cleveland","TS7 8EL","","9.95","0","28.99","0","0","0","0","0","0","-6.46","0","0","0","32.48" +"30 Nov 2020 09:04:31 UTC","14489886942","Order","203-7055139-4439504","PW-TQ7R-5N2D","Honey Cake MARLENKA® with Walnuts - 100% Natural - 800g","1","amazon.co.uk","Seller","KIRKLAND","WA","98034-1500","MarketplaceFacilitator","28.99","0","11.99","0","0","0","0","0","0","-6.27","0","0","0","34.71" +"30 Nov 2020 09:04:35 UTC","14489886942","Order","203-5397828-6941142","RL-3HTK-YQ84","Alpa Francovka Czech Alcohol Herbal Tincture Essential Oils (Alpa Lesna 160ml)","1","amazon.co.uk","Seller","DELAPRE","","NN4 8PE","","6.99","0","5.00","0","0","0","0","0","0","-1.83","0","0","0","10.16" +"30 Nov 2020 09:05:04 UTC","14489886942","Order","026-6680509-8081968","55-DJY4-FR1092","Tescoma Delícia Beehive Mould","1","amazon.co.uk","Seller","FOLKESTONE","","CT20 1JZ","","3.99","0","5.00","0","0","0","0","0","0","-1.38","0","0","0","7.61" +"30 Nov 2020 09:05:36 UTC","14489886942","Order","202-1736766-2337127","55-DJY4-FR1092","Tescoma Delícia Beehive Mould","1","amazon.co.uk","Seller","leeds","","LS10 4WJ","","3.99","0","5.00","0","0","0","0","0","0","-1.38","0","0","0","7.61" +"30 Nov 2020 09:06:00 UTC","14489886942","Order","203-3720477-0554735","C2-GOLP-YYFR","Dermacol Matte Mania Liquid Matte Lip Colour (No. 11)","1","amazon.co.uk","Seller","NEWPORT","Gwent","NP19 0NA","","6.99","0","5.00","0","0","0","0","0","0","-1.83","0","0","0","10.16" +"30 Nov 2020 09:06:30 UTC","14489886942","Order","204-2165749-0670719","55-DJY4-FR1092","Tescoma Delícia Beehive Mould","1","amazon.co.uk","Seller","ESHER","Surrey","KT10 9UA","","3.99","0","5.00","0","0","0","0","0","0","-1.38","0","0","0","7.61" +"30 Nov 2020 09:06:37 UTC","14489886942","Order","202-3919133-6939562","55-DJY4-FR1092","Tescoma Delícia Beehive Mould","2","amazon.co.uk","Seller","Bordon","","GU350QF","","7.98","0","6.00","0","0","0","0","0","0","-2.14","0","0","0","11.84" +"30 Nov 2020 09:07:45 UTC","14489886942","Order","026-8153174-2916358","0H-LNUQ-CVIF","Indulona Universal Hand Protection Cream 100 ml / 92 g by Indulona","2","amazon.co.uk","Seller","ASHFORD","","TN24 9EB","","15.98","0","6.00","0","0","0","0","0","0","-3.36","0","0","0","18.62" +"30 Nov 2020 09:08:27 UTC","14489886942","Order","202-1126505-0291549","55-DJY4-FR1092","Tescoma Delícia Beehive Mould","1","amazon.co.uk","Seller","ASHFORD","Middlesex","TW15 1UY","","3.99","0","5.00","0","0","0","0","0","0","-1.38","0","0","0","7.61" +"30 Nov 2020 09:08:34 UTC","14489886942","Order","026-4020112-4570756","FU-9ZJ2-R9B8","Dermacol Satin Make Up - 15 g","1","amazon.co.uk","Seller","Guernsey","","GY1 2BP","","9.99","0","5.00","0","0","0","0","0","0","-2.29","0","0","0","12.70" +"30 Nov 2020 09:09:17 UTC","14489886942","Order","204-9218225-8734710","55-DJY4-FR1092","Tescoma Delícia Beehive Mould","1","amazon.co.uk","Seller","EDINBURGH","MIDLOTHIAN","EH5 1QS","","3.99","0","5.00","0","0","0","0","0","0","-1.38","0","0","0","7.61" +"30 Nov 2020 09:11:58 UTC","14489886942","Order","204-4471019-0113962","VK-VFSG-SZG6","BEER - BEER BATH SALT 150 GV CANVAS BAG PIVRNEC Czech beer spa","1","amazon.co.uk","Seller","Dublin","","","","11.99","0","6.99","0","0","0","0","0","0","-2.90","0","0","0","16.08" +"30 Nov 2020 09:14:40 UTC","14489886942","Order","206-2540337-7479543","55-DJY4-FR425","Tescoma Protective Glove Presto, Size M, Assorted, 26 x 13 x 1.4 cm","1","amazon.co.uk","Seller","NEWRY","Northern ireland","BT35 9PB","","8.00","0","5.00","0","0","0","0","0","0","-1.99","0","0","0","11.01" +"30 Nov 2020 09:15:41 UTC","14489886942","Order","026-3443071-8876324","RL-3HTK-YQ84","Alpa Francovka Czech Alcohol Herbal Tincture Essential Oils (Alpa Lesna 160ml)","5","amazon.co.uk","Seller","Budapest","","1173","","34.95","0","7.99","0","0","0","0","0","0","-3.50","0","0","0","39.44" +"30 Nov 2020 09:16:12 UTC","14489886942","Order","206-8022110-6228353","55-DJY4-FR1092","Tescoma Delícia Beehive Mould","1","amazon.co.uk","Seller","BOLTON","","BL3 5PU","","3.99","0","5.00","0","0","0","0","0","0","-1.38","0","0","0","7.61" +"30 Nov 2020 09:16:50 UTC","14489886942","Order","026-8401763-1913158","55-DJY4-FR1092","Tescoma Delícia Beehive Mould","1","amazon.co.uk","Seller","DERBY","","DE73 5AP","","3.99","0","5.00","0","0","0","0","0","0","-1.38","0","0","0","7.61" +"30 Nov 2020 09:19:10 UTC","14489886942","Order","205-6450218-3061944","G1-1JOD-BNKP","The Painted Bird / Nabarvene ptace DVD 2019","1","amazon.co.uk","Seller","Faro","Algarve","8000-222","","20.15","0","7.99","0","0","0","0","0","0","-4.81","0","0","0","23.33" diff --git a/Mapp.BusinessLogic.Transactions.Tests/TestData/AmazonIT.csv b/Mapp.BusinessLogic.Transactions.Tests/TestData/AmazonIT.csv new file mode 100644 index 0000000..0ab1a36 --- /dev/null +++ b/Mapp.BusinessLogic.Transactions.Tests/TestData/AmazonIT.csv @@ -0,0 +1,32 @@ +"Include transazioni relative sia a Vendita su Amazon sia Logistica di Amazon." +"Tutti gli importi sono espressi in EUR, se non diversamente specificato." +"Definizioni:" +"Commissioni di vendita: Include commissioni variabili di chiusura e concessioni di procacciamento d'affari" +"Altri costi relativi alle transazioni: includono costi di chargeback per la spedizione e trattenute sulla spedizione." +"Altro: include l'importo delle transazioni non relative all'ordine. Per maggiori informazioni, consulta le colonne ""Tipo"" e ""Descrizione"" per ogni numero d'ordine." +"Data/Ora:","Numero pagamento","Tipo","Numero ordine","SKU","Descrizione","Quantità","Marketplace","Gestione","Città di provenienza dell'ordine","Provincia di provenienza dell'ordine","CAP dell'ordine","modello di riscossione delle imposte","Vendite","imposta sulle vendite dei prodotti","Accrediti per le spedizioni","imposta accrediti per le spedizioni","Accrediti per confezioni regalo","imposta sui crediti confezione regalo","Sconti promozionali","imposta sugli sconti promozionali","Commissioni di vendita","Costi del servizio Logistica di Amazon","Altri costi relativi alle transazioni","Altro","totale" +"2 nov 2020 07:44:33 UTC","14320207982","Ordine","402-2801209-3893924","55-KOH-FR4858","Koh-I - Noor Gioconda seppia scuro matita","2","amazon.it","Venditore","Catania","Catania","95121","","4,60","0","10,20","0","0","0","0","0","-2,28","0","0","0","12,52" +"2 nov 2020 07:54:36 UTC","14320207982","Ordine","402-8930376-6660333","55-DJY4-FR090","Tescoma Olio per taglieri di Legno, 200 ml, Colori Assortiti","1","amazon.it","Venditore","Verona","","37132","","19,63","0","9,60","0","0","0","0","0","-4,52","0","0","0","24,71" +"2 nov 2020 07:54:59 UTC","14320207982","Ordine","408-9928863-8999541","55-DJY4-FR896","Tescoma 630279 Delicia Sbattitore Manuale, 1 l","1","amazon.it","Venditore","VIMODRONE","MILANO","20090","","19,99","0","9,60","0","0","0","0","0","-4,57","0","0","0","25,02" +"6 nov 2020 06:40:13 UTC","14320207982","Ordine","171-3717841-7655517","72-C6NG-YE91","Extase / Ecstasy","1","amazon.it","Venditore","Roma","Roma","00141","","14,99","0","9,60","0","0","0","0","0","-4,61","0","0","0","19,98" +"6 nov 2020 06:41:26 UTC","14320207982","Ordine","406-9711592-2795564","55-DJY4-FR959","Tescoma Delícia di Natale Mini pirottini, Colori Assortiti, 4 cm, 100","1","amazon.it","Venditore","roma","roma","00195","","9,55","0","9,60","0","0","0","0","0","-2,96","0","0","0","16,19" +"6 nov 2020 06:42:59 UTC","14320207982","Ordine","408-2238040-9809162","55-DJY4-FR1544","Tescoma 707220 Coperchio, Grigio","1","amazon.it","Venditore","CARRAIE","RA","48125","","49,00","0","9,60","0","0","0","0","0","-9,05","0","0","0","49,55" +"6 nov 2020 07:00:21 UTC","14320207982","Ordine","403-9427582-3626768","5D-JY6Y-RTAK","My Sweet Little Village (Vesnicko Ma, Strediskova)","1","amazon.it","Venditore","Udine","UD","33100","","8,03","0","9,60","0","0","0","0","0","-3,53","0","0","0","14,10" +"9 nov 2020 07:15:11 UTC","14320207982","Ordine","402-0325395-3644358","55-KOH-FR4225","Koh-I-Noor 9600100303 KS 10 mm Tack (confezione da 150)","1","amazon.it","Venditore","MESSINA","Messina","98128","","2,30","0","9,60","0","0","0","0","0","-1,84","0","0","0","10,06" +"9 nov 2020 07:18:06 UTC","14320207982","Ordine","402-8236178-3987538","55-DJY4-FR1544","Tescoma 707220 Coperchio, Grigio","1","amazon.it","Venditore","Magliano Sabina","Rieti","02046","","49,00","0","9,60","0","0","0","0","0","-9,05","0","0","0","49,55" +"10 nov 2020 01:45:17 UTC","14403970532","Trasferimento","","","Al conto che termina con: 907","","","","","","","","0","0","0","0","0","0","0","0","0","0","0","-301,85","-301,85" +"11 nov 2020 07:27:23 UTC","14403970532","Ordine","402-9836344-3036350","64-3M32-1NSA","Ryor Crema protettiva leggera con crema agli estratti vegetali","1","amazon.it","Venditore","Genova","GE","16148","","20,99","0","9,60","0","0","0","0","0","-4,73","0","0","0","25,86" +"11 nov 2020 07:30:25 UTC","14403970532","Ordine","407-5328980-7669959","55-DJY4-FR896","Tescoma 630279 Delicia Sbattitore Manuale, 1 l","1","amazon.it","Venditore","Santa Domenica Vittoria","Messina","98030","","21,99","0","9,60","0","0","0","0","0","-4,88","0","0","0","26,71" +"13 nov 2020 07:51:21 UTC","14403970532","Ordine","406-3380237-8794743","55-DJY4-FR095","Tescoma 379890 Azza Tagliere Rettangolare, Bambù, 40 x 26 cm, 1 Pezzo","1","amazon.it","Venditore","Oggiono fraz.Imberido","Lecco","23848","","59,75","0","9,60","0","0","0","0","0","-10,71","0","0","0","58,64" +"16 nov 2020 08:08:04 UTC","14403970532","Ordine","404-1632544-5077125","55-DJY4-FR896","Tescoma 630279 Delicia Sbattitore Manuale, 1 l","1","amazon.it","Venditore","Lanuvio","RM","00075","","21,99","0","9,60","0","0","0","0","0","-4,88","0","0","0","26,71" +"18 nov 2020 07:45:10 UTC","14403970532","Ordine","402-2889706-4332312","55-DJY4-FR318","Tescoma 420588 Presto Spago Da Cucina","1","amazon.it","Venditore","São Paulo","SP","05302031","","10,00","0","11,00","0","0","0","0","0","-3,24","0","0","0","17,76" +"23 nov 2020 08:36:06 UTC","14403970532","Ordine","402-5469580-3464348","55-DJY4-FR1063","Tescoma 631018 Delicia Tagliabiscotti Ferro di Cavallo Piccolo, 4.5x4.9 cm","1","amazon.it","Venditore","BOJANO","Campobasso","86021","","5,99","0","9,60","0","0","0","0","0","-2,41","0","0","0","13,18" +"24 nov 2020 02:12:04 UTC","14489916462","Trasferimento","","","Al conto che termina con: 907","","","","","","","","0","0","0","0","0","0","0","0","0","0","0","-168,86","-168,86" +"25 nov 2020 08:03:18 UTC","14489916462","Ordine","171-2327670-0137169","55-DJY4-FR1544","Tescoma 707220 Coperchio, Vetro, Grigio","1","amazon.it","Venditore","Monsano","AN","60030","","59,00","0","9,60","0","0","0","0","0","-10,60","0","0","0","58,00" +"27 nov 2020 07:22:37 UTC","14489916462","Ordine","171-4764206-5015502","55-KOH-FR1611","100 pz. EPS Bicchiere termico per vin brulé, in polistirolo ""PUPAZZO DI NEVE"" 200 ml","2","amazon.it","Venditore","Noventa di Piave","VE","30020","","38,00","0","10,20","0","0","0","0","0","-7,44","0","0","0","40,76" +"27 nov 2020 07:42:12 UTC","14489916462","Ordine","171-0115665-5383579","5D-JY6Y-RTAK","My Sweet Little Village (Vesnicko Ma, Strediskova)","1","amazon.it","Venditore","Trieste","TS","34127","","8,03","0","9,60","0","0","0","0","0","-3,53","0","0","0","14,10" +"30 nov 2020 08:49:39 UTC","14489916462","Ordine","403-5352763-2690706","55-DJY4-FR764","Tescoma 623300 Delicia Tortiera Apribile con Fondo Antigoccia, Diametro 20 cm","1","amazon.it","Venditore","cassinetta di lugagnano","Milano","20081","","27,99","0","10,00","0","0","0","0","0","-5,87","0","0","0","32,12" +"30 nov 2020 09:02:52 UTC","14489916462","Ordine","405-5678669-4326768","55-DJY4-FR328","Tescoma Presto Colino, Acciaio Inossidabile, Argento, 6 cm","1","amazon.it","Venditore","Cavaglia'","BI","13881","","12,19","0","10,00","0","0","0","0","0","-3,43","0","0","0","18,76" +"30 nov 2020 09:05:01 UTC","14489916462","Ordine","408-1439478-1724360","CJ-E99W-P03E","Medový dort Marlenka s o?íšky","1","amazon.it","Venditore","Torino","Torino","10152","","24,99","0","26,00","0","0","0","0","0","-7,88","0","0","0","43,11" +"30 nov 2020 09:10:37 UTC","14489916462","Ordine","407-6577080-5421945","55-DJY4-FR1063","Tescoma 631018 Delicia Tagliabiscotti Ferro di Cavallo Piccolo, 4.5x4.9 cm","1","amazon.it","Venditore","BORGOROSE","Rieti","02021","","5,99","0","10,00","0","0","0","0","0","-2,47","0","0","0","13,52" +"30 nov 2020 09:14:18 UTC","14489916462","Ordine","402-3344194-2592364","CGE00031","Codenames","1","amazon.it","Venditore","Roma","RM","00187","","19,58","0","10,00","0","0","0","0","0","-4,57","0","0","0","25,01" diff --git a/Mapp.BusinessLogic.Transactions.Tests/TestData/AmazonJP.csv b/Mapp.BusinessLogic.Transactions.Tests/TestData/AmazonJP.csv new file mode 100644 index 0000000..ab2f235 --- /dev/null +++ b/Mapp.BusinessLogic.Transactions.Tests/TestData/AmazonJP.csv @@ -0,0 +1,33 @@ +"Amazon oiT[rXAttBg by Amazon (FBA) " +"ŵȂꍇAPʂ͉~" +"`F" +"̔萔FJeS[񗿂Ɣ̔萔܂܂܂B" +"gUNVɊւ邻̑̎萔FFBA z̃`[WobN܂́Aoiҏoׂ̔zɂ萔" +"̑FȊOɊւzBڂ́Aeԍ̃gUNV̎ނƁÅeڂB" +"t/","ϔԍ","gUNV̎","ԍ","SKU","","","Amazon oiT[rX","ttBg","s","s{","X֔ԍ","ŋ^","i","i̔","z","z̐ŋ","Mtg萔","MtgNWbg̐ŋ","Amazon|Cg̔p","v[Vz","v[V̐ŋ","萔","FBA 萔","gUNVɊւ邻̑̎萔","̑","v" +"2020/10/02 03:06:48JST","10728103103","O","","","SellerPayments_Report_Fee_Subscription","","Amazon.co.jp","","","","","","0","0","0","0","0","0","0","0","0","0","0","0","-1,252.00","-1,252.00" +"2020/10/03 10:23:24JST","10728103103","U","","","̌ցF 907","","","","","","","","0","0","0","0","0","0","0","0","0","0","0","0","-40,804.00","-40,804.00" +"2020/10/05 15:38:36JST","10728103103","","503-4026065-1839044","55-DJY4-FR1709","Tescoma tBiCt \jbN 18cm","1","amazon.jp","oi","","s","169-0051","","2,990.00","0","673.00","67.00","0","0","-1.00","0","0","-559.00","0","0","0","3,170.00" +"2020/10/07 16:15:32JST","10728103103","","250-1399036-1644621","HF-FH1R-09XF","[Kamill]J~[GLXAAoJhAAGxzJ~[nhlCN[CeVu 100ml x 3 [?","1","amazon.jp","oi","","Nagasaki-ken","850-0854","","4,536.00","454.00","673.00","67.00","0","0","0","0","0","-573.00","0","0","0","5,157.00" +"2020/10/09 15:06:15JST","10728103103","","503-4787647-1999008","H2-6E60-GNIS","The Painted Bird/Nabarvene ptace 2x BD / yCebhEo[h/ْ[̒","1","amazon.jp","oi","","s","151-0062","","6,273.00","627.00","673.00","67.00","0","0","0","0","0","-1,286.00","0","0","0","6,354.00" +"2020/10/09 15:09:44JST","10728103103","","503-3824565-3763852","55-DJY4-FR1709","Tescoma tBiCt \jbN 18cm","1","amazon.jp","oi","","","838-0051","","2,990.00","0","673.00","67.00","0","0","-1.00","0","0","-559.00","0","0","0","3,170.00" +"2020/10/12 16:13:31JST","10728103103","","503-4026326-5019812","NP-1YZP-CPAU","Dermacol Casual Daypack 210","1","amazon.jp","oi","","Shizuoka-ken","430-0801","","2,329.00","233.00","673.00","67.00","0","0","0","0","0","-330.00","0","0","0","2,972.00" +"2020/10/14 15:38:24JST","10728103103","","503-2557827-2771020","KA-CB4B-9OLA","Dermacol Make-Up Cover Waterproof Hypoallergenic for All Skin Types - 222 [sAi]","1","amazon.jp","oi","","Tokyo-to","136-0073","","2,718.00","272.00","673.00","67.00","0","0","0","0","0","-373.00","0","0","0","3,357.00" +"2020/10/14 15:39:27JST","10728103103","","250-3516975-4964667","66-KL7Z-QZLR","The Painted Bird/Nabarvene ptace 2x DVD 2019 ْ[̒ / yCebhEo[h","1","amazon.jp","oi","","{","561-0833","","4,182.00","418.00","673.00","67.00","0","0","0","0","0","-941.00","0","0","0","4,399.00" +"2020/10/16 15:48:36JST","10738140743","","250-3113245-6739857","NP-1YZP-CPAU","Dermacol Casual Daypack 210","1","amazon.jp","oi","","X","036-8254","","2,329.00","233.00","673.00","67.00","0","0","0","0","0","-330.00","0","0","0","2,972.00" +"2020/10/16 15:52:05JST","10738140743","","250-9417456-2294231","H2-6E60-GNIS","The Painted Bird/Nabarvene ptace 2x BD / yCebhEo[h/ْ[̒","1","amazon.jp","oi","","m","460-0015","","6,273.00","627.00","673.00","67.00","0","0","0","0","0","-1,286.00","0","0","0","6,354.00" +"2020/10/16 15:53:51JST","10738140743","","250-6942064-9059806","M6-FNAD-QVP4","Nema barikada (Silent Barricade)","1","amazon.jp","oi","","{","565-0835","","3,990.00","0","673.00","67.00","0","0","0","0","0","-850.00","0","0","0","3,880.00" +"2020/10/16 16:00:18JST","10738140743","","250-4835911-2657441","WY-1E9X-IRH2","Dermacol Make-up Cover (226)","1","amazon.jp","oi","","Fukui-ken","915-0747","","2,329.00","233.00","673.00","67.00","0","0","0","0","0","-330.00","0","0","0","2,972.00" +"2020/10/17 09:52:59JST","10738140743","U","","","̌ցF 907","","","","","","","","0","0","0","0","0","0","0","0","0","0","0","0","-22,947.00","-22,947.00" +"2020/10/19 15:58:36JST","10738140743","","249-3900482-2492665","H2-6E60-GNIS","The Painted Bird/Nabarvene ptace 2x BD / yCebhEo[h/ْ[̒","1","amazon.jp","oi","","Qn","371-0015","","6,273.00","627.00","673.00","67.00","0","0","0","0","0","-1,286.00","0","0","0","6,354.00" +"2020/10/19 16:03:57JST","10738140743","","503-4040145-3092630","66-KL7Z-QZLR","The Painted Bird/Nabarvene ptace 2x DVD 2019 ْ[̒ / yCebhEo[h","1","amazon.jp","oi","","kC","068-1144","","4,182.00","418.00","673.00","67.00","0","0","0","0","0","-941.00","0","0","0","4,399.00" +"2020/10/19 16:13:13JST","10738140743","","249-7511512-4871069","66-KL7Z-QZLR","The Painted Bird/Nabarvene ptace 2x DVD 2019 ْ[̒ / yCebhEo[h","1","amazon.jp","oi","","R`","990-9530","","4,182.00","418.00","673.00","67.00","0","0","0","0","0","-941.00","0","0","0","4,399.00" +"2020/10/23 15:20:58JST","10738140743","","249-7038224-4547846","H2-6E60-GNIS","The Painted Bird/Nabarvene ptace 2x BD / yCebhEo[h/ْ[̒","1","amazon.jp","oi","","s","167-0032","","6,273.00","627.00","673.00","67.00","0","0","0","0","0","-1,286.00","0","0","0","6,354.00" +"2020/10/26 16:53:26JST","10738140743","","250-4186891-4939836","H8-OO4C-HBUI","Pat a Mat (A je to) 5-8 4DVD collection","1","amazon.jp","oi","","ʌ","331-0823","","8,173.00","817.00","450.00","45.00","0","0","0","0","0","-1,563.00","0","0","0","7,922.00" +"2020/10/26 16:53:26JST","10738140743","","250-4186891-4939836","WY-QCJU-7GLL","Pat a Mat (A je to) 1-4 4DVD collection","1","amazon.jp","oi","","ʌ","331-0823","","5,445.00","545.00","450.00","45.00","0","0","0","0","0","-1,113.00","0","0","0","5,372.00" +"2020/10/26 16:55:21JST","10738140743","","250-2952223-4323800","66-KL7Z-QZLR","The Painted Bird/Nabarvene ptace 2x DVD 2019 ْ[̒ / yCebhEo[h","1","amazon.jp","oi","","ꌧ","521-0202","","4,182.00","418.00","673.00","67.00","0","0","0","0","0","-941.00","0","0","0","4,399.00" +"2020/10/28 17:45:21JST","10738140743","","250-7387581-1386217","66-KL7Z-QZLR","The Painted Bird/Nabarvene ptace 2x DVD 2019 ْ[̒ / yCebhEo[h","1","amazon.jp","oi","","s","202-0022","","4,182.00","418.00","673.00","67.00","0","0","0","0","0","-941.00","0","0","0","4,399.00" +"2020/10/30 16:17:04JST","10748937893","","249-5597511-5807057","55-KOH-FR6462","Rqm[ cz_[ N KH5343","1","amazon.jp","oi","","","824-0031","","1,990.00","0","673.00","67.00","0","0","-1.00","0","0","-409.00","0","0","0","2,320.00" +"2020/10/30 16:25:11JST","10748937893","","503-7734120-6709442","H2-6E60-GNIS","The Painted Bird/Nabarvene ptace 2x BD / yCebhEo[h/ْ[̒","1","amazon.jp","oi","","s","134-0084","","6,273.00","627.00","673.00","67.00","0","0","0","0","0","-1,286.00","0","0","0","6,354.00" +"2020/10/30 16:26:56JST","10748937893","","250-1404749-9964667","NO-3EO0-KNSL","yKOH-I-NOORzRqm[ 5.6~ hbv cz_[ V[gTCY 5310","1","amazon.jp","oi","","{","559-0001","","900.00","90.00","673.00","67.00","0","0","0","0","0","-260.00","0","0","0","1,470.00" +"2020/10/31 10:54:06JST","10748937893","U","","","̌ցF 907","","","","","","","","0","0","0","0","0","0","0","0","0","0","0","0","-42,436.00","-42,436.00" diff --git a/Mapp.BusinessLogic.Transactions.Tests/TestData/AmazonMX.csv b/Mapp.BusinessLogic.Transactions.Tests/TestData/AmazonMX.csv new file mode 100644 index 0000000..af5b8db --- /dev/null +++ b/Mapp.BusinessLogic.Transactions.Tests/TestData/AmazonMX.csv @@ -0,0 +1,15 @@ +"Incluye transacciones de Amazon Marketplace, Fulfillment by Amazon (FBA) y Amazon Webstore" +"Todos los importes en dólares, a menos que se especifique" +"Definiciones:" +"Impuesto de venta cobrado: Incluye impuesto de venta cobrado a los compradores por ventas de productos, envíos y envoltorio de regalo." +"Tarifas de venta: Incluye tarifas de cierre variable y de remisión." +"Tarifas de otra transacción: Incluye reintegros de envío, retenciones de envío y tarifas de cobro de impuestos de venta." +"Otro: Incluye otros importes de transacción no relacionados con el pedido. Para obtener más detalles, consulta las columnas ""Tipo"" y ""Descripción"" para cada Id. de pedido." +"fecha/hora","Id. de liquidación","tipo ","Id. del pedido","sku","descripción","cantidad","marketplace","cumplimiento","ciudad del pedido","estado del pedido","código postal del pedido","modelo de recaudación de impuestos","ventas de productos","impuesto de ventas de productos","créditos de envío","impuesto de abono de envío","créditos por envoltorio de regalo","impuesto de créditos de envoltura","descuentos promocionales","impuesto de reembolsos promocionales","impuesto de retenciones en la plataforma","tarifas de venta","tarifas fba","tarifas de otra transacción","otro","total" +"6 nov. 2020 6:22:34 GMT-8","13522125751","Trasferir","","","A la cuenta que finaliza en: 231","","","","","","","","0","0","0","0","0","0","0","0","0","0","0","0","-720.63","-720.63" +"15 nov. 2020 23:43:16 GMT-8","13522125751","Pedido","702-5224514-1641041","55-KOH-FR7263","Lighthouse Hardcover Stamp Album Stockbook with 16 Black Pages, Black, LS4/8 by Lighthouse","1","amazon.com.mx","Vendedor","CIUDAD DE MEXICO","CIUDAD DE MEXICO","03200","","872.87","0","705.00","0","0","0","0","0","0","-157.78","0","0","0","1,420.09" +"15 nov. 2020 23:49:02 GMT-8","13522125751","Pedido","702-3444965-9881026","GV-GY46-VBX2","Tescoma Delícia - Cuenco para masa (26 cm)","1","amazon.com.mx","Vendedor","Mexico City","Colonia Granada/Delegación Miguel Hidalgo","11520","","1,372.05","0","705.00","0","0","0","0","0","0","-311.56","0","0","0","1,765.49" +"20 nov. 2020 5:50:54 GMT-8","13566661631","Trasferir","","","A la cuenta que finaliza en: 231","","","","","","","","0","0","0","0","0","0","0","0","0","0","0","0","-35.25","-35.25" +"24 nov. 2020 23:45:57 GMT-8","13566661631","Pedido","702-1622704-2942625","GV-GY46-VBX2","Tescoma Delícia - Cuenco para masa (26 cm)","1","amazon.com.mx","Vendedor","GUADALAJARA","JALISCO","44600","","1,372.05","0","705.00","0","0","0","0","0","0","-311.56","0","0","0","1,765.49" +"24 nov. 2020 23:50:41 GMT-8","13566661631","Pedido","701-7796827-2343437","GV-GY46-VBX2","Tescoma Delícia - Cuenco para masa (26 cm)","1","amazon.com.mx","Vendedor","Agua Dulce","Veracruz","96620","","1,372.05","0","705.00","0","0","0","0","0","0","-311.56","0","0","0","1,765.49" +"26 nov. 2020 23:15:36 GMT-8","13566661631","Pedido","701-0090984-6490672","55-DJY4-FR1542","Tescoma Fondue Gel siesta, varios colores","1","amazon.com.mx","Vendedor","SAN PEDRO GARZA GARCIA","NUEVO LEON","66297","","473.98","0","705.00","0","0","0","0","0","0","-176.85","0","0","0","1,002.13" diff --git a/Mapp.BusinessLogic.Transactions.Tests/TestData/AmazonNL.csv b/Mapp.BusinessLogic.Transactions.Tests/TestData/AmazonNL.csv new file mode 100644 index 0000000..22e0cda --- /dev/null +++ b/Mapp.BusinessLogic.Transactions.Tests/TestData/AmazonNL.csv @@ -0,0 +1,13 @@ +"Omvat transacties van Amazon Marketplace, Fulfillment by Amazon (FBA) en Amazon Webstore" +"Alle bedragen in EUR, tenzij anders vermeld" +"Definities:" +"Verkoopkosten: Inclusief variabele afsluitkosten en verwijzingsvergoedingen." +"Overige transactiekosten: Inclusief terugvorderingen van verzendkosten, holdbackkosten voor verzending, kosten per item en inningskosten voor omzetbelasting." +"Overig: Inclusief transactiebedragen die niet aan bestellingen zijn gerelateerd. Raadpleeg voor meer informatie de kolommen 'Type' en 'Beschrijving' van ieder bestelnummer." +"datum/tijd","schikkings-ID","type","bestelnummer","sku","beschrijving","aantal","marketplace","fulfillment","bestelling stad","status bestelling","bestelling per post","verkoop van producten","Verzendtegoeden","kredietpunten cadeauverpakking","promotiekortingen","verkoopkosten","fba-vergoedingen","overige transactiekosten","overige","totaal" +"4 nov 2020 07:12:22 GMT+00:00","13324284422","Bestelling","402-8578403-5591569","1L-5ZLW-8BGE","Obcan Havel [Citizen Havel]","1","amazon.nl","Verkoper","Rotterdam","","3084 LD","13,01","8,99","0","0","-4,11","0","0","0","17,89" +"4 nov 2020 07:15:05 GMT+00:00","13324284422","Bestelling","402-3976284-6441911","55-KOH-FR0157","Koh-I-Noor Gioconda Pastel Potlood Sienna","1","amazon.nl","Verkoper","Ommen","","7731SR","1,00","8,99","0","0","-1,50","0","0","0","8,49" +"6 nov 2020 06:46:35 GMT+00:00","13324284422","Bestelling","404-1808351-0947511","MW-T17B-RKSW","The Painted Bird / Nabarvene ptace BD 2019","1","amazon.nl","Verkoper","heerhugowaard","noord holland","1703NX","48,49","8,99","0","0","-9,43","0","0","0","48,05" +"20 nov 2020 07:54:53 GMT+00:00","13324284422","Bestelling","405-7455119-8073135","55-DJY4-FR846","Tescoma Cake Loosening Tool Delicia, gesorteerd, 30 x 7 x 2,2 cm","1","amazon.nl","Verkoper","Brugge","","8000","7,99","6,99","0","0","-2,25","0","0","0","12,73" +"25 nov 2020 08:02:04 GMT+00:00","13324284422","Bestelling","405-6559122-5794724","55-DJY4-FR846","Tescoma Cake Loosening Tool Delicia, gesorteerd, 30 x 7 x 2,2 cm","1","amazon.nl","Verkoper","Brugge","","8000","7,99","6,99","0","0","-2,25","0","0","0","12,73" +"30 nov 2020 08:59:16 GMT+00:00","13324284422","Bestelling","407-8817031-7613904","CGE00031","Codenames","1","amazon.nl","Verkoper","Mechelen","","6281NM","16,99","6,99","0","0","-3,60","0","0","0","20,38" diff --git a/Mapp.BusinessLogic.Transactions.Tests/TestData/PayPal.csv b/Mapp.BusinessLogic.Transactions.Tests/TestData/PayPal.csv new file mode 100644 index 0000000..8e65983 --- /dev/null +++ b/Mapp.BusinessLogic.Transactions.Tests/TestData/PayPal.csv @@ -0,0 +1,141 @@ +"Date","Time","Time Zone","Description","Currency","Gross","Fee","Net","Balance","Transaction ID","From Email Address","Name","Bank Name","Bank Account","Shipping and Handling Amount","Sales Tax","Invoice ID","Reference Txn ID" +"10/1/2020","00:49:10","Europe/Prague","eBay Auction Payment","USD","152.24","-8.52","143.72","4,355.79","6CP060942Y551701G","To get contact details, please visit your Order details on MyeBay","Kamil Kropacek","","","40.99","-7.99","","" +"10/1/2020","00:49:10","Europe/Prague","Tax collected by partner","USD","-7.99","0.00","-7.99","4,347.80","3XP392724R706050P","To get contact details, please visit your Order details on MyeBay","","","","40.99","0.00","","6CP060942Y551701G" +"10/1/2020","00:49:12","Europe/Prague","eBay Auction Payment","USD","12.32","-0.97","11.35","4,359.15","8AP69374UJ3001204","To get contact details, please visit your Order details on MyeBay","Kamil Kropacek","","","6.99","-0.38","","" +"10/1/2020","00:49:12","Europe/Prague","Tax collected by partner","USD","-0.38","0.00","-0.38","4,358.77","3V612279CV7995938","To get contact details, please visit your Order details on MyeBay","","","","6.99","0.00","","8AP69374UJ3001204" +"10/1/2020","07:22:24","Europe/Prague","Express Checkout Payment","USD","83.95","-4.83","79.12","4,437.89","9RT47188VN8497449","spookygirl61@hotmail.com","cheri samsel","","","15.00","0.00","c14955895914659.2","" +"10/1/2020","07:52:56","Europe/Prague","eBay Auction Payment","USD","27.48","-1.78","25.70","4,463.59","2Y211373HJ517381C","To get contact details, please visit your Order details on MyeBay","David Heslin","","","6.99","-2.50","","" +"10/1/2020","07:52:56","Europe/Prague","Tax collected by partner","USD","-2.50","0.00","-2.50","4,461.09","9BA93007GN079743H","To get contact details, please visit your Order details on MyeBay","","","","6.99","0.00","","2Y211373HJ517381C" +"10/1/2020","15:25:31","Europe/Prague","Express Checkout Payment","USD","55.99","-3.32","52.67","4,513.76","7VT13567504385014","jdream@email.dp.ua","LAVRIK EVGENIY","","","6.00","0.00","c14707197444185.1","" +"10/1/2020","16:21:38","Europe/Prague","Mobile Payment","USD","45.99","-2.78","43.21","4,556.97","79024140WX1219749","frostoriuss@gmail.com","Ian Frost","","","0.00","0.00","","" +"10/1/2020","16:41:19","Europe/Prague","eBay Auction Payment","USD","16.98","-0.96","16.02","4,572.99","2NN29244A1688552K","To get contact details, please visit your Order details on MyeBay","Witold Topor","","","4.99","0.00","","" +"10/2/2020","14:16:24","Europe/Prague","eBay Auction Payment","USD","39.68","-2.44","37.24","4,610.23","9N72286755718351K","To get contact details, please visit your Order details on MyeBay","Mario Rocha","","","6.99","-2.70","","" +"10/2/2020","14:16:24","Europe/Prague","Tax collected by partner","USD","-2.70","0.00","-2.70","4,607.53","3TX48618PD145091V","To get contact details, please visit your Order details on MyeBay","","","","6.99","0.00","","9N72286755718351K" +"10/3/2020","04:04:08","Europe/Prague","eBay Auction Payment","USD","61.22","-3.61","57.61","4,665.14","8T503315FF607034E","To get contact details, please visit your Order details on MyeBay","Narumon Chainaknan","","","8.99","0.00","","" +"10/3/2020","05:59:34","Europe/Prague","eBay Auction Payment","USD","13.76","-1.04","12.72","4,677.86","84T074302C4647419","To get contact details, please visit your Order details on MyeBay","Ulysses J. A. Clark Jr. III","","","6.99","-0.78","","" +"10/3/2020","05:59:34","Europe/Prague","Tax collected by partner","USD","-0.78","0.00","-0.78","4,677.08","43V785701P2956335","To get contact details, please visit your Order details on MyeBay","","","","6.99","0.00","","84T074302C4647419" +"10/3/2020","12:32:39","Europe/Prague","eBay Auction Payment","USD","28.73","-1.42","27.31","4,704.39","81545465NK9533022","To get contact details, please visit your Order details on MyeBay","anette svendsen","","","4.99","-5.75","","" +"10/3/2020","12:32:39","Europe/Prague","Tax collected by partner","USD","-5.75","0.00","-5.75","4,698.64","6VJ07360R9697823S","To get contact details, please visit your Order details on MyeBay","","","","4.99","0.00","","81545465NK9533022" +"10/5/2020","23:39:34","Europe/Prague","eBay Auction Payment","USD","17.58","-1.25","16.33","4,714.97","6L605564DD2731031","To get contact details, please visit your Order details on MyeBay","Patrick King","","","6.99","-0.60","","" +"10/5/2020","23:39:34","Europe/Prague","Tax collected by partner","USD","-0.60","0.00","-0.60","4,714.37","0HW57277AS782810G","To get contact details, please visit your Order details on MyeBay","","","","6.99","0.00","","6L605564DD2731031" +"10/6/2020","09:48:23","Europe/Prague","eBay Auction Payment","USD","44.98","-2.73","42.25","4,756.62","3PW83902GC0089022","To get contact details, please visit your Order details on MyeBay","Mihai Dumitru Cretu","","","4.99","0.00","","" +"10/6/2020","17:41:53","Europe/Prague","General Payment","USD","39.95","-2.46","37.49","4,794.11","37N43472SU609073A","den81164@hotmail.com","david newland","","","0.00","0.00","","" +"10/6/2020","20:01:31","Europe/Prague","eBay Auction Payment","USD","26.98","-1.35","25.63","4,819.74","9V13608333959202M","To get contact details, please visit your Order details on MyeBay","Darren Gilham","","","4.99","0.00","","" +"10/7/2020","22:12:47","Europe/Prague","eBay Auction Payment","USD","11.98","-0.95","11.03","4,830.77","4H220082TT5814520","To get contact details, please visit your Order details on MyeBay","JD Blog / Q.D.K. Writing","","","6.99","0.00","","" +"10/7/2020","23:28:09","Europe/Prague","General Payment","USD","28.25","-1.83","26.42","4,857.19","1CY846590M235144R","estrel8@yahoo.com.au","Estrella Jahja","","","0.00","0.00","","" +"10/8/2020","02:03:16","Europe/Prague","Express Checkout Payment","USD","58.97","-3.48","55.49","4,912.68","50422352YG543352E","gargulovci@gmail.com","peter gargula","","","6.99","0.00","c14931301040217.1","" +"10/8/2020","08:30:08","Europe/Prague","eBay Auction Payment","USD","35.14","-2.20","32.94","4,945.62","77S52531TK592734R","To get contact details, please visit your Order details on MyeBay","Linda Manning","","","6.99","-3.20","","" +"10/8/2020","08:30:08","Europe/Prague","Tax collected by partner","USD","-3.20","0.00","-3.20","4,942.42","9XD71715M9431014J","To get contact details, please visit your Order details on MyeBay","","","","6.99","0.00","","77S52531TK592734R" +"10/8/2020","21:30:39","Europe/Prague","eBay Auction Payment","USD","14.98","-1.11","13.87","4,956.29","66912449AK965794U","To get contact details, please visit your Order details on MyeBay","Eric Evans","","","6.99","0.00","","" +"10/9/2020","02:56:27","Europe/Prague","eBay Auction Payment","USD","47.64","-2.87","44.77","5,001.06","4BW62712D70480125","To get contact details, please visit your Order details on MyeBay","Erik Korpalski","","","6.99","-2.70","","" +"10/9/2020","02:56:27","Europe/Prague","Tax collected by partner","USD","-2.70","0.00","-2.70","4,998.36","6V625921EN8141942","To get contact details, please visit your Order details on MyeBay","","","","6.99","0.00","","4BW62712D70480125" +"10/9/2020","20:25:32","Europe/Prague","eBay Auction Payment","USD","14.94","-0.88","14.06","5,012.42","66K48502HP916203T","To get contact details, please visit your Order details on MyeBay","Alin Apetrei","","","4.99","0.00","","" +"10/9/2020","20:39:24","Europe/Prague","Express Checkout Payment","USD","148.89","-8.34","140.55","5,152.97","5YP101385R910193R","dave2@davethoburn.com","David Thoburn","","","14.99","0.00","c14995257262169.1","" +"10/9/2020","22:50:20","Europe/Prague","eBay Auction Payment","USD","12.98","-1.00","11.98","5,164.95","4LF224794K233273A","To get contact details, please visit your Order details on MyeBay","BARRY KEMP","","","6.99","0.00","","" +"10/10/2020","03:54:12","Europe/Prague","General Payment","USD","82.25","-4.74","77.51","5,242.46","0MB45834W1411463T","vmariola@hotmail.com","Mariola Vasquez","","","0.00","0.00","","" +"10/10/2020","08:18:03","Europe/Prague","eBay Auction Payment","USD","29.03","-1.87","27.16","5,269.62","8SG722023R7444142","To get contact details, please visit your Order details on MyeBay","Natalie James","","","6.99","-2.05","","" +"10/10/2020","08:18:03","Europe/Prague","Tax collected by partner","USD","-2.05","0.00","-2.05","5,267.57","7U392920CS851635A","To get contact details, please visit your Order details on MyeBay","","","","6.99","0.00","","8SG722023R7444142" +"10/10/2020","10:08:16","Europe/Prague","eBay Auction Payment","USD","74.98","-3.22","71.76","5,339.33","6WP82034XW8390227","vieuxfanzines@hotmail.fr","Patrick Richer","","","4.99","0.00","","" +"10/10/2020","10:09:13","Europe/Prague","eBay Auction Payment","USD","84.94","-3.61","81.33","5,420.66","0KR7058149410494W","vieuxfanzines@hotmail.fr","Patrick Richer","","","4.99","0.00","","" +"10/10/2020","23:53:56","Europe/Prague","eBay Auction Payment","USD","19.94","-1.08","18.86","5,439.52","2BD20212XH516461K","To get contact details, please visit your Order details on MyeBay","Kim Battmer","","","4.99","0.00","","" +"10/11/2020","00:00:39","Europe/Prague","eBay Auction Payment","USD","86.98","-5.00","81.98","5,521.50","56K20516UH3669815","To get contact details, please visit your Order details on MyeBay","Peter Benovic","","","6.99","0.00","","" +"10/11/2020","15:40:10","Europe/Prague","eBay Auction Payment","USD","35.47","-1.68","33.79","5,555.29","9F308517DW207394B","To get contact details, please visit your Order details on MyeBay","Sally McCormack","","","6.99","0.00","","" +"10/11/2020","17:33:24","Europe/Prague","Express Checkout Payment","USD","86.98","-5.00","81.98","5,637.27","1A3041582U566753U","9591filmcsok1959@gmail.com","Duane Polewka","","","6.99","0.00","c15063135780953.1","" +"10/12/2020","08:44:08","Europe/Prague","eBay Auction Payment","USD","129.96","-5.37","124.59","5,761.86","3MA72627LN0389033","morelli.fulvio@virgilio.it","Fulvio Morelli","","","38.99","0.00","","" +"10/12/2020","13:03:41","Europe/Prague","General Currency Conversion","USD","-244.34","0.00","-244.34","5,517.52","2Y4521055B8052427","","","","","0.00","0.00","0e739231f5ba56a8551de5f2a84e1f99","4JU453787L867660W" +"10/12/2020","15:40:01","Europe/Prague","eBay Auction Payment","USD","19.58","-1.36","18.22","5,535.74","81J89919G3994664H","To get contact details, please visit your Order details on MyeBay","Tyron Gladley","","","6.99","-1.60","","" +"10/12/2020","15:40:01","Europe/Prague","Tax collected by partner","USD","-1.60","0.00","-1.60","5,534.14","3JA52109SF269572S","To get contact details, please visit your Order details on MyeBay","","","","6.99","0.00","","81J89919G3994664H" +"10/12/2020","22:33:52","Europe/Prague","eBay Auction Payment","USD","24.94","-1.27","23.67","5,557.81","45873677RH1013930","To get contact details, please visit your Order details on MyeBay","Flemming Nielsen","","","4.99","0.00","","" +"10/13/2020","01:21:29","Europe/Prague","eBay Auction Payment","USD","26.98","-1.76","25.22","5,583.03","7UM76759R9825445C","To get contact details, please visit your Order details on MyeBay","Fernanda BravoPavez","","","6.99","0.00","","" +"10/13/2020","11:01:09","Europe/Prague","eBay Auction Payment","USD","47.49","-2.86","44.63","5,627.66","3B829587Y0556035D","To get contact details, please visit your Order details on MyeBay","Sharon Golden","","","6.99","-3.51","","" +"10/13/2020","11:01:09","Europe/Prague","Tax collected by partner","USD","-3.51","0.00","-3.51","5,624.15","9V656689R6134362F","To get contact details, please visit your Order details on MyeBay","","","","6.99","0.00","","3B829587Y0556035D" +"10/14/2020","10:38:42","Europe/Prague","eBay Auction Payment","USD","15.38","-1.13","14.25","5,638.40","2NF49223MN8928616","To get contact details, please visit your Order details on MyeBay","Alice Connelly","","","6.99","-1.40","","" +"10/14/2020","10:38:42","Europe/Prague","Tax collected by partner","USD","-1.40","0.00","-1.40","5,637.00","3JA68231M4692264E","To get contact details, please visit your Order details on MyeBay","","","","6.99","0.00","","2NF49223MN8928616" +"10/14/2020","13:16:38","Europe/Prague","Express Checkout Payment","USD","15.99","-1.16","14.83","5,651.83","9BE54030X47242239","pkalina@vtown.com.au","Peter Kalina","","","6.00","0.00","c15158220030041.1","" +"10/14/2020","14:02:39","Europe/Prague","eBay Auction Payment","USD","16.48","-1.19","15.29","5,667.12","83K36707UA512954H","To get contact details, please visit your Order details on MyeBay","Ryan Harrison","","","6.99","-1.50","","" +"10/14/2020","14:02:39","Europe/Prague","Tax collected by partner","USD","-1.50","0.00","-1.50","5,665.62","83C04338RA6380459","To get contact details, please visit your Order details on MyeBay","","","","6.99","0.00","","83K36707UA512954H" +"10/14/2020","20:33:29","Europe/Prague","eBay Auction Payment","USD","29.94","-1.47","28.47","5,694.09","2J110681UF385230F","To get contact details, please visit your Order details on MyeBay","terry carnell","","","4.99","0.00","","" +"10/15/2020","02:27:40","Europe/Prague","eBay Auction Payment","USD","20.98","-1.12","19.86","5,713.95","8J930784KL998432F","To get contact details, please visit your Order details on MyeBay","Karlis Andzs","","","4.99","0.00","","" +"10/15/2020","11:43:21","Europe/Prague","Express Checkout Payment","USD","58.38","-2.58","55.80","5,769.75","8R874306V41518125","dm72ces@yahoo.com","David Machacek","","","8.00","0.00","c17457771741380.1","" +"10/15/2020","13:44:54","Europe/Prague","eBay Auction Payment","USD","15.98","-0.92","15.06","5,784.81","1DN568579U367520S","To get contact details, please visit your Order details on MyeBay","Karlis Andzs","","","4.99","0.00","","" +"10/15/2020","18:34:29","Europe/Prague","eBay Auction Payment","USD","11.98","-0.77","11.21","5,796.02","6AS0831185080614D","To get contact details, please visit your Order details on MyeBay","Nelson Ferreira","","","4.99","0.00","","" +"10/16/2020","14:47:22","Europe/Prague","eBay Auction Payment","USD","19.94","-1.08","18.86","5,814.88","3M8098627L667673R","To get contact details, please visit your Order details on MyeBay","Aaron Gray","","","4.99","0.00","","" +"10/17/2020","01:13:34","Europe/Prague","eBay Auction Payment","USD","46.85","-2.83","44.02","5,858.90","8L043871HE928425K","To get contact details, please visit your Order details on MyeBay","tom white","","","6.99","-2.87","","" +"10/17/2020","01:13:34","Europe/Prague","Tax collected by partner","USD","-2.87","0.00","-2.87","5,856.03","2CB62529SN286932Y","To get contact details, please visit your Order details on MyeBay","","","","6.99","0.00","","8L043871HE928425K" +"10/17/2020","04:07:05","Europe/Prague","eBay Auction Payment","USD","42.78","-2.61","40.17","5,896.20","0AC53123CY6803207","To get contact details, please visit your Order details on MyeBay","lyn reid","","","10.99","-3.90","","" +"10/17/2020","04:07:05","Europe/Prague","Tax collected by partner","USD","-3.90","0.00","-3.90","5,892.30","3NN1242012566964L","To get contact details, please visit your Order details on MyeBay","","","","10.99","0.00","","0AC53123CY6803207" +"10/17/2020","08:06:30","Europe/Prague","eBay Auction Payment","USD","33.98","-2.13","31.85","5,924.15","7SA5008703688980W","To get contact details, please visit your Order details on MyeBay","Meredith Klapetkova","","","6.99","-2.00","","" +"10/17/2020","08:06:30","Europe/Prague","Tax collected by partner","USD","-2.00","0.00","-2.00","5,922.15","38L3707780821505K","To get contact details, please visit your Order details on MyeBay","","","","6.99","0.00","","7SA5008703688980W" +"10/17/2020","17:46:11","Europe/Prague","eBay Auction Payment","USD","59.98","-2.34","57.64","5,979.79","2W937165CV156153F","To get contact details, please visit your Order details on MyeBay","Alexandr Klepikov","","","4.99","0.00","","" +"10/20/2020","01:04:48","Europe/Prague","eBay Auction Payment","USD","31.94","-1.55","30.39","6,010.18","7JK65746E65407840","To get contact details, please visit your Order details on MyeBay","Martina ČukGojkovič","","","4.99","0.00","","" +"10/20/2020","01:28:00","Europe/Prague","eBay Auction Payment","USD","24.98","-1.27","23.71","6,033.89","9E606631TN8071153","To get contact details, please visit your Order details on MyeBay","Martina ČukGojkovič","","","4.99","0.00","","" +"10/20/2020","01:57:07","Europe/Prague","eBay Auction Payment","USD","11.98","-0.77","11.21","6,045.10","78G00431233208129","To get contact details, please visit your Order details on MyeBay","Martina ČukGojkovič","","","4.99","0.00","","" +"10/20/2020","02:01:47","Europe/Prague","eBay Auction Payment","USD","11.98","-0.77","11.21","6,056.31","1KL66416AP327382X","To get contact details, please visit your Order details on MyeBay","Martina ČukGojkovič","","","4.99","0.00","","" +"10/20/2020","02:06:18","Europe/Prague","eBay Auction Payment","USD","11.94","-0.77","11.17","6,067.48","0FG059041P4190247","To get contact details, please visit your Order details on MyeBay","Martina ČukGojkovič","","","4.99","0.00","","" +"10/20/2020","02:12:23","Europe/Prague","eBay Auction Payment","USD","11.98","-0.77","11.21","6,078.69","3LN61591NS656594Y","To get contact details, please visit your Order details on MyeBay","Martina ČukGojkovič","","","4.99","0.00","","" +"10/20/2020","02:14:13","Europe/Prague","eBay Auction Payment","USD","49.86","-2.24","47.62","6,126.31","1PX34283F65871243","To get contact details, please visit your Order details on MyeBay","Martina ČukGojkovič","","","12.99","0.00","","" +"10/20/2020","06:07:46","Europe/Prague","Express Checkout Payment","USD","63.96","-3.75","60.21","6,186.52","34G07905SJ6438812","renata.miles@gmail.com","Renata Miles","","","9.99","0.00","c17604814864580.1","" +"10/20/2020","20:59:38","Europe/Prague","eBay Auction Payment","USD","19.98","-1.08","18.90","6,205.42","93P69468WU784374F","To get contact details, please visit your Order details on MyeBay","Eamonn Sweeney","","","4.99","0.00","","" +"10/21/2020","01:26:47","Europe/Prague","eBay Auction Payment","USD","17.58","-1.25","16.33","6,221.75","45U86179GN7544547","To get contact details, please visit your Order details on MyeBay","Dianne Stocks","","","6.99","-1.60","","" +"10/21/2020","01:26:47","Europe/Prague","Tax collected by partner","USD","-1.60","0.00","-1.60","6,220.15","6TX97199S8711540D","To get contact details, please visit your Order details on MyeBay","","","","6.99","0.00","","45U86179GN7544547" +"10/21/2020","01:44:47","Europe/Prague","Express Checkout Payment","USD","31.98","-2.03","29.95","6,250.10","3L781225CK126662Y","jirin@mail.utexas.edu","Jiri Nehyba","","","6.99","0.00","c17605807997124.1","" +"10/21/2020","07:28:56","Europe/Prague","Payment Refund","USD","-11.98","0.00","-11.98","6,238.12","0VJ260959F7949000","martina.cuk.gojkovic@gmail.com","Martina ČukGojkovič","","","0.00","0.00","EBAY44906351521","1KL66416AP327382X" +"10/21/2020","07:28:57","Europe/Prague","Payment Refund","USD","-11.94","0.00","-11.94","6,226.18","6J3466509E015160N","martina.cuk.gojkovic@gmail.com","Martina ČukGojkovič","","","0.00","0.00","EBAY44906351531","0FG059041P4190247" +"10/21/2020","07:29:02","Europe/Prague","Payment Refund","USD","-49.86","0.00","-49.86","6,176.32","9N520550NA496815N","martina.cuk.gojkovic@gmail.com","Martina ČukGojkovič","","","0.00","0.00","EBAY44907145581","1PX34283F65871243" +"10/21/2020","17:05:58","Europe/Prague","eBay Auction Payment","USD","16.98","-1.22","15.76","6,192.08","0HP29347S6138574Y","To get contact details, please visit your Order details on MyeBay","Eduarda Rodrigues Rosa","","","6.99","0.00","","" +"10/22/2020","08:50:09","Europe/Prague","eBay Auction Payment","USD","19.98","-1.08","18.90","6,210.98","43M64148FU514750V","To get contact details, please visit your Order details on MyeBay","Vresnik Primož","","","4.99","0.00","","" +"10/23/2020","10:44:51","Europe/Prague","Payment Refund","USD","-2.99","0.00","-2.99","6,207.99","85761656P77086733","tyrongladley@aol.com","Tyron Gladley","","","6.99","0.00","","81J89919G3994664H" +"10/23/2020","10:44:51","Europe/Prague","Tax collected by partner","USD","0.24","0.00","0.24","6,208.23","5AJ124974Y001863A","","","","","6.99","0.00","","81J89919G3994664H" +"10/24/2020","05:02:48","Europe/Prague","Express Checkout Payment","USD","44.97","-2.73","42.24","6,250.47","3DY2838774501892A","ellenoid@yahoo.com","Ellen Oskoian","","","14.99","0.00","c17612661129412.1","" +"10/24/2020","14:35:12","Europe/Prague","eBay Auction Payment","USD","46.98","-2.84","44.14","6,294.61","9BV30159CA050844Y","To get contact details, please visit your Order details on MyeBay","Iveline Zacharias","","","6.99","0.00","","" +"10/24/2020","19:58:15","Europe/Prague","eBay Auction Payment","USD","16.98","-1.22","15.76","6,310.37","5BR79205D0311970H","To get contact details, please visit your Order details on MyeBay","omer landau","","","6.99","0.00","","" +"10/25/2020","08:33:44","Europe/Prague","Express Checkout Payment","USD","82.96","-3.54","79.42","6,389.79","2NN14347AL480913T","lionel.stiers@skynet.be","LIONEL STIERS","","","12.00","0.00","c17726124032196.1","" +"10/25/2020","12:09:48","Europe/Prague","Express Checkout Payment","USD","21.99","-1.16","20.83","6,410.62","3JW98407YG706092H","mi.leidner@web.de","Dr. Michael Leidner","","","4.00","0.00","c17754824966340.1","" +"10/25/2020","20:27:19","Europe/Prague","eBay Auction Payment","USD","19.94","-1.08","18.86","6,429.48","8TX77515LW336935E","To get contact details, please visit your Order details on MyeBay","Ingrid Egan","","","4.99","0.00","","" +"10/25/2020","23:01:47","Europe/Prague","eBay Auction Payment","USD","38.97","-1.82","37.15","6,466.63","0HM48880J62129722","To get contact details, please visit your Order details on MyeBay","Zaneta Sevcikova","","","6.99","0.00","","" +"10/26/2020","04:47:04","Europe/Prague","eBay Auction Payment","USD","29.14","-1.87","27.27","6,493.90","3M241697XT105182X","To get contact details, please visit your Order details on MyeBay","Huggo Gonzalez","","","6.99","-2.16","","" +"10/26/2020","04:47:04","Europe/Prague","Tax collected by partner","USD","-2.16","0.00","-2.16","6,491.74","0SS67714C25586545","To get contact details, please visit your Order details on MyeBay","","","","6.99","0.00","","3M241697XT105182X" +"10/26/2020","05:44:12","Europe/Prague","eBay Auction Payment","USD","21.39","-1.46","19.93","6,511.67","4J820530NF250473D","To get contact details, please visit your Order details on MyeBay","Benjamin Pistora","","","6.99","-1.45","","" +"10/26/2020","05:44:12","Europe/Prague","Tax collected by partner","USD","-1.45","0.00","-1.45","6,510.22","7KD831974V088992D","To get contact details, please visit your Order details on MyeBay","","","","6.99","0.00","","4J820530NF250473D" +"10/26/2020","12:56:16","Europe/Prague","General Currency Conversion","USD","46.48","0.00","46.48","6,556.70","3HL56700F37448640","","","","","0.00","0.00","0e739231f5ba56a8551de5f2a84e1f99","4JU453787L867660W" +"10/26/2020","15:12:44","Europe/Prague","eBay Auction Payment","USD","26.38","-1.72","24.66","6,581.36","1RX84871V54463510","To get contact details, please visit your Order details on MyeBay","LAURANCE BROWNING","","","6.99","-2.40","","" +"10/26/2020","15:12:44","Europe/Prague","Tax collected by partner","USD","-2.40","0.00","-2.40","6,578.96","48B22547NP882750T","To get contact details, please visit your Order details on MyeBay","","","","6.99","0.00","","1RX84871V54463510" +"10/26/2020","17:20:36","Europe/Prague","eBay Auction Payment","USD","17.26","-1.23","16.03","6,594.99","0S9148711N0993722","To get contact details, please visit your Order details on MyeBay","Alica Brewer","","","6.99","-1.28","","" +"10/26/2020","17:20:36","Europe/Prague","Tax collected by partner","USD","-1.28","0.00","-1.28","6,593.71","12A59044XC451222K","To get contact details, please visit your Order details on MyeBay","","","","6.99","0.00","","0S9148711N0993722" +"10/26/2020","18:08:06","Europe/Prague","eBay Auction Payment","USD","12.41","-0.97","11.44","6,605.15","7BN83854PE840762K","To get contact details, please visit your Order details on MyeBay","Solita Kangleon","","","6.99","-0.47","","" +"10/26/2020","18:08:06","Europe/Prague","Tax collected by partner","USD","-0.47","0.00","-0.47","6,604.68","1GC36506Y81521922","To get contact details, please visit your Order details on MyeBay","","","","6.99","0.00","","7BN83854PE840762K" +"10/27/2020","01:13:19","Europe/Prague","Express Checkout Payment","USD","23.98","-1.59","22.39","6,627.07","9WC25248AN578801M","angel_c_caballero@hotmail.com","Angel C Caballero","","","6.99","0.00","c17780440006852.1","" +"10/27/2020","01:55:11","Europe/Prague","eBay Auction Payment","USD","14.78","-1.10","13.68","6,640.75","3BF616933J229372S","To get contact details, please visit your Order details on MyeBay","Barbora Pavelkova","","","6.99","-0.84","","" +"10/27/2020","01:55:11","Europe/Prague","Tax collected by partner","USD","-0.84","0.00","-0.84","6,639.91","1XK80346BP593892X","To get contact details, please visit your Order details on MyeBay","","","","6.99","0.00","","3BF616933J229372S" +"10/27/2020","08:12:22","Europe/Prague","Hold on Balance for Dispute Investigation","USD","-46.98","0.00","-46.98","6,592.93","4LB73224XS653215U","peteris.bodnieks@gmail.com","PETERIS BODNIEKS","","","4.99","0.00","","98A24599WC887641Y" +"10/27/2020","11:31:02","Europe/Prague","Express Checkout Payment","USD","106.96","-4.47","102.49","6,695.42","1L629368BN801441K","ksenija.mahnic1@gmail.com","ksenija mahnic","","","7.00","0.00","c15145492119715.1","" +"10/27/2020","20:40:09","Europe/Prague","eBay Auction Payment","USD","12.77","-0.99","11.78","6,707.20","6CS017077L302043Y","To get contact details, please visit your Order details on MyeBay","Albert King","","","6.99","-0.79","","" +"10/27/2020","20:40:09","Europe/Prague","Tax collected by partner","USD","-0.79","0.00","-0.79","6,706.41","8T4558813P690114R","To get contact details, please visit your Order details on MyeBay","","","","6.99","0.00","","6CS017077L302043Y" +"10/28/2020","05:59:12","Europe/Prague","Express Checkout Payment","USD","95.99","-5.48","90.51","6,796.92","6LU355448A3025838","eholecek@bigpond.com","Emil Holecek","","","6.00","0.00","c17808163176644.1","" +"10/28/2020","07:06:51","Europe/Prague","eBay Auction Payment","USD","13.98","-1.05","12.93","6,809.85","5N56377447645583L","To get contact details, please visit your Order details on MyeBay","Kim Jong Gwan","","","6.99","0.00","","" +"10/28/2020","09:01:24","Europe/Prague","eBay Auction Payment","USD","13.94","-0.84","13.10","6,822.95","3PH188589P037201S","To get contact details, please visit your Order details on MyeBay","Matthew Elliot","","","4.99","0.00","","" +"10/28/2020","23:11:57","Europe/Prague","eBay Auction Payment","USD","12.29","-0.96","11.33","6,834.28","1EB97053XU1110155","To get contact details, please visit your Order details on MyeBay","mark koger","","","6.99","-0.31","","" +"10/28/2020","23:11:57","Europe/Prague","Tax collected by partner","USD","-0.31","0.00","-0.31","6,833.97","7EK53701H03508124","To get contact details, please visit your Order details on MyeBay","","","","6.99","0.00","","1EB97053XU1110155" +"10/29/2020","02:58:38","Europe/Prague","eBay Auction Payment","USD","104.99","-5.97","99.02","6,932.99","00K64824UN2654509","To get contact details, please visit your Order details on MyeBay","rudi wilson","","","10.99","-7.55","","" +"10/29/2020","02:58:38","Europe/Prague","Tax collected by partner","USD","-7.55","0.00","-7.55","6,925.44","3K584545SR6947301","To get contact details, please visit your Order details on MyeBay","","","","10.99","0.00","","00K64824UN2654509" +"10/29/2020","03:51:49","Europe/Prague","eBay Auction Payment","USD","27.39","-1.78","25.61","6,951.05","4DY07971YP116343G","To get contact details, please visit your Order details on MyeBay","Michael Mason","","","8.99","-1.32","","" +"10/29/2020","03:51:49","Europe/Prague","Tax collected by partner","USD","-1.32","0.00","-1.32","6,949.73","4AR744411J063784T","To get contact details, please visit your Order details on MyeBay","","","","8.99","0.00","","4DY07971YP116343G" +"10/29/2020","17:01:00","Europe/Prague","eBay Auction Payment","USD","24.98","-1.65","23.33","6,973.06","1L98986212750654C","To get contact details, please visit your Order details on MyeBay","Mayra Ocampo","","","6.99","0.00","","" +"10/29/2020","17:07:39","Europe/Prague","eBay Auction Payment","USD","13.98","-1.05","12.93","6,985.99","8KL681914F839961V","To get contact details, please visit your Order details on MyeBay","Leslie Sedlarova","","","6.99","0.00","","" +"10/29/2020","19:59:28","Europe/Prague","eBay Auction Payment","USD","24.93","-1.27","23.66","7,009.65","9CU32565PN7725504","To get contact details, please visit your Order details on MyeBay","Hildegunn Urdahl","","","4.99","-4.99","","" +"10/29/2020","19:59:28","Europe/Prague","Tax collected by partner","USD","-4.99","0.00","-4.99","7,004.66","35S42466R2292413U","To get contact details, please visit your Order details on MyeBay","","","","4.99","0.00","","9CU32565PN7725504" +"10/30/2020","07:18:16","Europe/Prague","Express Checkout Payment","USD","35.96","-2.24","33.72","7,038.38","8X3804854Y540044L","spguthrie@gmail.com","Stephen Guthrie","","","9.99","0.00","c17852268314820.1","" +"10/30/2020","08:36:09","Europe/Prague","eBay Auction Payment","USD","17.54","-1.25","16.29","7,054.67","1EN189794J935192X","To get contact details, please visit your Order details on MyeBay","David Le Sage","","","6.99","-1.60","","" +"10/30/2020","08:36:09","Europe/Prague","Tax collected by partner","USD","-1.60","0.00","-1.60","7,053.07","1GJ41265MS1864156","To get contact details, please visit your Order details on MyeBay","","","","6.99","0.00","","1EN189794J935192X" +"10/31/2020","00:48:53","Europe/Prague","eBay Auction Payment","USD","19.06","-1.33","17.73","7,070.80","1B462750R7939084S","To get contact details, please visit your Order details on MyeBay","Robert Gero","","","6.99","-1.08","","" +"10/31/2020","00:48:53","Europe/Prague","Tax collected by partner","USD","-1.08","0.00","-1.08","7,069.72","04F39255DA653094Y","To get contact details, please visit your Order details on MyeBay","","","","6.99","0.00","","1B462750R7939084S" +"10/31/2020","02:12:22","Europe/Prague","eBay Auction Payment","USD","85.47","-4.92","80.55","7,150.27","5KB62533P08362422","To get contact details, please visit your Order details on MyeBay","Amanda Souronis","","","12.99","-5.60","","" +"10/31/2020","02:12:22","Europe/Prague","Tax collected by partner","USD","-5.60","0.00","-5.60","7,144.67","6RP06951UW1078845","To get contact details, please visit your Order details on MyeBay","","","","12.99","0.00","","5KB62533P08362422" +"10/31/2020","04:32:40","Europe/Prague","PreApproved Payment Bill User Payment","USD","-345.98","0.00","-345.98","6,798.69","4TT18808PL160393R","US-eBay-EOM-Fees@ebay.com","eBay Inc.","","","0.00","0.00","4698820994","B-63X224765C995435M" +"10/31/2020","06:52:09","Europe/Prague","eBay Auction Payment","USD","16.11","-1.17","14.94","6,813.63","8KD755987L111862W","To get contact details, please visit your Order details on MyeBay","mike burgess","","","6.99","-1.17","","" +"10/31/2020","06:52:09","Europe/Prague","Tax collected by partner","USD","-1.17","0.00","-1.17","6,812.46","7A890630396910934","To get contact details, please visit your Order details on MyeBay","","","","6.99","0.00","","8KD755987L111862W" +"10/31/2020","16:05:14","Europe/Prague","eBay Auction Payment","USD","19.93","-1.38","18.55","6,831.01","5KD66052PU6874029","To get contact details, please visit your Order details on MyeBay","Petra Konfrst","","","8.99","0.00","","" +"10/12/2020","13:03:41","Europe/Prague","Express Checkout Payment","HUF","-70,558.00","0.00","-70,558.00","-70,558.00","4JU453787L867660W","bookline.penzugy@libribookline.com","Libri-Bookline Zrt.","","","0.00","0.00","0e739231f5ba56a8551de5f2a84e1f99","" +"10/12/2020","13:03:41","Europe/Prague","General Currency Conversion","HUF","70,558.00","0.00","70,558.00","0.00","14U199619U991273W","","","","","0.00","0.00","0e739231f5ba56a8551de5f2a84e1f99","4JU453787L867660W" +"10/26/2020","12:56:16","Europe/Prague","Payment Refund","HUF","14,382.00","0.00","14,382.00","14,382.00","0X517161AV244180T","bookline.penzugy@libribookline.com","Libri-Bookline Zrt.","","","0.00","0.00","0e739231f5ba56a8551de5f2a84e1f99","4JU453787L867660W" +"10/26/2020","12:56:16","Europe/Prague","General Currency Conversion","HUF","-14,382.00","0.00","-14,382.00","0.00","26T8971544392491C","","","","","0.00","0.00","0e739231f5ba56a8551de5f2a84e1f99","4JU453787L867660W" diff --git a/Mapp.BusinessLogic.Transactions.Tests/TestData/PayPalCZ.csv b/Mapp.BusinessLogic.Transactions.Tests/TestData/PayPalCZ.csv new file mode 100644 index 0000000..61fdfca --- /dev/null +++ b/Mapp.BusinessLogic.Transactions.Tests/TestData/PayPalCZ.csv @@ -0,0 +1,2 @@ +"Datum","Čas","Časové pásmo","Popis","Měna","Brutto ","Poplatek ","Netto","Zůstatek","ID transakce","E-mailová adresa odesílatele","Název","Název banky","Bankovní účet","Výše poštovného a balného","Daň z prodeje","ID faktury","Referenční ID transakce" +"10/6/2023","11:52:55","Europe/Prague","General Withdrawal - Bank Account","CZK","-89 535,66","0,00","-89 535,66","-89 535,66","0X14071132876594C","","","Fio banka, a.s.","3907","0,00","0,00","","" \ No newline at end of file diff --git a/Mapp.BusinessLogic.Transactions.Tests/TestData/Shopify.csv b/Mapp.BusinessLogic.Transactions.Tests/TestData/Shopify.csv new file mode 100644 index 0000000..c00d955 --- /dev/null +++ b/Mapp.BusinessLogic.Transactions.Tests/TestData/Shopify.csv @@ -0,0 +1,33 @@ +Transaction Date,Type,Order,Card Brand,Card Source,Payout Status,Payout Date,Available On,Amount,Fee,Net,Checkout,Payment Method Name,Presentment Amount,Presentment Currency,Currency,VAT +2023-10-31 12:00:42 +0100,charge,#3099,master,online,pending,2023-12-01,2023-11-03,2636.49,107.33,2529.16,#42675990692187,card,113.98,USD,CZK,0.00 +2023-10-30 19:49:07 +0100,charge,#3098,visa,online,pending,2023-12-01,2023-11-02,475.22,24.53,450.69,#42672842211675,card,86.00,PLN,CZK,0.00 +2023-10-30 14:46:07 +0100,charge,#3097,visa,online,pending,2023-12-01,2023-11-02,690.73,32.82,657.91,#42616161075547,card,125.00,PLN,CZK,0.00 +2023-10-29 21:50:14 +0100,charge,#3096,visa,online,pending,2023-12-01,2023-11-02,396.22,21.46,374.76,#42667949523291,card,16.99,USD,CZK,0.00 +2023-10-29 03:48:20 +0100,charge,#3095,visa,online,pending,2023-12-01,2023-11-02,676.07,38.95,637.12,#42663650034011,card,28.99,USD,CZK,0.00 +2023-10-28 20:38:16 +0200,charge,#3094,american_express,online,pending,2023-12-01,2023-11-02,2342.57,118.94,2223.63,#42662122881371,card,100.45,USD,CZK,0.00 +2023-10-28 19:55:44 +0200,charge,#3093,master,online,pending,2023-12-01,2023-11-02,1817.31,75.86,1741.45,#42661940232539,card,28300.00,HUF,CZK,0.00 +2023-10-26 19:10:59 +0200,charge,#3090,master,online,paid,2023-11-01,2023-10-31,1133.27,49.68,1083.59,#42651143635291,card,45.85,EUR,CZK,0.00 +2023-10-25 13:54:03 +0200,charge,#3088,master,online,paid,2023-11-01,2023-10-30,5214.23,256.87,4957.36,#42643499090267,card,353.00,AUD,CZK,0.00 +2023-10-23 21:36:53 +0200,charge,#3083,master,online,paid,2023-11-01,2023-10-26,673.92,38.82,635.10,#42634660970843,card,28.99,USD,CZK,0.00 +2023-10-23 20:50:44 +0200,charge,#3082,master,online,paid,2023-11-01,2023-10-26,3678.81,183.18,3495.63,#42634437558619,card,158.25,USD,CZK,0.00 +2023-10-22 21:40:39 +0200,charge,#3079,visa,online,paid,2023-11-01,2023-10-26,1254.70,66.68,1188.02,#42629232329051,card,54.00,USD,CZK,0.00 +2023-10-22 03:02:53 +0200,charge,#3076,visa,online,paid,2023-11-01,2023-10-26,696.82,39.96,656.86,#42624960332123,card,29.99,USD,CZK,0.00 +2023-10-20 22:23:12 +0200,charge,#3074,master,online,paid,2023-11-01,2023-10-25,3644.75,181.36,3463.39,#42618988855643,card,156.35,USD,CZK,0.00 +2023-10-20 13:56:09 +0200,charge,#3073,visa,online,paid,2023-11-01,2023-10-25,983.66,53.50,930.16,#42616571363675,card,39.90,EUR,CZK,0.00 +2023-10-20 05:40:46 +0200,charge,#3072,visa,online,paid,2023-11-01,2023-10-25,698.40,40.06,658.34,#42586800783707,card,29.99,USD,CZK,0.00 +2023-10-19 04:26:27 +0200,charge,#3070,visa,online,paid,2023-11-01,2023-10-24,439.28,27.41,411.87,#42603178393947,card,18.75,USD,CZK,0.00 +2023-10-18 10:58:14 +0200,charge,#3067,visa,online,paid,2023-11-01,2023-10-23,1002.37,54.57,947.80,#42604534137179,card,42.98,USD,CZK,0.00 +2023-10-17 14:00:07 +0200,charge,#3066,american_express,online,paid,2023-11-01,2023-10-20,1993.02,102.10,1890.92,#42599961985371,card,85.30,USD,CZK,0.00 +2023-10-17 13:36:27 +0200,charge,#3065,visa,online,paid,2023-11-01,2023-10-20,515.40,26.14,489.26,#42599763607899,card,20.90,EUR,CZK,0.00 +2023-10-17 09:31:56 +0200,charge,#3064,visa,online,paid,2023-11-01,2023-10-20,2850.51,143.46,2707.05,#42587880161627,card,122.00,USD,CZK,0.00 +2023-10-16 11:17:17 +0200,charge,#3062,master,online,paid,2023-11-01,2023-10-19,1012.27,44.93,967.34,#42522733674843,card,41.00,EUR,CZK,0.00 +2023-10-15 18:19:16 +0200,charge,#3061,master,online,paid,2023-11-01,2023-10-19,736.04,34.58,701.46,#42590177624411,card,29.80,EUR,CZK,0.00 +2023-10-14 19:59:27 +0200,charge,#3059,visa,online,paid,2023-11-01,2023-10-19,1385.51,73.07,1312.44,#42585603801435,card,58.97,USD,CZK,0.00 +2023-10-14 07:07:50 +0200,refund,#3055,master,online,paid,2023-11-01,2023-10-16,-738.51,0.00,-738.51,#42569948889435,card,29.90,EUR,CZK,0.00 +2023-10-13 21:51:43 +0200,charge,#3057,master,online,paid,2023-11-01,2023-10-18,627.61,36.52,591.09,#42581091549531,card,22.00,GBP,CZK,0.00 +2023-10-13 03:14:12 +0200,charge,#3056,visa,online,paid,2023-11-01,2023-10-18,584.93,34.41,550.52,#42576776233307,card,24.99,USD,CZK,0.00 +2023-10-11 19:37:49 +0200,charge,#3055,master,online,paid,2023-11-01,2023-10-16,734.79,41.53,693.26,#42569948889435,card,29.90,EUR,CZK,0.00 +2023-10-09 17:19:00 +0200,charge,#3054,american_express,online,paid,2023-11-01,2023-10-12,3023.43,151.71,2871.72,#42557051339099,card,129.94,USD,CZK,0.00 +2023-10-07 07:53:17 +0200,charge,#3050,visa,online,paid,2023-11-01,2023-10-12,2169.13,110.35,2058.78,#42540003393883,card,93.96,USD,CZK,0.00 +2023-10-03 17:25:04 +0200,charge,#3049,master,online,paid,2023-11-01,2023-10-06,1382.63,72.80,1309.83,#42518763340123,card,49.00,GBP,CZK,0.00 +2023-10-02 03:56:33 +0200,charge,#3048,visa,online,paid,2023-11-01,2023-10-05,7151.31,350.04,6801.27,#42509077578075,card,309.92,USD,CZK,0.00 diff --git a/Mapp.BusinessLogic.Transactions.Tests/TestData/zeros.csv b/Mapp.BusinessLogic.Transactions.Tests/TestData/zeros.csv new file mode 100644 index 0000000..0a2a748 --- /dev/null +++ b/Mapp.BusinessLogic.Transactions.Tests/TestData/zeros.csv @@ -0,0 +1,75 @@ +"Includes Amazon Marketplace, Fulfillment by Amazon (FBA), and Amazon Webstore transactions" +"All amounts in CAD, unless specified" +"Definitions:" +"Sales tax collected: Includes sales tax collected from buyers for product sales, shipping, and gift wrap." +"Selling fees: Includes variable closing fees and referral fees." +"Other transaction fees: Includes shipping chargebacks and shipping holdbacks." +"Other: Includes non-order transaction amounts. For more details, see the ""Type"" and ""Description"" columns for each order ID." +"date/time","settlement id","type","order id","sku","description","quantity","marketplace","fulfillment","order city","order state","order postal","tax collection model","product sales","product sales tax","shipping credits","shipping credits tax","gift wrap credits","giftwrap credits tax","promotional rebates","promotional rebates tax","selling fees","fba fees","other transaction fees","other","total" +"2020-05-01 1:41:44 AM PDT","12871828091","Order","702-7995742-3049037","41-UMEU-6XNW","Koh-i-noor Set of 5340 Blue Metal Lead Holder with Sharpener + 6 Metallic Leads.","1","amazon.ca","Seller","Lasalle","QC","H8N2A4","","39.00","0","3.49","0","0","0","-3.00","0","-5.92","0","0","0","33.57" +"2020-05-01 1:41:44 AM PDT","12871828091","Order","702-7995742-3049037","55-KOH-FR5300","Koh-I-Noor Hardtmuth set for sketching 23pcs 8898","1","amazon.ca","Seller","Lasalle","QC","H8N2A4","","38.00","0","3.49","0","0","0","0","0","-6.22","0","0","0","35.27" +"2020-05-01 1:47:38 AM PDT","12871828091","Order","701-6876220-1341014","Q1-HI9Q-GX0Z","Curaprox CS 5460 Toothbrush Ultra-Soft by Curaprox","1","amazon.ca","Seller","Newmarket","ON","L3Y 0A8","","19.99","0","3.99","0","0","0","0","0","-3.60","0","0","0","20.38" +"2020-05-01 1:50:05 AM PDT","12871828091","Order","701-4654584-7631430","55-DJY4-FR1025","Tescoma 630879.00 Ravioli Maker, Mold for 21 square Ravioli, ravioli cutter, ravioli press, ravioli stamp","1","amazon.ca","Seller","Windsor","Ontario","N8Y 1A5","","39.00","0","3.99","0","0","0","-3.00","0","-6.00","0","0","0","33.99" +"2020-05-01 1:51:49 AM PDT","12871828091","Order","701-5038638-7292239","55-KOH-FR5273","Koh-I-Noor Toison d'Or Graphite Pencil Artist Set, 8B-2H Degrees, 12 Pencils Per Tin, 1 Each (FA1502/11.12)","1","amazon.ca","Seller","Coquitlam","BC","V3E 3K9","","13.00","0","3.99","0","0","0","0","0","-2.55","0","0","0","14.44" +"2020-05-01 1:52:20 AM PDT","12871828091","Order","701-4655798-7539458","55-KOH-FR0432","KOH-I-NOOR 017150500000 18 Round Water Colour Paint","1","amazon.ca","Seller","Beamsville","Ontario","L0R 1B3","","10.00","0","3.99","0","0","0","0","0","-2.10","0","0","0","11.89" +"2020-05-01 1:53:45 AM PDT","12871828091","Order","701-3305731-7009818","55-KOH-FR5182","KOH-I-NOOR Mondeluz Aquarell Coloured Pencils (Set of 72)","1","amazon.ca","Seller","Mississauga","ON","L5R 3M5","","85.00","0","3.99","0","0","0","0","0","-13.35","0","0","0","75.64" +"2020-05-01 1:56:26 AM PDT","12871828091","Order","701-4321771-5686641","Q4A-RWY-1FT","Koh-I-Noor : 5.6mm Mechanical Metal Clutch Leadholder with Built-in Sharpener 5340 : Silver","1","amazon.ca","Seller","Williams Lake","British Columbia","V2G 4X5","","15.00","0","3.99","0","0","0","0","0","-2.85","0","0","0","16.14" +"2020-05-01 1:56:43 AM PDT","12871828091","Order","701-1962916-8709802","81-NL3F-4RYU","Koh-I-Noor Toison d'Or Notebook Incremental Clutch Lead Holder with 2mm x 90mm Lead, Black, 1 Each (5608CN1005KK)","1","amazon.ca","Seller","Mount Brydges","Ontario","N0L 1W0","","14.09","0","3.99","0","0","0","0","0","-2.71","0","0","0","15.37" +"2020-05-01 1:57:13 AM PDT","12871828091","Order","701-6444841-4130663","YLG-9AQ-JU1","Koh-I-Noor Polycolor Drawing Pencil Set, 36 Assorted Colored Pencils in Tin, 1 Each (FA3819.36)","1","amazon.ca","Seller","Hamilton","ON","L8V2W5","","46.99","0","3.99","0","0","0","0","0","-7.65","0","0","0","43.33" +"2020-05-01 1:59:27 AM PDT","12871828091","Order","702-1801518-7906652","G1-LIZ2-Y71I","Ultra soft toothbrush, 6 brushes, Curaprox Ultra Soft 5460. Softer feeling & better cleaning, in glorious colours for Him. by Curaprox","1","amazon.ca","Seller","Quebec","Quebec","G1C 7E5","","46.00","0","3.99","0","0","0","0","0","-7.50","0","0","0","42.49" +"2020-05-01 2:02:57 AM PDT","12871828091","Order","702-8371124-8282669","55-DJY4-FR836","Tescoma 630048.00 Rosette Waffle Iron with 4 Shapes, Rosette Waffle Maker","1","amazon.ca","Seller","Mississauga","Ontario","L5A 1K4","","38.91","0","3.99","0","0","0","-3.00","0","-5.99","0","0","0","33.91" +"2020-05-01 2:03:07 AM PDT","12871828091","Order","701-7200510-7833027","55-KOH-FR3222","Kum AS2, Two Hole Automatic Long Point Pencil Sharpener, Mfg Part Number 1053021 (Extra lids not Included)","1","amazon.ca","Seller","Jonquiere","Quebec","G7S 1Z6","","20.00","0","3.99","0","0","0","-3.00","0","-3.15","0","0","0","17.84" +"2020-05-01 2:04:32 AM PDT","12871828091","Order","702-3900530-6393022","DP-ITD5-TI35","Gliss Kur Ultimate Color Oil Elixir 75 ml / 2.5 fl oz","1","amazon.ca","Seller","Richmond Hill","Ontario","L4E 3G7","","26.78","0","3.99","0","0","0","0","0","-4.62","0","0","0","26.15" +"2020-05-01 2:07:15 AM PDT","12871828091","Order","702-8029581-1347456","Z2-B51Q-ECW9","Curaprox CPS 011 Prime Refill","1","amazon.ca","Seller","Rouyn-Noranda","Quebec","J0Z 1P0","","35.90","0","3.99","0","0","0","0","0","-5.98","0","0","0","33.91" +"2020-05-01 5:01:58 AM PDT","12871828091","Refund","701-3305731-7009818","55-KOH-FR5182","KOH-I-NOOR Mondeluz Aquarell Coloured Pencils (Set of 72)","1","amazon.ca","Seller","Mississauga","ON","L5R 3M5","","-85.00","0","-3.99","0","0","0","0","0","13.35","0","0","0","-75.64" +"2020-05-02 8:03:55 AM PDT","12871828091","Service Fee","","","Cost of Advertising","","","","","","","","0","0","0","0","0","0","0","0","0","0","-35.81","0","-35.81" +"2020-05-04 12:00:48 AM PDT","12871828091","Order","702-1930905-3889867","GR-UZPQ-KF2P","Dermacol Make-up Cover - Waterproof Hypoallergenic Foundation 30g Shade 228 Dark Brown SkinNEW","1","amazon.ca","Seller","St. Albert","Alberta","T8N 7G5","","23.96","0","3.49","0","0","0","0","0","-4.12","0","0","0","23.33" +"2020-05-04 12:00:48 AM PDT","12871828091","Order","702-1930905-3889867","ZP-9BCC-1DNI","Dermacol Make-up cover #215 acne cover tattoo cover vertiligo cover scars cover","1","amazon.ca","Seller","St. Albert","Alberta","T8N 7G5","","24.99","0","3.49","0","0","0","0","0","-4.27","0","0","0","24.21" +"2020-05-04 12:01:06 AM PDT","12871828091","Order","702-7608738-1112209","B1-H1VQ-ZW41","Kum 303.21.21 2-Hole Magnesium Inner Sharpener with Plastic Container, Colors Vary","1","amazon.ca","Seller","Vancouver","British Columbia","V6K 4K7","","11.99","0","3.99","0","0","0","0","0","-2.40","0","0","0","13.58" +"2020-05-04 12:02:25 AM PDT","12871828091","Order","701-4680719-1691403","0M-51OA-9CF5","KOH-I-NOOR Extra Soft Pastels Set/48 (FA8556)","1","amazon.ca","Seller","Alliston","Ontario","L9R 2E3","","66.00","0","3.99","0","0","0","0","0","-10.50","0","0","0","59.49" +"2020-05-04 12:02:50 AM PDT","12871828091","Order","701-7053922-1437802","55-KOH-FR5212","Koh-I-Noor Progresso Woodless Coloured Pencil Set (Set of 12)","1","amazon.ca","Seller","North York","Ontario","M2N 7G6","","16.00","0","3.99","0","0","0","0","0","-1.60","0","0","0","18.39" +"2020-05-04 12:04:23 AM PDT","12871828091","Order","702-8162790-2616209","B1-H1VQ-ZW41","Kum 303.21.21 2-Hole Magnesium Inner Sharpener with Plastic Container, Colors Vary","1","amazon.ca","Seller","Roxboro","Quebec","H8Y 1H4","","11.99","0","3.99","0","0","0","0","0","-2.40","0","0","0","13.58" +"2020-05-04 12:05:53 AM PDT","12871828091","Order","702-0754501-9239460","Z2-B51Q-ECW9","Curaprox CPS 011 Prime Refill","2","amazon.ca","Seller","Québec","Quebec","G1Y 3G2","","71.80","0","6.98","0","0","0","0","0","-11.82","0","0","0","66.96" +"2020-05-04 12:06:08 AM PDT","12871828091","Order","701-8849182-7230651","55-KOH-FR5414","Koh-I-Noor Polycolor Drawing Pencil Set, 72 Assorted Colored Pencils in Tin, 1 Each (FA3827)","1","amazon.ca","Seller","Chelmsford","Ontario","P0M 1L0","","99.00","0","3.99","0","0","0","0","0","-15.45","0","0","0","87.54" +"2020-05-04 12:06:59 AM PDT","12871828091","Order","702-1451660-1534613","55-KOH-FR5465","KOH-I-NOOR Artist's Soft Pastel Pencils (Set of 12)","1","amazon.ca","Seller","Bedford","Nova Scotia","B4A 3A8","","26.00","0","3.99","0","0","0","0","0","-4.50","0","0","0","25.49" +"2020-05-04 12:10:59 AM PDT","12871828091","Order","702-3221763-1773822","00-1FBF-1LYZ","Koh-I-Noor set of tailor´s chalks S128 with holder 6","1","amazon.ca","Seller","Montreal","Quebec","H4B 2T5","","16.00","0","3.99","0","0","0","-3.00","0","-2.55","0","0","0","14.44" +"2020-05-04 12:11:14 AM PDT","12871828091","Order","701-1088436-7705008","ZP-9BCC-1DNI","Dermacol Make-up cover #215 acne cover tattoo cover vertiligo cover scars cover","1","amazon.ca","Seller","North York","Ontario","M3N 2Y5","","24.99","0","3.99","0","0","0","0","0","-4.35","0","0","0","24.63" +"2020-05-04 12:14:55 AM PDT","12871828091","Order","701-0823649-0470661","FQ-R8FN-B7EW","Koh-I-Noor : Mechanical Clutch Pencil Leadholder for 0.5mm 5035","1","amazon.ca","Seller","Clarenville","Newfoundland","A5A 1B6","","13.99","0","3.99","0","0","0","0","0","-2.70","0","0","0","15.28" +"2020-05-04 12:15:27 AM PDT","12871828091","Order","702-4958229-1307427","55-DJY4-FR1023","Tescoma 630877.00 Ravioli Maker Mold For 10 square Ravioli, ravioli cutter","1","amazon.ca","Seller","Saskatoon","Saskatchewan","S7M 0A2","","35.00","0","3.99","0","0","0","0","0","-5.85","0","0","0","33.14" +"2020-05-04 12:15:41 AM PDT","12871828091","Order","702-5585903-5266611","Q1-HI9Q-GX0Z","Curaprox CS 5460 Toothbrush Ultra-Soft by Curaprox","1","amazon.ca","Seller","Stony Plain","Alberta","T7Z 3A1","","19.99","0","3.99","0","0","0","0","0","-3.60","0","0","0","20.38" +"2020-05-04 12:15:48 AM PDT","12871828091","Order","702-2683860-7469858","Z2-B51Q-ECW9","Curaprox CPS 011 Prime Refill","2","amazon.ca","Seller","Granby","Quebec","J2G 1J7","","71.80","0","6.98","0","0","0","0","0","-11.82","0","0","0","66.96" +"2020-05-04 12:30:06 AM PDT","12871828091","Order","702-9413012-3037052","58-G606-7KDO","CS 5460""Ultra Soft"" 3-pack","1","amazon.ca","Seller","Kitchener","Ontario","N2H 4N5","","26.90","0","3.99","0","0","0","0","0","-4.63","0","0","0","26.26" +"2020-05-04 12:30:21 AM PDT","12871828091","Order","702-6629209-0925003","DZ-40M0-R51M","KOH-I-NOOR KOLINSKY Sable Artists Round Brush - Golden Collection Brushes (4)","1","amazon.ca","Seller","Oshawa","Ontario","L1K 2R7","","11.27","0","3.49","0","0","0","0","0","-2.21","0","0","0","12.55" +"2020-05-04 12:30:21 AM PDT","12871828091","Order","702-6629209-0925003","55-KOH-FR5811","koh I noor 9935 Round Brush, Kolinsky, Gold, Size 6","1","amazon.ca","Seller","Oshawa","Ontario","L1K 2R7","","16.00","0","3.49","0","0","0","0","0","-2.92","0","0","0","16.57" +"2020-05-04 12:30:59 AM PDT","12871828091","Order","701-9558978-7565810","55-KOH-FR6591","Koh-i-Noor Mechanical Drop Clutch Lead Holder with 5.6mm x 80mm Lead, Red with Silver Clip, 1 Each (5320CN1001PK)","1","amazon.ca","Seller","Victoria","British Columbia","V8P 5J1","","29.00","0","3.99","0","0","0","0","0","-4.95","0","0","0","28.04" +"2020-05-04 12:31:25 AM PDT","12871828091","Order","701-1605263-5065840","00-1FBF-1LYZ","Koh-I-Noor set of tailor´s chalks S128 with holder 6","1","amazon.ca","Seller","Sherbrooke","Quebec","J1E4A6","","16.00","0","3.99","0","0","0","0","0","-3.00","0","0","0","16.99" +"2020-05-04 12:31:57 AM PDT","12871828091","Order","702-4521711-4869805","55-DJY4-FR1023","Tescoma 630877.00 Ravioli Maker Mold For 10 square Ravioli, ravioli cutter","1","amazon.ca","Seller","Windsor","Ontario","N8Y 4B1","","35.00","0","3.99","0","0","0","-3.00","0","-5.40","0","0","0","30.59" +"2020-05-04 12:33:07 AM PDT","12871828091","Order","702-4207688-5679432","55-KOH-FR2659","Pilot Refills for Frixion Point Rollerball 0.5 mm (Pack of 3) - Red","1","amazon.ca","Seller","Surrey","British Columbia","V3S 2G8","","9.00","0","3.99","0","0","0","0","0","-1.95","0","0","0","11.04" +"2020-05-04 12:33:25 AM PDT","12871828091","Order","702-0499161-8266611","ZVP-XHF-TKP","Koh-i-Noor Mechanical Hardtmuth Lead Holder with 5.6mm x 80mm Lead, Black with Clip, 1 Each (5311CN1005PK)","1","amazon.ca","Seller","Port Coquitlam","BC","V3C 1C3","","29.10","0","3.99","0","0","0","0","0","-4.96","0","0","0","28.13" +"2020-05-04 12:34:50 AM PDT","12871828091","Order","702-2021493-4978658","V4-ARNF-NGPY","Koh-I-Noor Clutch Pencil/Mechanical Lead Holder 5.6mm Artist Drawing, Carpenter Woodworking Pencil with Graphite & Charcoal Lead Refills Set","1","amazon.ca","Seller","Deux-Montagnes","Quebec","J7R 3E3","","29.99","0","3.32","0","0","0","-1.13","0","-4.83","0","0","0","27.35" +"2020-05-04 12:34:50 AM PDT","12871828091","Order","702-2021493-4978658","41-UMEU-6XNW","Koh-i-noor Set of 5340 Blue Metal Lead Holder with Sharpener + 6 Metallic Leads.","1","amazon.ca","Seller","Deux-Montagnes","Quebec","J7R 3E3","","39.00","0","3.32","0","0","0","-1.45","0","-6.13","0","0","0","34.74" +"2020-05-04 12:34:50 AM PDT","12871828091","Order","702-2021493-4978658","5C-RNAH-1MV1","Artists Graphite Lead (5.6mm) - 2B (Box of 6)","1","amazon.ca","Seller","Deux-Montagnes","Quebec","J7R 3E3","","10.99","0","3.33","0","0","0","-0.42","0","-2.09","0","0","0","11.81" +"2020-05-04 12:35:26 AM PDT","12871828091","Order","702-2116857-0419414","55-KOH-FR6305","Koh-I-Noor 6 Gioconda 5.6 mm Graphite Leads. 4865/6B","1","amazon.ca","Seller","Woodbridge","Ontario","L4H 1J9","","9.00","0","3.99","0","0","0","-3.00","0","-1.50","0","0","0","8.49" +"2020-05-04 12:42:43 AM PDT","12871828091","Order","702-5180935-5218660","LT-NPPD-BASA","Koh-I-Noor 162706 Acrylic Colour Set of 6x40ml","1","amazon.ca","Seller","Montreal","Quebec","H1X 2L8","","31.01","0","3.99","0","0","0","0","0","-5.25","0","0","0","29.75" +"2020-05-05 10:59:09 PM PDT","12871828091","Order","701-6814277-3443407","Q1-HI9Q-GX0Z","Curaprox CS 5460 Toothbrush Ultra-Soft by Curaprox","2","amazon.ca","Seller","waterloo","Ontario","N2K 2V1","","39.98","0","6.98","0","0","0","0","0","-7.04","0","0","0","39.92" +"2020-05-05 11:00:12 PM PDT","12871828091","Order","701-0983830-8951405","55-DJY4-FR1025","Tescoma 630879.00 Ravioli Maker, Mold for 21 square Ravioli, ravioli cutter, ravioli press, ravioli stamp","1","amazon.ca","Seller","Stoney Creek","Ontario","L8J 2A1","","39.00","0","3.99","0","0","0","0","0","-6.45","0","0","0","36.54" +"2020-05-05 11:01:45 PM PDT","12871828091","Order","701-1217800-6279464","MS-65T3-FB91","Z-COMFORT Face Make Up Cover High Covering Make-up Foundation, 12 Count","1","amazon.ca","Seller","St. Albans","Newfoundland","A0H 2E0","","19.99","0","3.99","0","0","0","0","0","-3.60","0","0","0","20.38" +"2020-05-05 11:04:28 PM PDT","12871828091","Order","702-6836740-5802609","YLG-9AQ-JU1","Koh-I-Noor Polycolor Drawing Pencil Set, 36 Assorted Colored Pencils in Tin, 1 Each (FA3819.36)","1","amazon.ca","Seller","Toronto","ON","M8X 1R6","","46.99","0","3.99","0","0","0","-3.00","0","-7.20","0","0","0","40.78" +"2020-05-05 11:04:48 PM PDT","12871828091","Order","702-3859144-5044241","XE-2OHQ-7C60","Tescoma 650364.00 Sugar Dispenser | Glass 51 oz","1","amazon.ca","Seller","Ottawa","Ontario","K1Y 4R4","","33.00","0","3.99","0","0","0","-3.00","0","-5.10","0","0","0","28.89" +"2020-05-05 11:05:19 PM PDT","12871828091","Order","702-8406860-9837840","55-KOH-FR5192","KOH-I-NOOR TOISON D'OR 8522 Artist's Soft Pastels - Grey (Pack of 12)","1","amazon.ca","Seller","Creston","British Columbia","V0B1G1","","29.00","0","3.99","0","0","0","0","0","-4.95","0","0","0","28.04" +"2020-05-05 11:05:33 PM PDT","12871828091","Order","701-2464091-3323437","55-KOH-FR6303","Artists Graphite Lead (5.6mm) - 2B (Box of 6)","1","amazon.ca","Seller","Petersburg","Ontario","N0B 2H0","","10.99","0","3.49","0","0","0","-3.00","0","-1.72","0","0","0","9.76" +"2020-05-05 11:05:33 PM PDT","12871828091","Order","701-2464091-3323437","55-KOH-FR6597","Koh-i-noor 5353 Versatil Black All Metal Lead Holders with Sharpener, Soft Surface","1","amazon.ca","Seller","Petersburg","Ontario","N0B 2H0","","12.00","0","3.49","0","0","0","0","0","-2.32","0","0","0","13.17" +"2020-05-05 11:07:11 PM PDT","12871828091","Order","701-9637375-9775417","55-DJY4-FR1025","Tescoma 630879.00 Ravioli Maker, Mold for 21 square Ravioli, ravioli cutter, ravioli press, ravioli stamp","1","amazon.ca","Seller","Perth","Ontario","K7H 3C7","","39.00","0","3.99","0","0","0","0","0","-6.45","0","0","0","36.54" +"2020-05-05 11:07:35 PM PDT","12871828091","Order","701-0691686-0386636","CGE00003","Rio Grande Games RGG A16 Galaxy Trucker Big Expansion","1","amazon.ca","Seller","Saint-Jean-Sur-Richelieu","Quebec","J3B 6M5","","109.00","0","3.99","0","0","0","0","0","-16.95","0","0","0","96.04" +"2020-05-05 11:07:57 PM PDT","12871828091","Order","702-6455811-4956236","Z2-B51Q-ECW9","Curaprox CPS 011 Prime Refill","1","amazon.ca","Seller","Iqaluit","Nunavut","X0A 0H0","","35.90","0","3.99","0","0","0","0","0","-5.98","0","0","0","33.91" +"2020-05-05 11:08:06 PM PDT","12871828091","Order","702-7570771-0745825","IM-RXXJ-QMUQ","KOH-I-NOOR 016270100000 16 ml Set of Acrylic Colour Paint (Pack of 6)","1","amazon.ca","Seller","Montreal","Québec","H2P 2G9","","17.15","0","3.99","0","0","0","0","0","-3.17","0","0","0","17.97" +"2020-05-05 11:09:06 PM PDT","12871828091","Order","702-2741357-3388231","55-KOH-FR6871","KOH-I-NOOR MAGIC 3406 Jumbo Special Coloured Pencil in Blister Pack","1","amazon.ca","Seller","North York","Ontario","M2N 4C2","","20.00","0","3.49","0","0","0","-3.00","0","-3.07","0","0","0","17.42" +"2020-05-05 11:09:06 PM PDT","12871828091","Order","702-2741357-3388231","A91-JDK-1GJ","Koh-i-noor 5055 0.7 mm Mephisto Profi Fine Lead Pencil - Combination Metal/Plastic. 2 Pencils by Koh-I-Noor","1","amazon.ca","Seller","North York","Ontario","M2N 4C2","","21.38","0","3.49","0","0","0","0","0","-3.73","0","0","0","21.14" +"2020-05-05 11:09:27 PM PDT","12871828091","Order","701-1576508-5036258","55-KOH-FR6460","Koh-I-Noor Hardtmuth Mechanical Cluth Leadholder, 5.6mm, 5347 Red","1","amazon.ca","Seller","Mont joli","Québec","G5H 3E1","","10.00","0","3.99","0","0","0","0","0","-2.10","0","0","0","11.89" +"2020-05-05 11:09:45 PM PDT","12871828091","Order","701-8794778-8479449","55-KOH-FR4575","KOH-I-Noor 4380 Metallic Coloured Leads 5,6mm (120mm) Assorted Set of 6","1","amazon.ca","Seller","Mont joli","Québec","G5H 3E1","","13.00","0","3.99","0","0","0","0","0","-2.55","0","0","0","14.44" +"2020-05-05 11:10:10 PM PDT","12871828091","Order","702-7304254-4010643","Z2-B51Q-ECW9","Curaprox CPS 011 Prime Refill","1","amazon.ca","Seller","Gatineau","Quebec","J9H 5W5","","35.90","0","3.99","0","0","0","0","0","-5.98","0","0","0","33.91" +"2020-05-05 11:10:20 PM PDT","12871828091","Order","702-3767494-6604223","CEY-YZQ-VCL","Koh-I-Noor : Progresso : Woodless Watercolour Pencils : Tin Set of 48","1","amazon.ca","Seller","Barrie","Ontario","L4M 2X4","","74.00","0","3.99","0","0","0","0","0","-11.70","0","0","0","66.29" +"2020-05-05 11:12:01 PM PDT","12871828091","Order","701-1457058-9590640","OJ-L39T-RB1N","Dermacol Make-up Cover #221","1","amazon.ca","Seller","Vancouver","British Columbia","V5Y 0A5","","24.30","0","3.99","0","0","0","0","0","-4.24","0","0","0","24.05" +"2020-05-06 4:55:05 AM PDT","12871828091","Refund","702-0255628-9961071","55-KOH-FR5240","KOH-I-NOOR 3713 Mondeluz Aquarell Coloured Pencils - Assorted Colour (Set of 48)","1","amazon.ca","Seller","Calgary","Alberta","T2X 3N1","","-49.00","0","-3.99","0","0","0","3.00","0","6.00","0","0","0","-43.99" +"2020-05-08 1:23:40 AM PDT","12920086661","Order","701-9351647-9304255","5J-TEC8-2QD9","Bread roll Moulds 6 Holes 14 x 5.5 cm - Silicone","1","amazon.ca","Seller","Saint-Jean-Sur-Richelieu","Quebec","J3A 1Y5","","39.00","0","3.99","0","0","0","-3.00","0","-6.00","0","0","0","33.99" + diff --git a/Mapp.CommonServices.Extensions/IConfigProvider.cs b/Mapp.CommonServices.Extensions/ISettingsWrapper.cs similarity index 90% rename from Mapp.CommonServices.Extensions/IConfigProvider.cs rename to Mapp.CommonServices.Extensions/ISettingsWrapper.cs index 21ec2fa..bf6687e 100644 --- a/Mapp.CommonServices.Extensions/IConfigProvider.cs +++ b/Mapp.CommonServices.Extensions/ISettingsWrapper.cs @@ -12,6 +12,7 @@ public interface ISettingsWrapper // TODO move to UI.Settings Point MainWindowTopLeftCorner { get; set; } bool OpenTargetFolderAfterConversion { get; set; } string InvoiceConverterConfigsDir { get; } + string TransactionConverterConfigsDir { get; } void SaveConfig(); } diff --git a/Mapp.CommonServices.Extensions/Invoice.cs b/Mapp.CommonServices.Extensions/Invoice.cs index 9e28953..b1c601e 100644 --- a/Mapp.CommonServices.Extensions/Invoice.cs +++ b/Mapp.CommonServices.Extensions/Invoice.cs @@ -5,6 +5,23 @@ namespace Mapp.Common { + public class VariableCode + { + public const int ShortVariableCodeLength = 10; + + public static string GetShortVariableCode(string fullVariableCode) + { + string filteredCode = fullVariableCode.RemoveAll("-").RemoveAll("#"); + string finalCode = filteredCode; + if (filteredCode.Length > ShortVariableCodeLength) finalCode = finalCode.Substring(filteredCode.Length - ShortVariableCodeLength, ShortVariableCodeLength); + + // if short var code has zeros in the begining - they cannot be stored in Invoice + finalCode = finalCode.TrimStart('0'); // zeros don't get correctly imported into Pohoda + + return finalCode; + } + } + public enum InvoiceVatClassification { Undefined, @@ -17,7 +34,7 @@ public enum InvoiceVatClassification } - public class Invoice + public class Invoice { private readonly List _invoiceItems = new(); private Dictionary _vatPercentage; @@ -44,7 +61,7 @@ public Invoice(Dictionary vatPercentage) // TODO join variable symbols into single Class with ShortVersion autoprop public string VariableSymbolFull { get; set; } - public string VariableSymbolShort => GetShortVariableCode(VariableSymbolFull, out _); + public string VariableSymbolShort => VariableCode.GetShortVariableCode(VariableSymbolFull); public DateTime ConversionDate { get; set; } public DateTime DateTax => CalculateTaxDate(); public DateTime DateAccounting => ConversionDate; @@ -115,17 +132,6 @@ private void AggregateItemsOfType(IEnumerable items2, InvoiceIt AggregateItems(existingItemOfType, newItemOfType); } - public static string GetShortVariableCode(string fullVariableCode, out int zerosRemoved) - { - string filteredCode = fullVariableCode.RemoveAll("-"); - filteredCode = filteredCode.Substring(filteredCode.Length - 10, 10); - - // if short var code has zeros in the begining - they cannot be stored in Invoice, that is why we delete them - // and give information about how many zeros were deleted to GPC generator - var finalCode = filteredCode.TrimStart('0'); // zeros don't get correctly imported into Pohoda - zerosRemoved = filteredCode.Length - finalCode.Length; - return finalCode; - } private void AggregateItems(InvoiceItemBase existingItem, InvoiceItemBase aggregatedItem) { diff --git a/Mapp.DataAccess/FileManager.cs b/Mapp.DataAccess/FileManager.cs new file mode 100644 index 0000000..19bb258 --- /dev/null +++ b/Mapp.DataAccess/FileManager.cs @@ -0,0 +1,17 @@ +using System.IO; + +namespace Mapp.DataAccess +{ + public class FileManager : IFileManager + { + public void WriteAllTextToFile(string fullFilePath, string text) + { + File.WriteAllText(fullFilePath, text); + } + + public string ReadAllTextFromFile(string fullFilePath) + { + return File.ReadAllText(fullFilePath); + } + } +} \ No newline at end of file diff --git a/Mapp.DataAccess/IDateTimeManager.cs b/Mapp.DataAccess/IDateTimeManager.cs new file mode 100644 index 0000000..5e421c7 --- /dev/null +++ b/Mapp.DataAccess/IDateTimeManager.cs @@ -0,0 +1,18 @@ +using System; + +namespace Mapp.DataAccess +{ + public interface IDateTimeManager + { + DateTime Today { get; } + DateTime Now { get; } + } + + public class DateTimeManager : IDateTimeManager + { + public DateTime Today => DateTime.Today; + + public DateTime Now => DateTime.Now; + } + +} \ No newline at end of file diff --git a/Mapp.DataAccess/IFileManager.cs b/Mapp.DataAccess/IFileManager.cs new file mode 100644 index 0000000..4f3394c --- /dev/null +++ b/Mapp.DataAccess/IFileManager.cs @@ -0,0 +1,8 @@ +namespace Mapp.DataAccess +{ + public interface IFileManager + { + void WriteAllTextToFile(string fullFilePath, string text); + string ReadAllTextFromFile(string fullFilePath); + } +} \ No newline at end of file diff --git a/Mapp.DataAccess/JsonManager.cs b/Mapp.DataAccess/JsonManager.cs index e72fbf4..b179302 100644 --- a/Mapp.DataAccess/JsonManager.cs +++ b/Mapp.DataAccess/JsonManager.cs @@ -5,6 +5,7 @@ using System.Reflection; using System.Text.Json; using AutoUpdaterDotNET; +using Mapp.Common; using Mapp.Models.StockQuantity; using Mapp.Models.Transactions; @@ -16,12 +17,20 @@ public interface IJsonManager IEnumerable DeserializeUpdates(string remoteJsonData); Dictionary DeserializeJsonDictionary(string fileName); void SerializeDictionaryToJson(Dictionary map, string fileName); - IEnumerable LoadTransactionsConfigs(); + IEnumerable LoadTransactionsConfigs(); IEnumerable LoadStockQuantityUpdaterConfigs(); } public class JsonManager : IJsonManager { + private readonly ISettingsWrapper _settings; + private readonly IFileManager _fileManager; + + public JsonManager(ISettingsWrapper settings, IFileManager fileManager) + { + _settings = settings; + this._fileManager = fileManager; + } public IEnumerable DeserializeUpdates(string remoteJsonData) { @@ -34,7 +43,7 @@ public Dictionary DeserializeJsonDictionary(string fileName) string json; try { - json = File.ReadAllText(fileName); + json = _fileManager.ReadAllTextFromFile(fileName); } catch (Exception ex) { @@ -48,21 +57,22 @@ public Dictionary DeserializeJsonDictionary(string fileName) { string json = JsonSerializer.Serialize(map, new JsonSerializerOptions { - IgnoreNullValues = true, + DefaultIgnoreCondition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingNull, WriteIndented = true }); - File.WriteAllText(fileName, json); + _fileManager.WriteAllTextToFile(fileName, json); } - public IEnumerable LoadTransactionsConfigs() + public IEnumerable LoadTransactionsConfigs() { // WE need it because when app is started from other dir (for example during UI tests), it would not otherwise find the configs!! - var fileNames = Directory.GetFiles("Transactions Configs"); - var configDtos = new List(); + var fileNames = Directory.GetFiles(_settings.TransactionConverterConfigsDir); + var configDtos = new List(); foreach (var fileName in fileNames.Where(fn => fn.Contains("TransactionsConfig"))) { string json = File.ReadAllText(fileName); - var configDto = JsonSerializer.Deserialize(json); + var configDto = JsonSerializer.Deserialize(json); + configDto.Name = Path.GetFileNameWithoutExtension(fileName); configDtos.Add(configDto); } @@ -76,7 +86,7 @@ public IEnumerable LoadStockQuantityUpdaterConfigs PropertyNamingPolicy = JsonNamingPolicy.CamelCase, WriteIndented = true }; - string json = File.ReadAllText(Path.Join("StockQuantityUpdater", "config.json")); + string json = _fileManager.ReadAllTextFromFile(Path.Join("StockQuantityUpdater", "config.json")); return JsonSerializer.Deserialize(json, serializeOptions); } } diff --git a/Mapp.Models/Transactions/MarketPlaceTransactionsConfigDTO.cs b/Mapp.Models/Transactions/MarketPlaceTransactionsConfigData.cs similarity index 77% rename from Mapp.Models/Transactions/MarketPlaceTransactionsConfigDTO.cs rename to Mapp.Models/Transactions/MarketPlaceTransactionsConfigData.cs index 18208e7..ac88ca8 100644 --- a/Mapp.Models/Transactions/MarketPlaceTransactionsConfigDTO.cs +++ b/Mapp.Models/Transactions/MarketPlaceTransactionsConfigData.cs @@ -2,14 +2,15 @@ namespace Mapp.Models.Transactions { - public class MarketPlaceTransactionsConfigDTO + public class MarketPlaceTransactionsConfigData { - public MarketPlaceTransactionsConfigDTO() // TODO why cannot be protected ? (exception) + public MarketPlaceTransactionsConfigData() // TODO why cannot be protected ? (exception) { } + public string Name { get; set; } public int MarketPlaceId { get; set; } - public string DistinctionPhrase { get; set; } + public IEnumerable DistinctionPhrases { get; set; } public string DateSubstring { get; set; } diff --git a/Mapp.UI/Mapp.UI.csproj b/Mapp.UI/Mapp.UI.csproj index 4a85f10..1e87761 100644 --- a/Mapp.UI/Mapp.UI.csproj +++ b/Mapp.UI/Mapp.UI.csproj @@ -179,46 +179,52 @@ Always - PreserveNewest + Always - PreserveNewest + Always - PreserveNewest + Always - PreserveNewest + Always - PreserveNewest + Always - PreserveNewest + Always - PreserveNewest + Always - PreserveNewest + Always - PreserveNewest + Always - PreserveNewest + Always - PreserveNewest + Always - PreserveNewest + Always - PreserveNewest + Always + + + Always - PreserveNewest + Always + + + Always diff --git a/Mapp.UI/Settings/SettingsWrapper.cs b/Mapp.UI/Settings/SettingsWrapper.cs index 685afff..00aa980 100644 --- a/Mapp.UI/Settings/SettingsWrapper.cs +++ b/Mapp.UI/Settings/SettingsWrapper.cs @@ -12,6 +12,7 @@ public class SettingsWrapper: ISettingsWrapper private readonly bool _isAutosaveEnabled; public string InvoiceConverterConfigsDir => "Invoice Converter"; + public string TransactionConverterConfigsDir => "Transactions Configs"; public bool IsMainWindowMaximized { diff --git a/Mapp.UI/Startup/Bootstrapper.cs b/Mapp.UI/Startup/Bootstrapper.cs index 5af25e1..fc2bd4c 100644 --- a/Mapp.UI/Startup/Bootstrapper.cs +++ b/Mapp.UI/Startup/Bootstrapper.cs @@ -43,6 +43,8 @@ public IContainer ConfigureContainer() builder.RegisterAsInterfaceSingleton(); builder.RegisterAsInterfaceSingleton(); builder.RegisterAsInterfaceSingleton(); + builder.RegisterAsInterfaceSingleton(); + builder.RegisterAsInterfaceSingleton(); builder.RegisterAsInterfaceSingleton(); builder.RegisterAsInterfaceSingleton(); diff --git a/Mapp.UI/Transactions Configs/TransactionsConfigAmazonAU.json b/Mapp.UI/Transactions Configs/TransactionsConfigAmazonAU.json index a446290..c561358 100644 --- a/Mapp.UI/Transactions Configs/TransactionsConfigAmazonAU.json +++ b/Mapp.UI/Transactions Configs/TransactionsConfigAmazonAU.json @@ -1,8 +1,8 @@ { "LinesToSkipBeforeColumnNames": 7, "MarketPlaceId": 4, - "DistinctionPhrase": "All amounts in AUD, unless specified", - "DateSubstring": "(.*) GMT", + "DistinctionPhrases": [ "All amounts in AUD, unless specified" ], + "DateSubstring": "(.*) (UTC|GMT).*", "TimeSeparatorOverride": null, "DateCultureInfoName": "en-AU", "OrderIdColumnName": "order id", diff --git a/Mapp.UI/Transactions Configs/TransactionsConfigAmazonCA.json b/Mapp.UI/Transactions Configs/TransactionsConfigAmazonCA.json index a3b4c7a..1c20542 100644 --- a/Mapp.UI/Transactions Configs/TransactionsConfigAmazonCA.json +++ b/Mapp.UI/Transactions Configs/TransactionsConfigAmazonCA.json @@ -1,8 +1,8 @@ { "LinesToSkipBeforeColumnNames": 7, "MarketPlaceId": 1, - "DistinctionPhrase": "All amounts in CAD, unless specified", - "DateSubstring": "(.*) ((p.m.)|(a.m.)) (PST|PDT)", + "DistinctionPhrases": ["All amounts in CAD, unless specified"], + "DateSubstring": "(.*) ((p.m.)|(a.m.)|(AM)|(PM)) (PST|PDT)", "TimeSeparatorOverride": null, "DateCultureInfoName": "en-CA", "OrderIdColumnName": "order id", diff --git a/Mapp.UI/Transactions Configs/TransactionsConfigAmazonDE.json b/Mapp.UI/Transactions Configs/TransactionsConfigAmazonDE.json index 3dfac39..a034a67 100644 --- a/Mapp.UI/Transactions Configs/TransactionsConfigAmazonDE.json +++ b/Mapp.UI/Transactions Configs/TransactionsConfigAmazonDE.json @@ -1,8 +1,8 @@ { "LinesToSkipBeforeColumnNames": 7, "MarketPlaceId": 6, - "DistinctionPhrase": "Alle Beträge in Euro sofern nicht anders gekennzeichnet", - "DateSubstring": "(.*) UTC", + "DistinctionPhrases": [ "Alle Beträge in Euro sofern nicht anders gekennzeichnet" ], + "DateSubstring": "(.*) (UTC|GMT).*", "TimeSeparatorOverride": null, "DateCultureInfoName": "de-DE", "OrderIdColumnName": "Bestellnummer", diff --git a/Mapp.UI/Transactions Configs/TransactionsConfigAmazonES.json b/Mapp.UI/Transactions Configs/TransactionsConfigAmazonES.json index 315e66f..5fcec1c 100644 --- a/Mapp.UI/Transactions Configs/TransactionsConfigAmazonES.json +++ b/Mapp.UI/Transactions Configs/TransactionsConfigAmazonES.json @@ -1,8 +1,8 @@ { "LinesToSkipBeforeColumnNames": 7, "MarketPlaceId": 7, - "DistinctionPhrase": "Todos los importes en EUR, a menos que se especifique lo contrario", - "DateSubstring": "(.*) UTC", + "DistinctionPhrases": [ "Todos los importes en EUR, a menos que se especifique lo contrario" ], + "DateSubstring": "(.*) (UTC|GMT).*", "TimeSeparatorOverride": null, "DateCultureInfoName": "es-ES", "OrderIdColumnName": "número de pedido", diff --git a/Mapp.UI/Transactions Configs/TransactionsConfigAmazonFR.json b/Mapp.UI/Transactions Configs/TransactionsConfigAmazonFR.json index e493d2f..323f837 100644 --- a/Mapp.UI/Transactions Configs/TransactionsConfigAmazonFR.json +++ b/Mapp.UI/Transactions Configs/TransactionsConfigAmazonFR.json @@ -1,32 +1,32 @@ { - "LinesToSkipBeforeColumnNames":7, - "MarketPlaceId":8, - "DistinctionPhrase":"Tous les montants sont en EUR, sauf mention contraire.", - "DateSubstring":"(.*) UTC", - "TimeSeparatorOverride":null, - "DateCultureInfoName":"fr-FR", - "OrderIdColumnName":"numéro de la commande", - "TransactionTypeColumnName":"type", - "DateTimeColumnNames":[ - "date/heure" + "LinesToSkipBeforeColumnNames": 7, + "MarketPlaceId": 8, + "DistinctionPhrases": [ "Tous les montants sont en EUR, sauf mention contraire." ], + "DateSubstring": "(.*) (UTC|GMT).*", + "TimeSeparatorOverride": null, + "DateCultureInfoName": "fr-FR", + "OrderIdColumnName": "numéro de la commande", + "TransactionTypeColumnName": "type", + "DateTimeColumnNames": [ + "date/heure" ], - "ValueComponentsColumnName":[ - "ventes de produits", - "crédits d\u0027expédition", - "Rabais promotionnels", - "crédits sur l'emballage cadeau" + "ValueComponentsColumnName": [ + "ventes de produits", + "crédits d\u0027expédition", + "Rabais promotionnels", + "crédits sur l'emballage cadeau" ], - "TransferTypeNames":[ - "Transfert" + "TransferTypeNames": [ + "Transfert" ], - "RefundTypeNames":[ - "Remboursement" + "RefundTypeNames": [ + "Remboursement" ], - "OrderTypeNames":[ - "Commande" + "OrderTypeNames": [ + "Commande" ], - "ServiceFeeTypeNames":[ - "Service Fee" + "ServiceFeeTypeNames": [ + "Service Fee" ], - "TotalPriceColumnName":"total" + "TotalPriceColumnName": "total" } \ No newline at end of file diff --git a/Mapp.UI/Transactions Configs/TransactionsConfigAmazonGB.json b/Mapp.UI/Transactions Configs/TransactionsConfigAmazonGB.json index f48b22b..adc816f 100644 --- a/Mapp.UI/Transactions Configs/TransactionsConfigAmazonGB.json +++ b/Mapp.UI/Transactions Configs/TransactionsConfigAmazonGB.json @@ -1,32 +1,32 @@ { - "LinesToSkipBeforeColumnNames":7, - "MarketPlaceId":5, - "DistinctionPhrase":"All amounts in GBP, unless specified", - "DateSubstring":"(.*) UTC", - "TimeSeparatorOverride":null, - "DateCultureInfoName":"en-GB", - "OrderIdColumnName":"order id", - "TransactionTypeColumnName":"type", - "DateTimeColumnNames":[ - "date/time" + "LinesToSkipBeforeColumnNames": 7, + "MarketPlaceId": 5, + "DistinctionPhrases": [ "All amounts in GBP, unless specified" ], + "DateSubstring": "(.*) (UTC|GMT).*", + "TimeSeparatorOverride": null, + "DateCultureInfoName": "en-GB", + "OrderIdColumnName": "order id", + "TransactionTypeColumnName": "type", + "DateTimeColumnNames": [ + "date/time" ], - "ValueComponentsColumnName":[ - "product sales", - "postage credits", - "promotional rebates", - "gift wrap credits" + "ValueComponentsColumnName": [ + "product sales", + "postage credits", + "promotional rebates", + "gift wrap credits" ], - "TransferTypeNames":[ - "Transfer" + "TransferTypeNames": [ + "Transfer" ], - "RefundTypeNames":[ - "Refund" + "RefundTypeNames": [ + "Refund" ], - "OrderTypeNames":[ - "Order" + "OrderTypeNames": [ + "Order" ], - "ServiceFeeTypeNames":[ - "Service Fee" + "ServiceFeeTypeNames": [ + "Service Fee" ], - "TotalPriceColumnName":"total" + "TotalPriceColumnName": "total" } \ No newline at end of file diff --git a/Mapp.UI/Transactions Configs/TransactionsConfigAmazonIT.json b/Mapp.UI/Transactions Configs/TransactionsConfigAmazonIT.json index e5c8365..f594609 100644 --- a/Mapp.UI/Transactions Configs/TransactionsConfigAmazonIT.json +++ b/Mapp.UI/Transactions Configs/TransactionsConfigAmazonIT.json @@ -1,32 +1,32 @@ { - "LinesToSkipBeforeColumnNames":7, - "MarketPlaceId":9, - "DistinctionPhrase":"Tutti gli importi sono espressi in EUR, se non diversamente specificato.", - "DateSubstring":"(.*) UTC", - "TimeSeparatorOverride":".", - "DateCultureInfoName":"it-IT", - "OrderIdColumnName":"Numero ordine", - "TransactionTypeColumnName":"Tipo", - "DateTimeColumnNames":[ - "Data/Ora:" + "LinesToSkipBeforeColumnNames": 7, + "MarketPlaceId": 9, + "DistinctionPhrases": [ "Tutti gli importi sono espressi in EUR, se non diversamente specificato." ], + "DateSubstring": "(.*) (UTC|GMT).*", + "TimeSeparatorOverride": ".", + "DateCultureInfoName": "it-IT", + "OrderIdColumnName": "Numero ordine", + "TransactionTypeColumnName": "Tipo", + "DateTimeColumnNames": [ + "Data/Ora:" ], - "ValueComponentsColumnName":[ - "Vendite", - "Accrediti per le spedizioni", - "Sconti promozionali", - "Accrediti per confezioni regalo" + "ValueComponentsColumnName": [ + "Vendite", + "Accrediti per le spedizioni", + "Sconti promozionali", + "Accrediti per confezioni regalo" ], - "TransferTypeNames":[ - "Trasferimento" + "TransferTypeNames": [ + "Trasferimento" ], - "RefundTypeNames":[ - "Rimborso" + "RefundTypeNames": [ + "Rimborso" ], - "OrderTypeNames":[ - "Ordine" + "OrderTypeNames": [ + "Ordine" ], - "ServiceFeeTypeNames":[ - "Service Fee" + "ServiceFeeTypeNames": [ + "Service Fee" ], - "TotalPriceColumnName":"totale" + "TotalPriceColumnName": "totale" } \ No newline at end of file diff --git a/Mapp.UI/Transactions Configs/TransactionsConfigAmazonJP.json b/Mapp.UI/Transactions Configs/TransactionsConfigAmazonJP.json index cf9f373..506ffe7 100644 --- a/Mapp.UI/Transactions Configs/TransactionsConfigAmazonJP.json +++ b/Mapp.UI/Transactions Configs/TransactionsConfigAmazonJP.json @@ -1,7 +1,7 @@ { "LinesToSkipBeforeColumnNames":7, "MarketPlaceId":3, - "DistinctionPhrase":"指定のない場合、単位は円", + "DistinctionPhrases":["指定のない場合、単位は円"], "DateSubstring":"(.*)JST", "TimeSeparatorOverride":null, "DateCultureInfoName":"ja-JP", diff --git a/Mapp.UI/Transactions Configs/TransactionsConfigAmazonMX.json b/Mapp.UI/Transactions Configs/TransactionsConfigAmazonMX.json index e4a571c..61d7c92 100644 --- a/Mapp.UI/Transactions Configs/TransactionsConfigAmazonMX.json +++ b/Mapp.UI/Transactions Configs/TransactionsConfigAmazonMX.json @@ -1,32 +1,32 @@ { - "LinesToSkipBeforeColumnNames":7, - "MarketPlaceId":2, - "DistinctionPhrase":"Todos los importes en MXN, a menos que se especifique", - "DateSubstring":"(.*) GMT-7", - "TimeSeparatorOverride":null, - "DateCultureInfoName":"es-MX", - "OrderIdColumnName":"Id. del pedido", - "TransactionTypeColumnName":"tipo", - "DateTimeColumnNames":[ - "fecha/hora" + "LinesToSkipBeforeColumnNames": 7, + "MarketPlaceId": 2, + "DistinctionPhrases": [ "Todos los importes en dólares, a menos que se especifique" ], + "DateSubstring": "(.*) (UTC|GMT).*", + "TimeSeparatorOverride": null, + "DateCultureInfoName": "es-MX", + "OrderIdColumnName": "Id. del pedido", + "TransactionTypeColumnName": "tipo", + "DateTimeColumnNames": [ + "fecha/hora" ], - "ValueComponentsColumnName":[ - "ventas de productos", - "créditos de envío", - "descuentos promocionales", - "créditos por envoltorio de regalo" + "ValueComponentsColumnName": [ + "ventas de productos", + "créditos de envío", + "descuentos promocionales", + "créditos por envoltorio de regalo" ], - "TransferTypeNames":[ - "Trasferir" + "TransferTypeNames": [ + "Trasferir" ], - "RefundTypeNames":[ - "Reembolso" + "RefundTypeNames": [ + "Reembolso" ], - "OrderTypeNames":[ - "Pedido" + "OrderTypeNames": [ + "Pedido" ], - "ServiceFeeTypeNames":[ - "Service Fee" + "ServiceFeeTypeNames": [ + "Service Fee" ], - "TotalPriceColumnName":"total" + "TotalPriceColumnName": "total" } \ No newline at end of file diff --git a/Mapp.UI/Transactions Configs/TransactionsConfigAmazonNL.json b/Mapp.UI/Transactions Configs/TransactionsConfigAmazonNL.json index cac2f68..1c10ca4 100644 --- a/Mapp.UI/Transactions Configs/TransactionsConfigAmazonNL.json +++ b/Mapp.UI/Transactions Configs/TransactionsConfigAmazonNL.json @@ -1,32 +1,32 @@ { - "LinesToSkipBeforeColumnNames":7, - "MarketPlaceId":10, - "DistinctionPhrase":"Alle bedragen in EUR, tenzij anders vermeld", - "DateSubstring":"(.*) UTC", - "TimeSeparatorOverride":null, - "DateCultureInfoName":"nl-NL", - "OrderIdColumnName":"bestelnummer", - "TransactionTypeColumnName":"type", - "DateTimeColumnNames":[ - "datum/tijd" + "LinesToSkipBeforeColumnNames": 7, + "MarketPlaceId": 10, + "DistinctionPhrases": [ "Alle bedragen in EUR, tenzij anders vermeld" ], + "DateSubstring": "(.*) (UTC|GMT).*", + "TimeSeparatorOverride": null, + "DateCultureInfoName": "nl-NL", + "OrderIdColumnName": "bestelnummer", + "TransactionTypeColumnName": "type", + "DateTimeColumnNames": [ + "datum/tijd" ], - "ValueComponentsColumnName":[ - "verkoop van producten", - "Verzendtegoeden", - "promotiekortingen", - "kredietpunten cadeauverpakking" + "ValueComponentsColumnName": [ + "verkoop van producten", + "Verzendtegoeden", + "promotiekortingen", + "kredietpunten cadeauverpakking" ], - "TransferTypeNames":[ - "Overboeking" + "TransferTypeNames": [ + "Overboeking" ], - "RefundTypeNames":[ - "Terugbetaling" + "RefundTypeNames": [ + "Terugbetaling" ], - "OrderTypeNames":[ - "Bestelling" + "OrderTypeNames": [ + "Bestelling" ], - "ServiceFeeTypeNames":[ - "Servicekosten" + "ServiceFeeTypeNames": [ + "Servicekosten" ], - "TotalPriceColumnName":"totaal" + "TotalPriceColumnName": "totaal" } \ No newline at end of file diff --git a/Mapp.UI/Transactions Configs/TransactionsConfigAmazonPL.json b/Mapp.UI/Transactions Configs/TransactionsConfigAmazonPL.json index b75fa27..ffd76fa 100644 --- a/Mapp.UI/Transactions Configs/TransactionsConfigAmazonPL.json +++ b/Mapp.UI/Transactions Configs/TransactionsConfigAmazonPL.json @@ -1,8 +1,8 @@ { "LinesToSkipBeforeColumnNames": 7, "MarketPlaceId": 12, - "DistinctionPhrase": "Wszystkie kwoty w PLN, chyba że określono inaczej", - "DateSubstring": "(.*) UTC", + "DistinctionPhrases": [ "Wszystkie kwoty w PLN, chyba że określono inaczej" ], + "DateSubstring": "(.*) (UTC|GMT).*", "TimeSeparatorOverride": null, "DateCultureInfoName": "pl-PL", "OrderIdColumnName": "identyfikator zamówienia", diff --git a/Mapp.UI/Transactions Configs/TransactionsConfigAmazonSE.json b/Mapp.UI/Transactions Configs/TransactionsConfigAmazonSE.json index 27b73b8..73ac31e 100644 --- a/Mapp.UI/Transactions Configs/TransactionsConfigAmazonSE.json +++ b/Mapp.UI/Transactions Configs/TransactionsConfigAmazonSE.json @@ -1,32 +1,32 @@ { - "LinesToSkipBeforeColumnNames":7, - "MarketPlaceId":13, - "DistinctionPhrase":"All amounts in GBP, unless specified", - "DateSubstring":"(.*) UTC", - "TimeSeparatorOverride":null, - "DateCultureInfoName":"en-GB", - "OrderIdColumnName":"order id", - "TransactionTypeColumnName":"type", - "DateTimeColumnNames":[ - "date/time" + "LinesToSkipBeforeColumnNames": 7, + "MarketPlaceId": 13, + "DistinctionPhrases": [ "All amounts in GBP, unless specified" ], + "DateSubstring": "(.*) (UTC|GMT).*", + "TimeSeparatorOverride": null, + "DateCultureInfoName": "en-GB", + "OrderIdColumnName": "order id", + "TransactionTypeColumnName": "type", + "DateTimeColumnNames": [ + "date/time" ], - "ValueComponentsColumnName":[ - "product sales", - "postage credits", - "promotional rebates", - "gift wrap credits" + "ValueComponentsColumnName": [ + "product sales", + "postage credits", + "promotional rebates", + "gift wrap credits" ], - "TransferTypeNames":[ - "Transfer" + "TransferTypeNames": [ + "Transfer" ], - "RefundTypeNames":[ - "Refund" + "RefundTypeNames": [ + "Refund" ], - "OrderTypeNames":[ - "Order" + "OrderTypeNames": [ + "Order" ], - "ServiceFeeTypeNames":[ - "Service Fee" + "ServiceFeeTypeNames": [ + "Service Fee" ], - "TotalPriceColumnName":"total" + "TotalPriceColumnName": "total" } \ No newline at end of file diff --git a/Mapp.UI/Transactions Configs/TransactionsConfigAmazonUS.json b/Mapp.UI/Transactions Configs/TransactionsConfigAmazonUS.json index 5b99813..4782988 100644 --- a/Mapp.UI/Transactions Configs/TransactionsConfigAmazonUS.json +++ b/Mapp.UI/Transactions Configs/TransactionsConfigAmazonUS.json @@ -1,7 +1,7 @@ { "LinesToSkipBeforeColumnNames":7, "MarketPlaceId":0, - "DistinctionPhrase":"All amounts in USD, unless specified", + "DistinctionPhrases": ["All amounts in USD, unless specified"], "DateSubstring":"(.*) (PST|PDT)", "TimeSeparatorOverride":null, "DateCultureInfoName":"en-US", diff --git a/Mapp.UI/Transactions Configs/TransactionsConfigPaypal.json b/Mapp.UI/Transactions Configs/TransactionsConfigPaypal.json index da4e969..53929a3 100644 --- a/Mapp.UI/Transactions Configs/TransactionsConfigPaypal.json +++ b/Mapp.UI/Transactions Configs/TransactionsConfigPaypal.json @@ -1,39 +1,39 @@ { - "LinesToSkipBeforeColumnNames":0, - "MarketPlaceId":21, - "DistinctionPhrase":"Date", - "DateSubstring":"(.*)", - "TimeSeparatorOverride":null, - "DateCultureInfoName":"en-US", - "OrderIdColumnName":"Transaction ID", - "TransactionTypeColumnName":"Description", - "DateTimeColumnNames":[ - "Date", - "Time" + "LinesToSkipBeforeColumnNames": 0, + "MarketPlaceId": 21, + "DistinctionPhrases": [ "Date", "Time", "Time Zone", "Description", "Currency" ], + "DateSubstring": "(.*)", + "TimeSeparatorOverride": null, + "DateCultureInfoName": "", + "OrderIdColumnName": "Transaction ID", + "TransactionTypeColumnName": "Description", + "DateTimeColumnNames": [ + "Date", + "Time" ], - "ValueComponentsColumnName":[ - "Gross", - "Sales Tax" + "ValueComponentsColumnName": [ + "Gross", + "Sales Tax" ], - "TransferTypeNames":[ - "General Withdrawal - Bank Account" + "TransferTypeNames": [ + "General Withdrawal - Bank Account" ], - "RefundTypeNames":[ - "Payment Refund" + "RefundTypeNames": [ + "Payment Refund" ], - "OrderTypeNames":[ - "eBay Auction Payment", - "Express Checkout Payment", - "General Payment", - "Mobile Payment", - "Website Payment" + "OrderTypeNames": [ + "eBay Auction Payment", + "Express Checkout Payment", + "General Payment", + "Mobile Payment", + "Website Payment" ], - "ServiceFeeTypeNames":[ - "General Currency Conversion", - "Tax collected by partner", - "Cancellation of Hold for Dispute Resolution", - "Hold on Balance for Dispute Investigation", - "PreApproved Payment Bill User Payment" + "ServiceFeeTypeNames": [ + "General Currency Conversion", + "Tax collected by partner", + "Cancellation of Hold for Dispute Resolution", + "Hold on Balance for Dispute Investigation", + "PreApproved Payment Bill User Payment" ], - "TotalPriceColumnName":"Gross" + "TotalPriceColumnName": "Gross" } \ No newline at end of file diff --git a/Mapp.UI/Transactions Configs/TransactionsConfigPaypalCZ.json b/Mapp.UI/Transactions Configs/TransactionsConfigPaypalCZ.json new file mode 100644 index 0000000..34ebf36 --- /dev/null +++ b/Mapp.UI/Transactions Configs/TransactionsConfigPaypalCZ.json @@ -0,0 +1,39 @@ +{ + "LinesToSkipBeforeColumnNames": 0, + "MarketPlaceId": 21, + "DistinctionPhrases": [ "Datum", "Čas", "Časové pásmo", "Popis" ], + "DateSubstring": "(.*)", + "TimeSeparatorOverride": null, + "DateCultureInfoName": "cs-CZ", + "OrderIdColumnName": "ID transakce", + "TransactionTypeColumnName": "Popis", + "DateTimeColumnNames": [ + "Datum", + "Čas" + ], + "ValueComponentsColumnName": [ + "Brutto", + "Daň z prodeje" + ], + "TransferTypeNames": [ + "General Withdrawal - Bank Account" + ], + "RefundTypeNames": [ + "Payment Refund" + ], + "OrderTypeNames": [ + "eBay Auction Payment", + "Express Checkout Payment", + "General Payment", + "Mobile Payment", + "Website Payment" + ], + "ServiceFeeTypeNames": [ + "General Currency Conversion", + "Tax collected by partner", + "Cancellation of Hold for Dispute Resolution", + "Hold on Balance for Dispute Investigation", + "PreApproved Payment Bill User Payment" + ], + "TotalPriceColumnName": "Brutto" +} \ No newline at end of file diff --git a/Mapp.UI/Transactions Configs/TransactionsConfigShopify.json b/Mapp.UI/Transactions Configs/TransactionsConfigShopify.json new file mode 100644 index 0000000..e8ea907 --- /dev/null +++ b/Mapp.UI/Transactions Configs/TransactionsConfigShopify.json @@ -0,0 +1,31 @@ +{ + "LinesToSkipBeforeColumnNames": 0, + "MarketPlaceId": 22, + "DistinctionPhrases": [ "Transaction Date", "Type", "Order", "Card Brand" ], + "DateSubstring": "(.*)", + "TimeSeparatorOverride": null, + "DateCultureInfoName": "en-US", + "OrderIdColumnName": "Order", + "TransactionTypeColumnName": "Type", + "DateTimeColumnNames": [ + "Transaction Date" + ], + "ValueComponentsColumnName": [ + "Presentment Amount" + ], + "TransferTypeNames": [ + + ], + "RefundTypeNames": [ + "refund", + "chargeback" + ], + "OrderTypeNames": [ + "charge" + + ], + "ServiceFeeTypeNames": [ + + ], + "TotalPriceColumnName": "Presentment Amount" +} \ No newline at end of file diff --git a/Mapp.UI/Views/MainWindow.xaml b/Mapp.UI/Views/MainWindow.xaml index 2e7d25b..367d580 100644 --- a/Mapp.UI/Views/MainWindow.xaml +++ b/Mapp.UI/Views/MainWindow.xaml @@ -62,8 +62,8 @@ - +