package RPS::Import::PIAS::Physical::v1;

use strict;

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

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

use Data::Dumper;

sub _fieldMap {
    {
        # Data
        countryCode      => 'E',
        artistName       => 'D',
        serviceProductID => 'B',
        albumName        => 'C',
        wholesalePrice   => 'J',
        sales            => 'H',
        salesRevenue     => 'K',
        returns          => 'I',
        totalRevenue     => 'S',
    }
}

sub _unverifiedFieldMap {
    {
        # Header
        headerLabel            => 'A',
        headerValue            => 'D',
    }
}

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