30 lines
793 B
C#
30 lines
793 B
C#
|
|
using FrontOffice.Main.Utilities;
|
||
|
|
using Microsoft.AspNetCore.Components;
|
||
|
|
|
||
|
|
namespace FrontOffice.Main.Pages.Store;
|
||
|
|
|
||
|
|
public partial class OrderDetail : ComponentBase
|
||
|
|
{
|
||
|
|
[Inject] private OrderService OrderService { get; set; } = default!;
|
||
|
|
|
||
|
|
[Parameter] public long id { get; set; }
|
||
|
|
|
||
|
|
private Order? _order;
|
||
|
|
private bool _loading;
|
||
|
|
|
||
|
|
protected override async Task OnParametersSetAsync()
|
||
|
|
{
|
||
|
|
_loading = true;
|
||
|
|
_order = await OrderService.GetOrderAsync(id);
|
||
|
|
_loading = false;
|
||
|
|
}
|
||
|
|
|
||
|
|
private static string FormatPrice(long price) => string.Format("{0:N0} تومان", price);
|
||
|
|
private static string GetStatusText(OrderStatus status) => status switch
|
||
|
|
{
|
||
|
|
OrderStatus.Paid => "پرداختشده",
|
||
|
|
_ => "در انتظار",
|
||
|
|
};
|
||
|
|
}
|
||
|
|
|