package BookPub::Import::Importer::OpenRoadMedia::v6;

use strict;
use warnings;

use Date::Calc qw(Days_in_Month);

use lib '/app/tools/bookpub/lib';
use parent 'BookPub::Import::Importer::OpenRoadMedia::v4';

sub _fieldMap {
    {
        rAuthor    => 'E',
        rTitle     => 'D',
        rIsbn13    => 'C',
        rImprint   => 'B',
        rUnits     => 'H',
        rRevenue   => 'L',
        rComments  => 'G',
    };
}

sub _headerIdentifier { rTitle => 'Title' }


1;