category default limit

This commit is contained in:
merdan 2022-03-11 14:54:32 +05:00
parent 9997c6e99e
commit 1a8de700a0
1 changed files with 2 additions and 2 deletions

View File

@ -41,8 +41,8 @@ class OrderResource extends JsonResource
'channel_currency_code' => $this->channel_currency_code, 'channel_currency_code' => $this->channel_currency_code,
'order_currency_code' => $this->order_currency_code, 'order_currency_code' => $this->order_currency_code,
'grand_total' => (double) $this->grand_total, 'grand_total' => (double) $this->grand_total,
'formatted_grand_total' => core()->formatPrice($this->base_grand_total, $this->order_currency_code), 'formatted_grand_total' => core()->formatPrice($this->base_grand_total, $this->order_currency_code),
'total_weight' => $this->items->sum('total_weight'),
'grand_total_invoiced' => (double) $this->grand_total_invoiced, 'grand_total_invoiced' => (double) $this->grand_total_invoiced,
'formatted_grand_total_invoiced' => core()->formatPrice($this->base_grand_total_invoiced, $this->order_currency_code), 'formatted_grand_total_invoiced' => core()->formatPrice($this->base_grand_total_invoiced, $this->order_currency_code),