package BookPub::Import::Importer::HBG::Version2;

use strict;

use base 'BookPub::Import::Importer::HBG::Version1';

sub _fieldMap {
    {
        rServiceName         => 'B',
        dateBegin            => 'D',
        rAuthor              => 'L',
        rTitle               => 'O',
        rIsbn10              => 'K',
        rIsbn13              => 'J',
        countryCode          => 'A',
        rUnits               => 'Q',
        rListPrice           => 'P',
        rRevenue             => 'R',
        rChannel             => 'I',
        rTransactionCategory => 'F',
    };
}

1;
