Skip to content

Commit

Permalink
Merge pull request #4 from meinereina/master
Browse files Browse the repository at this point in the history
fix: lower bound price value
  • Loading branch information
stephanstapel authored May 8, 2024
2 parents 3394aae + 55a9e01 commit fc7baa5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BMECat.net/BMECatWriter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ public async Task SaveAsync(ProductCatalog catalog, Stream stream, BMECatExtensi
Writer.WriteElementString("PRICE_AMOUNT", price.Amount.ToString("0.00", System.Globalization.CultureInfo.InvariantCulture));
Writer.WriteElementString("PRICE_CURRENCY", price.Currency.ToString());
Writer.WriteElementString("TAX", price.Tax.ToString("0.00", System.Globalization.CultureInfo.InvariantCulture));
Writer.WriteElementString("LOWER_BOUND", price.Tax.ToString());
Writer.WriteElementString("LOWER_BOUND", price.LowerBound.ToString());
Writer.WriteEndElement(); // !PRODUCT_PRICE
}
Writer.WriteEndElement(); // !PRODUCT_PRICE_DETAILS
Expand Down

0 comments on commit fc7baa5

Please sign in to comment.