package RPS::Import::VidZoneDigital::v6;

use strict;
use Data::Dumper;

use lib '/app/tools/common/lib';
use Common::Util qw(normalize_date);
use Common::Consts;
use Common::Country;

use lib '/app/tools/rps/lib';
use base 'RPS::Import::VidZoneDigital::v5';

sub _fieldMap {
    {
        # header
        currencyCode => 'Q',

        # detail
        labelName   => 'G',
        dateBegin   => 'M',
        serviceID   => 'I',
        countryCode => 'H',
        productType => 'L',
        upc         => 'A',
        albumName   => 'F',
        isrc        => 'B',
        trackName   => 'D',
        units       => 'N',
        price       => 'Q',
    };
}

# Note: The artist source column depends on whether we're processing an album or
# track sale.  See the parent class for more information.
#

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