package BookPub::Import::Importer::Google::Version17;

use strict;
use Data::Dumper;

use lib '/app/tools/common/lib';
use Common::Assert;

use lib '/app/tools/bookpub/lib';
use base 'BookPub::Import::Importer::Google::Version15';

sub _fieldMap {
    {
        isPreOrder         => 'E',
        currencyCode       => 'R',
        countryCode        => 'O',
        dateBegin          => 'B',
        rIsbn13            => 'I',
        rTitle             => 'K',
        rAuthor            => 'L',
        rImprint           => 'J',
        rUnits             => 'G',
        rSales             => 'D',
        rReturns           => 'D',
        rListPrice         => 'N',
        rListPriceCurrency => 'M',
        rDiscount          => 'P',
        rRevenue           => 'S',
    };
}

sub _unverifiedFieldMap {
    {
        eIsbn               => 'H',
        priceConversionRate => 'T',
    };
}

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