package RPS::Import::EMIUK::v2;

use strict;

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

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

use Data::Dumper;

sub _fieldMap {
    {
        # Header
        dateBegin => 'J',
        dateEnd   => 'J',

        # Data
        countryCode      => 'F',
        productType      => 'C',
        artistName       => 'A',
        serviceProductID => 'E',
        upc              => 'D',
        albumName        => 'B',
        sales            => 'G',
        salesRevenue     => 'J',
        returns          => 'H',
        returnsRevenue   => 'K',
        units            => 'I',
        totalRevenue     => 'O',
    };
}

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