xpo for may

This commit is contained in:
omair saleh
2022-08-02 15:46:34 +08:00
parent e0d2632be1
commit b88bbc0eb7
@@ -65,7 +65,7 @@ class AutoPurchaseOrderFillLogic extends AbstractControllerLogic
public function logic(Request $request) : JsonResponse
{
$bookings = Booking::where(function($query){
return $query->whereMonth('created_at', 03)->orWhereMonth('created_at', 04);
return $query->whereMonth('created_at', 05)->whereYear('created_at', 2022);
})->whereDoesntHave('transactions', function($q){
$q->where('type', TransactionType::PURCHASE_ORDER);
$q->whereIn('status', [ApprovalStatus::PENDING_VERIFICATION, ApprovalStatus::APPROVED]);