package BookPub::Import::Importer::ScrollMotion::Version1;

use strict;

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

sub _isAgency { return 'Y'; }

my %fieldMap = (
    date      => [ 0, 0 ],
    isbn13    => 0,
    title     => 1,
    units     => 2,
    listPrice => 3,
    discount  => 4,
    revenue   => 5,
    currency  => 6,
    format    => 7,
);

sub _getFieldMap {
    return \%fieldMap;
}

1;
