Specify created_by in the API call as well

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe 2024-12-03 21:29:49 +00:00 committed by Brady Wetherington
parent bd38d64e66
commit bc8719e336
2 changed files with 6 additions and 2 deletions

View file

@ -87,6 +87,7 @@ class AccessoryCheckoutController extends Controller
$accessory_checkout->created_by = auth()->id();
$accessory_checkout->save();
}
event(new CheckoutableCheckedOut($accessory, $target, auth()->user(), $request->input('note')));
// Set this as user since we only allow checkout to user for this item type

View file

@ -279,14 +279,17 @@ class AccessoriesController extends Controller
$accessory->checkout_qty = $request->input('checkout_qty', 1);
for ($i = 0; $i < $accessory->checkout_qty; $i++) {
AccessoryCheckout::create([
$accessory_checkout = new AccessoryCheckout([
'accessory_id' => $accessory->id,
'created_at' => Carbon::now(),
'created_by' => auth()->id(),
'assigned_to' => $target->id,
'assigned_type' => $target::class,
'note' => $request->input('note'),
]);
$accessory_checkout->created_by = auth()->id();
$accessory_checkout->save();
}
// Set this value to be able to pass the qty through to the event