package RPS::Import::MalcoRecords::v1;

use strict;

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

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

use Data::Dumper;

sub _headerIdentifier { ( artistName => 'Artist' ) }

sub _fieldMap {
    {
        countryCode     => 'I',
        dateBegin       => 'X',
        productType     => 'L',
        artistName      => 'F',
        clientProductID => 'D',
        upc             => 'G',
        albumName       => 'E',
        channel         => 'J',
        priceLevel      => 'K',
        wholesalePrice  => 'T',
        retailPrice     => 'S',
        units           => 'Y',
        totalRevenue    => 'U',
    };
}

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