Jump to content

Сортировка в комбинациях


Recommended Posts

Есть товар, в нем комбинации, можно эти комбинации как-то отсортировать по наличию? Чтобы те элементы комбинаций, остаток которых ноль, показывались внизу списка?

Link to comment
Share on other sites

usort($combinations, function($a, $ {
    return $b['quantity'] - $a['quantity'];
});

добавить в ProductController.php перед

$this->context->smarty->assign(array(
				'groups' => $groups,
				'colors' => (count($colors)) ? $colors : false,
				'combinations' => $combinations,
				'combinationImages' => $combination_images
			));

примерно 540 строка

  • Like 1
Link to comment
Share on other sites

  • 6 months later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...