#---------------------------------------------------------------
# ____                   _ _         ____  _
#|  _ \ ___  _   _  __ _| | |_ _   _/ ___|| |__   __ _ _ __ ___
#| |_) / _ \| | | |/ _` | | __| | | \___ \| '_ \ / _` | '__/ _ \
#|  _ < (_) | |_| | (_| | | |_| |_| |___) | | | | (_| | | |  __/
#|_| \_\___/ \__, |\__,_|_|\__|\__, |____/|_| |_|\__,_|_|  \___|
#            |___/             |___/
#
# Copyright (C) 2010 RoyaltyShare, Inc.   All Rights Reserved
#---------------------------------------------------------------
package RPS::Import::Universal::v42;

use strict;

use Date::Calc qw(Days_in_Month Decode_Month);

use lib '/app/tools/rps/lib';
use RPS::Import::ServiceMap;
use base 'RPS::Import::Universal::v37';

sub _fieldMap {
    {
        dateBegin     => 'G',
        countryCode   => 'H',
        productType   => 'E', # Carrier Type
        upc           => 'A', # Article Number
        albumName     => 'B',
    }
}

sub _unverifiedFieldMap {
    {
        salesChannel  => 'K',
        netUnits      => 'N',
        netRevenue    => 'V',
    }
}

sub _headerIdentifier { ( dateBegin => 'Period From / To' ) }

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