Need Stock Quantity Availability Field For Add Products In Orders

Hi,

I need some information on adding the Stock Quantity Availability in the Add Orders - Add Products screen? Here is a screenshot showing only how much quantity to add but does not actually show the stock availability unless you try to add it to the order. I need a way to have it show on the actual Add Products screen in the Orders admin section.

This would be very helpful just in case a customer calls in to place order and the stock quantity would show instead of actually finding that information out when the quantity is selected.

Thank you.

Screen Shot 2016-03-29 at 2.15.44 PM.png

That WOULD be helpful!

I'm bouncing between two browsers looking at inventory in one, and creating the order in another.

design/backend/templates/views/products/components/products_list.tpl

replace:

{$product.product nofilter}

with

{$product.product nofilter} ({$product.amount} {__('in_stock')})

Thank you eComLabs! That is a huge help.

Thank you eComLabs! That is a huge help.

You are welcome!

Thank you.

Also thank you eComLabs!

Works fine for "simple" stock, but what about products with different stock for option combinations?

For easy implementation, it would be ok to show stock amount in drop-down list, for each option element (near option text).

Any suggestion?

Also thank you eComLabs!

Works fine for "simple" stock, but what about products with different stock for option combinations?

For easy implementation, it would be ok to show stock amount in drop-down list, for each option element (near option text).

Any suggestion?

Unfortunately more complex changes with additional requests to database are required in this case. If you are interested in this modification, contact us to get a free quote

design/backend/templates/views/products/components/products_list.tpl

replace:

{$product.product nofilter}

with

{$product.product nofilter} ({$product.amount} {__('in_stock')})

Hi eComLabs ,

can work also on 4.11.5 ?

thanks

It should work. Please try and let us know the result

It should work. Please try and let us know the result

Unfortunately on ver. 4.11.5 design/backend/templates/views/products/components/products_list.tpl

are nothing similar with {$product.product nofilter} to be replaced

http://prntscr.com/vm0dd9

Ok. Just try to replace (2 lines)

{$product.product nofilter}
with

{$product.product nofilter} ({$product.amount} {__(‘in_stock’)})

Ok. Just try to replace (2 lines)

{$product.product nofilter}
with

{$product.product nofilter} ({$product.amount} {__(‘in_stock’)})

Thanks!

Will appear also in "fast search" area ?

http://prntscr.com/vmbe5k

I am afraid, no

I am afraid, no

with similar small modification it is not possible for stock info to be visible also on "fast search area" ? will be easier

Thanks

with similar small modification it is not possible for stock info to be visible also on "fast search area" ? will be easier

Thanks

app/controllers/backend/products.php

try to replace

'text' => $products_list['product'],

with

'text' => $products_list['product'] . (" " . $product['amount'] . " " .  __('in_stock')),

(!) Not tested

app/controllers/backend/products.php

try to replace

'text' => $products_list['product'],

with

'text' => $products_list['product'] . (" " . $product['amount'] . " " .  __('in_stock')),

(!) Not tested

Thank you !

I did not find such a text replaceable on app/controllers/backend/products.php

What version do you use?

What version do you use?

4.11.5

4.11.5

Here is screenshot from 4.11.5

https://prnt.sc/voud1x