package BookPub::Import::Importer::Perusall::Version4;

use strict;
use warnings;

use lib '/app/tools/bookpub/lib';

use base 'BookPub::Import::Importer::Perusall::Version3';

sub _fieldMap {
    {
        dateBegin              => 'B',
        rPurchaseType          => 'L',
        purchaseType           => 'L',
        rAuthor                => 'J',
        rTitle                 => 'I',
        rIsbn13                => 'H',
        rInstitution           => 'D',
        rState                 => 'F',
        countryCode            => 'G',
        rUnits                 => 'C',
        rListPrice             => 'P',
        rListPriceCurrency     => 'P',
        rPurchasePrice         => 'N',
        rPurchasePriceCurrency => 'N',
        rCOGS                  => 'X',
        rRevenue               => 'W',
        currencyCode           => 'P',
        rTaxAmount             => 'O',
        rDuration              => 'M',
        rComments              => 'Y',
        rChannel               => 'AD',
    };
}


1;
