package BookPub::Import::Importer::OverDrive::Version8;

use strict;

use lib '/app/tools/bookpub/lib';
use base 'BookPub::Import::Importer::BISG::Version4';

sub _fieldMap {
    {
        # Detail
        rPriceType         => 'AM',
        currencyCode       => 'H',
        countryCode        => 'AK',
        dateBegin          => 'N',
        rProductType       => 'AC',
        rIsbn13            => 'T',
        rTitle             => 'W',
        rAuthor            => 'X',
        rImprint           => 'AB',
        rSales             => 'AE',
        rReturns           => 'AF',
        rListPrice         => 'AL',
        rListPriceCurrency => 'AN',
        rPurchasePrice     => 'BP',
        rDiscount          => 'AO',
        rRevenue           => 'BB',
    };
}

###
1;    # Play nicely.
###
