package RPS::Import::EMI::v2;

use strict;

use lib '/app/tools/common/lib';
use Common::Date;

use lib '/app/tools/rps/lib';
use base 'RPS::Import::EMI::Physical';

use Data::Dumper;

sub _headerIdentifier { ( upc => 'UPC' ) }

sub _fieldMap {
    {
        # Data
        labelName      => 'A',
        productType    => 'K',
        artistName     => 'C',
        upc            => 'D',
        albumName      => 'C',
        sales          => 'E',
        salesRevenue   => 'F',
        returns        => 'G',
        returnsRevenue => 'H',
        units          => 'I',
        totalRevenue   => 'J',
    };
}

sub _unverifiedFieldMap {
    {
        dateLabel => 'A',
        dateValue => 'B',
    };
}

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