package BookPub::Import::Importer::Kobo::Version38;

use strict;

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

use base 'BookPub::Import::Importer::Kobo::Version37';

sub _fieldMap {
    {
        dateBegin                => 'A',
        rProductType             => 'G',
        rAuthor                  => 'N',
        rTitle                   => 'O',
        rIsbn13                  => 'M',
        rImprint                 => 'L',
        rState                   => 'C',
        rPostalCode              => 'F',
        countryCode              => 'B',
        rUnits                   => 'H',
        rAdjustments             => 'Z',
        rListPrice               => 'Q',
        rListPriceCurrency       => 'T',
        rPurchasePrice           => 'W',
        rPurchasePriceCurrency   => 'Y',
        rCOGS                    => 'R',
        rRevenue                 => 'AA',
        currencyCode             => 'AB',
        rTaxAmount               => 'AC',
        rPromoCode               => 'J',
        rComments                => 'I',
        rNativeListPrice         => 'Q',
        rNativeListPriceCurrency => 'T',
    };
}

sub _unverifiedFieldMap {
    {
        nativeLPCurrency => 'T',
        currencyConv     => 'U',
    };
}

1;
