fix payment due date days filter

This commit is contained in:
Omair Saleh
2022-10-30 20:38:36 +08:00
parent cb76e86c75
commit 7423588324
2 changed files with 2 additions and 2 deletions
@@ -53,7 +53,7 @@ class ListPackingListsLogic extends AbstractControllerLogic
$this->canListPackingLists->passes();
$query = $this->listsPackingLists->execute($this->listsPackingLists->deserializeFilters($request->input('filters')));
dd($query);
return $this->collectionResponse(PackingListResource::collection($query));
}
@@ -121,7 +121,7 @@
<div class="row tabsContainer tabContent hide" tab-name="pendingPayment">
<div class="col">
<payment-filter-component :endpoint="route('api.packing_list.list')" :data="data"></payment-filter-component>
<list-component section="pendingPaymentSection" :endpoint="route('api.packing_list.list')" :options="{has_invoice_status_in: [2], packing_list_ordered_by_invoice_date: true, order_by: null}">
<list-component section="pendingPaymentSection" :endpoint="route('api.packing_list.list')" :options="{has_invoice_status_in: [2], packing_list_ordered_by_invoice_date: true}">
<template slot="list" slot-scope="{data}">
<admin-payments-billing-component :data="data" invoice_status="Pending Payment" section="pendingPaymentSection" ></admin-payments-billing-component>
</template>