package BookPub::Import::Importer::Chegg::Version11;

use strict;
use Data::Dumper;

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

use lib '/app/tools/bookpub/lib';
use BookPub::DB::Item::Sale;
use base 'BookPub::Import::Importer::Chegg::Version10';

sub _fieldMap {
    {
        rPurchaseType      => 'G',
        currencyCode       => 'S',
        countryCode        => 'X',
        rState             => 'V',
        rPostalCode        => 'W',
        dateBegin          => 'A',
        rIsbn10            => 'M',
        rIsbn13            => 'L',
        rTitle             => 'H',
        rAuthor            => 'K',
        rReturns           => 'R',
        rListPrice         => 'Q',
        rListPriceCurrency => 'Q',
        rTaxAmount         => 'P',
        rRevenue           => 'S',
    };
}

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