package RPS::Import::EMIUK::v1;

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        => 'K',
        dateEnd          => 'K',

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


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