mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
Merge pull request #12855 from koelle25/fixes/last_component_checkout
Allow checkout of available components down to zero stock (fixes #12854)
This commit is contained in:
commit
b22cad9ced
|
@ -64,8 +64,8 @@ class ComponentCheckoutController extends Controller
|
|||
|
||||
$max_to_checkout = $component->numRemaining();
|
||||
|
||||
// Make sure there is at least one available to checkout
|
||||
if ($max_to_checkout <= $request->get('assigned_qty')) {
|
||||
// Make sure there are at least the requested number of components available to checkout
|
||||
if ($max_to_checkout < $request->get('assigned_qty')) {
|
||||
return redirect()->back()->withInput()->with('error', trans('admin/components/message.checkout.unavailable', ['remaining' => $max_to_checkout, 'requested' => $request->get('assigned_qty')]));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue