#------------------------------------------------------------
# Copyright (C) 2006 RoyaltyShare, Inc.   All Rights Reserved
# $Id$
#------------------------------------------------------------
package RPS::Report::Command::ProductsWithoutPrices;
use strict;
use warnings;


use lib '/app/tools/rps/lib';
use RPS::Report::ProductsWithoutPrices;
use RPS::Report::Command::BaseReport;

use base 'RPS::Report::Command::BaseReport';

sub cmd  { return 'products_no_prices'; }
sub area { return 'report'; }

sub _getReport
{
    my ($self, $page) = @_;
    return RPS::Report::ProductsWithoutPrices->new(page => $page);
}


sub _getFilenamePrefix
{
    my ($self) = @_;
    return 'No_Prod_Price';
}

1;

