package BookPub::Import::Importer::Numilog::Version1;

use strict;

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

sub _fieldMap {
    {
        rChannel               => 'B',
        currencyCode           => 'M',
        rFormat                => 'H',
        rIsbn13                => 'G',
        rTitle                 => 'C',
        rImprint               => 'A',
        rUnits                 => 'I',
        rListPrice             => 'W',
        rListPriceCurrency     => 'M',
        rPurchasePrice         => 'Q',
        rPurchasePriceCurrency => 'M',
        rRevenue               => 'N',
    };
}

sub _unverifiedFieldMap {
    {
        authorLastName  => 'D',
        authorFirstName => 'E',
        listPriceIncVAT => 'S',
    };
}

1;
