package RPS::Import::Koch::v8;

use strict;

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

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

use Data::Dumper;

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

sub _fieldMap {
    {
        # Header
        dateBegin        => 'A',

        # Data
        productType      => 'A',
        artistName       => 'C',
        clientProductID  => 'A',
        upc              => 'B',
        albumName        => 'C',
        sales            => 'D',
        salesRevenue     => 'G',
        returns          => 'E',
        returnsRevenue   => 'H',
        units            => 'F',
        totalRevenue     => 'K',
    }
}




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