YK
Asked
Hello,
1- We can have Actual stock status ?
2- Seach by product => To have list of checkout related to this product
Thank You
- MSAnswered
Hello,
You can view the quantity on the list items page. To get the individual warehouse details. click the item to open the model with each warehouse stock.
For the item search, you can add the following line to the scopeSearch method of
app/Models/Checkout.php
andapp/Models/Checkin.php
around line no 51 - 53->orWhereHas('items.item', fn ($q) => $q->where('name', 'like', "%{$s}%")->orWhere('code', 'like', "%{$s}%"))
Thank you
- Login to Reply