Overall stock report

  • Posts: 59
  • Thank you received: 1
11 years 7 months ago #141558

Is there a way with the current Hikashop to go to a page/report and view all the stock for all the products?
(aka another way to view stock without going into each product.)

Please Log in or Create an account to join the conversation.

  • Posts: 2334
  • Thank you received: 403
11 years 7 months ago #141576

Hi there,

Since our reports have been made to monitor sales, it is currently not possible.
However the product listing in the backend display the quantity for each product so it sounds like what you're looking for doesn't it? (Make sure you have the last version of Hikashop if you don't see the Quantity column)

Please Log in or Create an account to join the conversation.

  • Posts: 59
  • Thank you received: 1
11 years 7 months ago #141577

Hi.

We do have the latest verison that shows the column. However we're after a page we can print or have quick access too to view all products' stock.

Last edit: 11 years 7 months ago by boxchilli.

Please Log in or Create an account to join the conversation.

  • Posts: 84243
  • Thank you received: 13686
  • MODERATOR
11 years 7 months ago #141583

There is no need to use the reports system for that.
Simply go in the Products listing menu, change the "direct sub elements" dropdown on the right to "all sub elements" and you will get your listing of all the products with the quantity for each one.

Please Log in or Create an account to join the conversation.

  • Posts: 59
  • Thank you received: 1
11 years 7 months ago #141640

Thank you for the reply. However looking over it I can't see a way to show all products at once on a page it only shows between 5/10 per page.

Please Log in or Create an account to join the conversation.

  • Posts: 2334
  • Thank you received: 403
11 years 7 months ago #141658

You have a dropdown at the bottom of the page where you can choose the number of item displayed. It should do the trick.

Please Log in or Create an account to join the conversation.

  • Posts: 59
  • Thank you received: 1
11 years 7 months ago #141665

I've just checked and it's not there. Added a screenshot of what I see.

Attachments:

Please Log in or Create an account to join the conversation.

  • Posts: 84243
  • Thank you received: 13686
  • MODERATOR
11 years 7 months ago #141711

Yes, that's a bug caused by the template of Joomla 3. We'll have a patch for that in the next version of HikaShop to be released in a week or two.

Please Log in or Create an account to join the conversation.

  • Posts: 59
  • Thank you received: 1
11 years 7 months ago #141713

Is there anyway to have a patch for this? The website is being halted from going live due to this small thing.

Please Log in or Create an account to join the conversation.

  • Posts: 84243
  • Thank you received: 13686
  • MODERATOR
11 years 7 months ago #141720

Change the line:

$pagination = new JPagination($this->pageInfo->elements->total, $this->pageInfo->limit->start, $this->pageInfo->limit->value);
to:
if(HIKASHOP_J30) {
			$pagination = hikashop_get('helper.pagination', $this->pageInfo->elements->total, $this->pageInfo->limit->start, $this->pageInfo->limit->value);
		} else {
			jimport('joomla.html.pagination');
			$pagination = new JPagination($this->pageInfo->elements->total, $this->pageInfo->limit->start, $this->pageInfo->limit->value);
		}
in administrator/components/com_hikashop/helpers/helper.php

Please Log in or Create an account to join the conversation.

Time to create page: 0.085 seconds
Powered by Kunena Forum