fix: revert Price/10 — DB stores Toman, display directly
Build and Deploy to Kubernetes / build-and-deploy (push) Failing after 2m37s

Previous fix incorrectly divided by 10 assuming DB was Rial.
DB values are in Toman, so FormattedPrice shows Price directly.
This commit is contained in:
masoodafar-web
2026-02-27 21:02:54 +03:30
parent 3c1a8ffd53
commit 71b7e40994
@@ -20,8 +20,8 @@ public record PackageDto(
bool SupportsDayaPurchase = false,
bool SupportsDirectPurchase = false)
{
/// <summary>قیمت به تومان — مقدار Price از سرور به ریال است</summary>
public string FormattedPrice => string.Format("{0:N0} تومان", Price / 10);
/// <summary>قیمت فرمت‌شده به تومان</summary>
public string FormattedPrice => string.Format("{0:N0} تومان", Price);
}
/// <summary>