Hi,
In that case, you need to develop a joomla plugin of the group "hikashop" and implement in it the event onBeforeOrderNumberGenerate(&$order, &$order_number)
It's quite simple with PHP's rand function (
www.php.net/manual/en/function.rand.php
):
function onBeforeOrderNumberGenerate(&$order, &$order_number){
$order_number = rand(10000, 99999);
}
Note that this code doesn't check if an order already exists with the randomly selected number. If you want to add that check, it's possible. You'll need to run a MySQL query on the hikashop_order table.