package BookPub::Import::Importer::Chegg::Version5;

use strict;

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::Base';

sub _fieldMap {
    {
        rPurchaseType => 'F',
        rState        => 'U',
        rPostalCode   => 'V',
        dateBegin     => 'A',
        rIsbn13       => 'K',
        rTitle        => 'G',
        rAuthor       => 'J',
        rListPrice    => 'P',
        rRevenue      => 'R',
    };
}

sub currencyCode { 'USD' }
sub countryCode  { 'US' }

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