package RPS::Import::INGrooves::v14;

use strict;

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

use lib '/app/tools/rps/lib';
use base 'RPS::Import::INGrooves::v13';

use Data::Dumper;

sub _headerIdentifier { ( upc => 'UPC/EAN' ) }

# Same as v13, but price is in column S instead of T
#
sub _fieldMap {
    {
        serviceID        => 'B',
        labelName        => 'M',
        countryCode      => 'K',
        dateBegin        => 'A',
        productType      => 'P', # PRODUCT TYPE
        formatType       => 'O', # ASSET TYPE
        mediaType        => 'N', # SALES TYPE
        artistName       => 'C',
        serviceProductID => 'J', # CATALOG
        upc              => 'E',
        albumName        => 'D',
        trackName        => 'F',
        isrc             => 'H',
        units            => 'Q',
        price            => 'S',
    }
}

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