feat(dashboard,types): added inbound shipping placeholder + shipping summary details (#9150)

what:

- shipping summary

<img width="1018" alt="Screenshot 2024-09-16 at 18 05 37" src="https://github.com/user-attachments/assets/d7e3d73c-bf11-42e5-90fb-03069437e96c">

- No Shipping options placeholder

<img width="781" alt="Screenshot 2024-09-16 at 18 06 11" src="https://github.com/user-attachments/assets/05ed682a-97cd-4e66-9af1-f1e77d3d47cb">
This commit is contained in:
Riqwan Thamir
2024-09-16 20:50:41 +00:00
committed by GitHub
parent d6ff526820
commit aa0928d437
11 changed files with 202 additions and 29 deletions
@@ -105,6 +105,7 @@ export interface BaseOrderShippingMethod {
original_subtotal: BigNumberValue
original_tax_total: BigNumberValue
total: BigNumberValue
detail?: BaseOrderShippingDetail
subtotal: BigNumberValue
tax_total: BigNumberValue
discount_total: BigNumberValue
@@ -176,6 +177,17 @@ export interface BaseOrderItemDetail {
updated_at: Date
}
export interface BaseOrderShippingDetail {
id: string
shipping_method_id: string
shipping_method: BaseOrderShippingMethod
claim_id: string
exchange_id: string
return_id: string
created_at: Date
updated_at: Date
}
export interface BaseOrderChange {
id: string
order_id: string