{{ toastMessage }}!
Order #{{ order.OrderNo }}
Image | Product | Size | Stock | Quantity | Unit Price | Total |
---|---|---|---|---|---|---|
|
{{ product.ProductName.length > 32 ? (product.ProductName | limitTo:32) + '...' : product.ProductName }}
Code: {{ product.ProductCode }} |
{{ product.SizeName }} ({{ product.SizeInCm }} cm) ({{ product.SizeInAge }}) | {{ product.ProductTotalStock }} | {{ product.Quantity }} | ৳{{ product.UnitPrice }} | ৳{{ product.ItemTotalAmount }} |
Customer Information
User ID: {{ order.UserId }}
Mobile: {{ order.CustomerMobile }}
Full Name: {{ order.CustomerName }}
District: {{ order.DistrictName || 'N/A' }}
Upazila: {{ order.UpazilaName || 'N/A' }}
Address: {{ order.CustomerAddress || 'N/A' }}
Previous Orders: {{ order.PreviousOrderCount }}
Order Information
Order ID: {{ order.OrderId }}
Date: {{ order.TransactionDate | date:'yyyy-MM-dd hh:mm:ss a' }}
Payment Mode: {{ order.PaymentMode }}
Total Amount: ৳{{ order.TotalAmount }}
Total Discount: ৳{{ order.TotalDiscount }}
Delivery Fee: ৳{{ order.DeliveryFee }}
Total Payable: ৳{{ order.TotalPayable }}
Received Amount: ৳{{ order.ReceivedAmount }}
Order Status
Approved: {{ order.IsApproved ? 'Yes' : 'No' }} on {{ order.ApprovedOn | date:'yyyy-MM-dd hh:mm:ss a' }}
Courier: {{ order.IsHandedToCourier ? 'Yes' : 'No' }} on {{ order.HandedToCourierOn | date:'yyyy-MM-dd hh:mm:ss a' }}
Delivered: {{ order.IsDelivered ? 'Yes' : 'No' }} on {{ order.DeliveredOn | date:'yyyy-MM-dd hh:mm:ss a' }}
Returned: {{ order.IsReturned ? 'Yes' : 'No' }} on {{ order.ReturnOn | date:'yyyy-MM-dd hh:mm:ss a' }} (Reason: {{ order.ReturnReson || 'N/A' }})
Canceled: {{ order.IsCanceled ? 'Yes' : 'No' }} on {{ order.CanceledOn | date:'yyyy-MM-dd hh:mm:ss a' }} (Reason: {{ order.CancelReson || 'N/A' }})