class OrderJSONController extends Controller

Class OrderJSONController defines API routes for order

Methods

JsonResponse
getAllOrdersJQGridAction(ArrayCollection $orderListJSON)

API route for loading all orders

JsonResponse
getAllAbandonedCartsAction(ArrayCollection $abandonedCartsListJSON)

API route for loading abandoned orders

JsonResponse
getAllOrdersTransactionsJQGridAction(ArrayCollection $allOrdersTransactions)

API route for loading and rendering orders transactions

JsonResponse
getAllOrdersTransactionsForUserJQGridAction(ArrayCollection $allOrdersAmountByPayment)

API route for loading and rendering orders transactions for specific user

JsonResponse
getOrdersSummaryAction(ArrayCollection $allOrdersSummary)

API route for loading orders summary for specific user

JsonResponse
deleteSlideAction(ArrayCollection $orderDeleteJSON)

API route for deleting orders

Details

at line 41
JsonResponse getAllOrdersJQGridAction(ArrayCollection $orderListJSON)

API route for loading all orders

Parameters

ArrayCollection $orderListJSON

Return Value

JsonResponse

See also

OrderListJSONConverter

at line 56
JsonResponse getAllAbandonedCartsAction(ArrayCollection $abandonedCartsListJSON)

API route for loading abandoned orders

Parameters

ArrayCollection $abandonedCartsListJSON ArrayCollection $abandonedCartsListJSON

Return Value

JsonResponse

See also

AbandonedCartsListJSONConverter

at line 72
JsonResponse getAllOrdersTransactionsJQGridAction(ArrayCollection $allOrdersTransactions)

API route for loading and rendering orders transactions

Parameters

ArrayCollection $allOrdersTransactions

Return Value

JsonResponse

See also

AllOrdersTransactionsConverter

at line 94
JsonResponse getAllOrdersTransactionsForUserJQGridAction(ArrayCollection $allOrdersAmountByPayment)

API route for loading and rendering orders transactions for specific user

Parameters

ArrayCollection $allOrdersAmountByPayment

Return Value

JsonResponse

See also

AllOrdersAmountByPaymentConverter

at line 115
JsonResponse getOrdersSummaryAction(ArrayCollection $allOrdersSummary)

API route for loading orders summary for specific user

Parameters

ArrayCollection $allOrdersSummary

Return Value

JsonResponse

See also

AllOrdersSummaryConverter

at line 130
JsonResponse deleteSlideAction(ArrayCollection $orderDeleteJSON)

API route for deleting orders

Parameters

ArrayCollection $orderDeleteJSON

Return Value

JsonResponse

See also

OrderDeleteJSONConverter