Topic: Inactive items

There is a bug in purchase order entry form & Direct Invoice in purchase module. You are able to see the inactive items and even place an order on that item.

Sales ordering is fine. It doesn't show inactive items.

Re: Inactive items

I can not reproduce this. Are you sure the supplier is inactive?

/Joe

Re: Inactive items

Joe

I don't understand your question. I am not talking about supplier. It's an issue with item drop down list. The select query is fetching all data. You need to exclude inactive items on this list.

Deven

Re: Inactive items

Ok, sorry I misunderstood. Will be fixed asap.

/Joe

Re: Inactive items

This has now been fixed. HG repository updated. In the meantime you can change line 401 in /purchasing/includes/ui/po_ui.inc

from:

        stock_items_list_cells(null, 'stock_id', null, false, true, true);
to:
        stock_items_list_cells(null, 'stock_id', null, false, true, false);

Joe

Re: Inactive items

Sorted

Thanks