fix route name for xpo generator controller

This commit is contained in:
omair saleh
2022-01-12 15:36:48 +08:00
parent 559337313a
commit 2a270b264e
@@ -52,7 +52,7 @@ class AutoPurchaseOrderFillLogic extends AbstractControllerLogic
$q->where('type', TransactionType::PURCHASE_ORDER);
$q->whereIn('status', [ApprovalStatus::PENDING_VERIFICATION, ApprovalStatus::APPROVED]);
})->get();
dd($booking);
foreach ($booking as $key => $row) {
$amount = $row->fix_amount;
$other_transaction = Transaction::
@@ -105,9 +105,8 @@ dd($booking);
$request->request->add([
'products' => $products
]);
dd($row->id, $products);
// $create_transaction = $this->createPurchaseOrderTransactionLogic->logic($request, $row->id);
$create_transaction = $this->createPurchaseOrderTransactionLogic->logic($request, $row->id);
}
}