package RPS::Import::Orchard::v32;

use strict;
use warnings;

use lib '/app/tools/rps/lib';

use parent qw/RPS::Import::Orchard::v30/;

sub _fieldMapExtended {
    {
        mixed => {
            option1 => {
                labelName        => 'H',
                serviceID        => 'C',
                countryCode      => 'D',
                dateBegin        => 'A',
                dateEnd          => 'A',
                productType      => 'P',
                formatType       => 'O',
                serviceProductID => 'F',
                clientProductID  => 'G',
                artistName       => 'I',
                upc              => 'F',
                albumName        => 'J',
                isrc             => 'L',
                trackNum         => 'N',
                trackName        => 'K',
                units            => 'T',
                currencyCode     => 'AB',
                wholesalePrice   => 'R',
                totalRevenue     => 'AA',
                price            => 'AA',
                mediaType        => 'Q',
                grossRevenue     => 'U',
            },
        }
    }
}

1;
