package RPS::Import::RealNet::v1;

use strict;

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

use lib '/app/tools/rps/lib';
use base 'RPS::Import::RealNet::Digital';

use Data::Dumper;

sub _fieldMap {
    {
        # Header
        countryCode      => 'G',
        dateBegin        => 'D',
        dateEnd          => 'E',
        currencyCode     => 'K',

        # Data
        type             => 'C',
        serviceProductID => 'I',
        clientProductID  => 'H',
        artistName       => 'J',
        upc              => 'E',
        albumName        => 'K',
        isrc             => 'F',
        trackName        => 'K',
        units            => 'A',
        price            => 'O',
    }
}


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