Hi,
The HikaSerial import hasn't been implement to import the pack association and the serial in the same time (in the same line).
So with the current version you can use:
pack_name,serial_data,product_code
"License Pack 2","00000001",""
"License Pack 2","","product2"
Or you can edit the file "administrator/components/com_hikaserial/helpers/import.php" and replace
if(!empty($productsAssociations['insert']) && count($productsAssociations['insert']) >= $this->perBatch) {
$this->productCounter = $this->processPackAssociation($productsAssociations['insert']);
}
$serial = array();
By
if(!empty($productsAssociations['insert']) && count($productsAssociations['insert']) >= $this->perBatch) {
$this->productCounter = $this->processPackAssociation($productsAssociations['insert']);
}
Regards,