| مبلغ: |
- @Request.Amount.ToString("N0") ریال |
+ @Request.Amount.ToString("N0") تومان |
| روش برداشت: |
diff --git a/src/BackOffice/Pages/Commission/Dashboard.razor b/src/BackOffice/Pages/Commission/Dashboard.razor
index 9029044..207ed29 100644
--- a/src/BackOffice/Pages/Commission/Dashboard.razor
+++ b/src/BackOffice/Pages/Commission/Dashboard.razor
@@ -20,7 +20,7 @@
استخر هفتگی
- @(_poolData?.TotalPoolAmount.ToString("N0") ?? "0") ریال
+ @(_poolData?.TotalPoolAmount.ToString("N0") ?? "0") تومان
@_currentWeekDisplayText
@@ -40,7 +40,7 @@
ارزش هر تعادل
- @(_poolData?.ValuePerBalance.ToString("N0") ?? "0") ریال
+ @(_poolData?.ValuePerBalance.ToString("N0") ?? "0") تومان
قیمت واحد تعادل
@@ -111,7 +111,7 @@
@if (week.TotalPoolAmount > 0)
{
- @week.TotalPoolAmount.ToString("N0") ریال
+ @week.TotalPoolAmount.ToString("N0") تومان
}
@@ -181,7 +181,7 @@
| مجموع استخر: |
- @_poolData.TotalPoolAmount.ToString("N0") ریال |
+ @_poolData.TotalPoolAmount.ToString("N0") تومان |
| تعداد تعادل: |
@@ -189,7 +189,7 @@
| ارزش هر تعادل: |
- @_poolData.ValuePerBalance.ToString("N0") ریال |
+ @_poolData.ValuePerBalance.ToString("N0") تومان |
| وضعیت: |
diff --git a/src/BackOffice/Pages/Commission/UserPayouts.razor.cs b/src/BackOffice/Pages/Commission/UserPayouts.razor.cs
index 36d065c..f60dab9 100644
--- a/src/BackOffice/Pages/Commission/UserPayouts.razor.cs
+++ b/src/BackOffice/Pages/Commission/UserPayouts.razor.cs
@@ -119,7 +119,7 @@ public partial class UserPayouts
{
var confirmed = await DialogService.ShowMessageBox(
"تایید برداشت",
- $"آیا از تایید برداشت برای کاربر {payout.UserName} (مبلغ: {payout.TotalAmount:N0} ریال) مطمئن هستید؟",
+ $"آیا از تایید برداشت برای کاربر {payout.UserName} (مبلغ: {payout.TotalAmount:N0} تومان) مطمئن هستید؟",
yesText: "تایید", cancelText: "لغو");
if (confirmed == true)
diff --git a/src/BackOffice/Pages/Commission/WeeklyReports.razor b/src/BackOffice/Pages/Commission/WeeklyReports.razor
index c9d9b8c..b97d595 100644
--- a/src/BackOffice/Pages/Commission/WeeklyReports.razor
+++ b/src/BackOffice/Pages/Commission/WeeklyReports.razor
@@ -67,13 +67,13 @@
- @context.Item.TotalPoolAmount.ToString("N0") ریال
+ @context.Item.TotalPoolAmount.ToString("N0") تومان
- @context.Item.ValuePerBalance.ToString("N0") ریال
+ @context.Item.ValuePerBalance.ToString("N0") تومان
@@ -128,7 +128,7 @@
مجموع استخرها
@_totalPoolSum.ToString("N0")
- ریال
+ تومان
@@ -149,7 +149,7 @@
میانگین ارزش
@_averageValue.ToString("N0")
- ریال
+ تومان
diff --git a/src/BackOffice/Pages/Commission/WithdrawalReports.razor b/src/BackOffice/Pages/Commission/WithdrawalReports.razor
index d861704..7e9573b 100644
--- a/src/BackOffice/Pages/Commission/WithdrawalReports.razor
+++ b/src/BackOffice/Pages/Commission/WithdrawalReports.razor
@@ -107,19 +107,19 @@
مجموع مبلغ برداشتها
- @_summary.TotalAmount.ToString("N0") ریال
+ @_summary.TotalAmount.ToString("N0") تومان
مبلغ پرداخت شده
- @_summary.TotalPaid.ToString("N0") ریال
+ @_summary.TotalPaid.ToString("N0") تومان
مبلغ در انتظار
- @_summary.TotalPending.ToString("N0") ریال
+ @_summary.TotalPending.ToString("N0") تومان
@@ -189,17 +189,17 @@
- @context.Item.TotalAmount.ToString("N0") ریال
+ @context.Item.TotalAmount.ToString("N0") تومان
- @context.Item.PaidAmount.ToString("N0") ریال
+ @context.Item.PaidAmount.ToString("N0") تومان
- @context.Item.PendingAmount.ToString("N0") ریال
+ @context.Item.PendingAmount.ToString("N0") تومان
@@ -431,9 +431,9 @@
sb.AppendLine("خلاصه:");
sb.AppendLine($"تعداد کل درخواستها: {_summary.TotalRequests}");
- sb.AppendLine($"مبلغ کل برداشتها: {_summary.TotalAmount:N0} ریال");
- sb.AppendLine($"مبلغ پرداخت شده: {_summary.TotalPaid:N0} ریال");
- sb.AppendLine($"مبلغ در انتظار: {_summary.TotalPending:N0} ریال");
+ sb.AppendLine($"مبلغ کل برداشتها: {_summary.TotalAmount:N0} تومان");
+ sb.AppendLine($"مبلغ پرداخت شده: {_summary.TotalPaid:N0} تومان");
+ sb.AppendLine($"مبلغ در انتظار: {_summary.TotalPending:N0} تومان");
sb.AppendLine($"تعداد کاربران یکتا: {_summary.UniqueUsers}");
sb.AppendLine($"نرخ موفقیت: {_summary.SuccessRate:N2}%");
sb.AppendLine();
diff --git a/src/BackOffice/Pages/Commission/WithdrawalRequests.razor b/src/BackOffice/Pages/Commission/WithdrawalRequests.razor
index dc41c8d..953079a 100644
--- a/src/BackOffice/Pages/Commission/WithdrawalRequests.razor
+++ b/src/BackOffice/Pages/Commission/WithdrawalRequests.razor
@@ -69,7 +69,7 @@
- @context.Item.Amount.ToString("N0") ریال
+ @context.Item.Amount.ToString("N0") تومان
diff --git a/src/BackOffice/Pages/Commission/WithdrawalRequests.razor.cs b/src/BackOffice/Pages/Commission/WithdrawalRequests.razor.cs
index ec2cd65..c291684 100644
--- a/src/BackOffice/Pages/Commission/WithdrawalRequests.razor.cs
+++ b/src/BackOffice/Pages/Commission/WithdrawalRequests.razor.cs
@@ -163,7 +163,7 @@ public partial class WithdrawalRequests
{
var confirmed = await DialogService.ShowMessageBox(
"تایید درخواست",
- $"آیا از تایید درخواست برداشت {request.Amount:N0} ریال برای {request.UserName} مطمئن هستید؟",
+ $"آیا از تایید درخواست برداشت {request.Amount:N0} تومان برای {request.UserName} مطمئن هستید؟",
yesText: "تایید", cancelText: "لغو");
if (confirmed == true)
@@ -222,7 +222,7 @@ public partial class WithdrawalRequests
{
var confirmed = await DialogService.ShowMessageBox(
"پردازش پرداخت",
- $"آیا پرداخت {request.Amount:N0} ریال به {request.UserName} انجام شده است؟",
+ $"آیا پرداخت {request.Amount:N0} تومان به {request.UserName} انجام شده است؟",
yesText: "بله، پردازش شد", cancelText: "لغو");
if (confirmed == true)
diff --git a/src/BackOffice/Pages/Dashboard/DiscountShopWidget.razor b/src/BackOffice/Pages/Dashboard/DiscountShopWidget.razor
index b53a3ad..8d3fb5a 100644
--- a/src/BackOffice/Pages/Dashboard/DiscountShopWidget.razor
+++ b/src/BackOffice/Pages/Dashboard/DiscountShopWidget.razor
@@ -32,10 +32,10 @@
مجموع فروش (۷ روز)
- @_stats.TotalSalesLast7Days.ToString("N0") ریال
+ @_stats.TotalSalesLast7Days.ToString("N0") تومان
- امروز: @_stats.TodaySales.ToString("N0") ریال
+ امروز: @_stats.TodaySales.ToString("N0") تومان
@@ -43,7 +43,7 @@
میانگین مبلغ هر سفارش
- @_stats.AverageOrderAmount.ToString("N0") ریال
+ @_stats.AverageOrderAmount.ToString("N0") تومان
diff --git a/src/BackOffice/Pages/DiscountShop/Components/OrderDetailsDialog.razor b/src/BackOffice/Pages/DiscountShop/Components/OrderDetailsDialog.razor
index 999fefd..5bf7889 100644
--- a/src/BackOffice/Pages/DiscountShop/Components/OrderDetailsDialog.razor
+++ b/src/BackOffice/Pages/DiscountShop/Components/OrderDetailsDialog.razor
@@ -129,11 +129,11 @@
@context.Count
- @context.UnitPrice.ToString("N0") ریال
+ @context.UnitPrice.ToString("N0") تومان
@context.MaxDiscountPercent%
- @context.FinalPrice.ToString("N0") ریال
+ @context.FinalPrice.ToString("N0") تومان
@@ -148,14 +148,14 @@
مبلغ کل:
- @Order.TotalPrice.ToString("N0") ریال
+ @Order.TotalPrice.ToString("N0") تومان
از کیف پول تخفیف:
- @Order.DiscountBalanceUsed.ToString("N0") ریال
+ @Order.DiscountBalanceUsed.ToString("N0") تومان
@@ -165,7 +165,7 @@
- @Order.GatewayAmount.ToString("N0") ریال
+ @Order.GatewayAmount.ToString("N0") تومان
diff --git a/src/BackOffice/Pages/DiscountShop/Components/ProductFormDialog.razor b/src/BackOffice/Pages/DiscountShop/Components/ProductFormDialog.razor
index 73a5f71..8820fc8 100644
--- a/src/BackOffice/Pages/DiscountShop/Components/ProductFormDialog.razor
+++ b/src/BackOffice/Pages/DiscountShop/Components/ProductFormDialog.razor
@@ -70,7 +70,7 @@
Format="N0"
Immediate="true"
Disabled="_loading"
- Label="قیمت (ریال) *"
+ Label="قیمت (تومان) *"
Required="true"
Variant="Variant.Outlined"
Margin="Margin.Dense" />
diff --git a/src/BackOffice/Pages/DiscountShop/DiscountOrdersMainPage.razor b/src/BackOffice/Pages/DiscountShop/DiscountOrdersMainPage.razor
index 2f2f4e5..a431841 100644
--- a/src/BackOffice/Pages/DiscountShop/DiscountOrdersMainPage.razor
+++ b/src/BackOffice/Pages/DiscountShop/DiscountOrdersMainPage.razor
@@ -97,20 +97,20 @@
- @context.Item.TotalPrice.ToString("N0") ریال
+ @context.Item.TotalPrice.ToString("N0") تومان
- @context.Item.DiscountBalanceUsed.ToString("N0") ریال
+ @context.Item.DiscountBalanceUsed.ToString("N0") تومان
- @context.Item.GatewayAmount.ToString("N0") ریال
+ @context.Item.GatewayAmount.ToString("N0") تومان
diff --git a/src/BackOffice/Pages/DiscountShop/DiscountProductsMainPage.razor b/src/BackOffice/Pages/DiscountShop/DiscountProductsMainPage.razor
index 19a1b2a..f4e861c 100644
--- a/src/BackOffice/Pages/DiscountShop/DiscountProductsMainPage.razor
+++ b/src/BackOffice/Pages/DiscountShop/DiscountProductsMainPage.razor
@@ -116,7 +116,7 @@
- @context.Item.Price.ToString("N0") ریال
+ @context.Item.Price.ToString("N0") تومان
diff --git a/src/BackOffice/Pages/DiscountShop/SalesReports.razor b/src/BackOffice/Pages/DiscountShop/SalesReports.razor
index 4bc6083..aefabdd 100644
--- a/src/BackOffice/Pages/DiscountShop/SalesReports.razor
+++ b/src/BackOffice/Pages/DiscountShop/SalesReports.razor
@@ -113,19 +113,19 @@
مجموع فروش (مبلغ نهایی)
- @_totalSales.ToString("N0") ریال
+ @_totalSales.ToString("N0") تومان
مجموع تخفیف
- @_totalDiscount.ToString("N0") ریال
+ @_totalDiscount.ToString("N0") تومان
میانگین مبلغ سفارش
- @_averageOrder.ToString("N0") ریال
+ @_averageOrder.ToString("N0") تومان
@@ -242,12 +242,12 @@
- @context.Item.GatewayAmount.ToString("N0") ریال
+ @context.Item.GatewayAmount.ToString("N0") تومان
- @context.Item.DiscountBalanceUsed.ToString("N0") ریال
+ @context.Item.DiscountBalanceUsed.ToString("N0") تومان
@@ -566,9 +566,9 @@
sb.AppendLine("خلاصه:");
sb.AppendLine($"تعداد سفارشها: {_totalOrders}");
- sb.AppendLine($"مجموع فروش (مبلغ نهایی): {_totalSales:N0} ریال");
- sb.AppendLine($"مجموع تخفیف: {_totalDiscount:N0} ریال");
- sb.AppendLine($"میانگین مبلغ سفارش: {_averageOrder:N0} ریال");
+ sb.AppendLine($"مجموع فروش (مبلغ نهایی): {_totalSales:N0} تومان");
+ sb.AppendLine($"مجموع تخفیف: {_totalDiscount:N0} تومان");
+ sb.AppendLine($"میانگین مبلغ سفارش: {_averageOrder:N0} تومان");
sb.AppendLine();
sb.AppendLine("جزئیات سفارشها:");
diff --git a/src/BackOffice/Pages/Index.razor b/src/BackOffice/Pages/Index.razor
index 3bebf23..62e55fe 100644
--- a/src/BackOffice/Pages/Index.razor
+++ b/src/BackOffice/Pages/Index.razor
@@ -108,7 +108,7 @@
مبلغ کل استخر
- @(_currentPool?.TotalPoolAmount.ToString("N0") ?? "0") ریال
+ @(_currentPool?.TotalPoolAmount.ToString("N0") ?? "0") تومان
diff --git a/src/BackOffice/Pages/Network/BalancesReport.razor b/src/BackOffice/Pages/Network/BalancesReport.razor
index bf12373..562d9bb 100644
--- a/src/BackOffice/Pages/Network/BalancesReport.razor
+++ b/src/BackOffice/Pages/Network/BalancesReport.razor
@@ -129,7 +129,7 @@
- @context.Item.PoolContribution.ToString("N0") ریال
+ @context.Item.PoolContribution.ToString("N0") تومان
diff --git a/src/BackOffice/Pages/Network/UserNetworkInfo.razor b/src/BackOffice/Pages/Network/UserNetworkInfo.razor
index d02f3cc..6eefa83 100644
--- a/src/BackOffice/Pages/Network/UserNetworkInfo.razor
+++ b/src/BackOffice/Pages/Network/UserNetworkInfo.razor
@@ -254,7 +254,7 @@
کل کمیسیون کسب شده: |
- @_userInfo.TotalEarnedCommission.ToString("N0") ریال
+ @_userInfo.TotalEarnedCommission.ToString("N0") تومان
|
@@ -262,7 +262,7 @@
کمیسیون پرداخت شده: |
- @_userInfo.TotalPaidCommission.ToString("N0") ریال
+ @_userInfo.TotalPaidCommission.ToString("N0") تومان
|