#------------------------------------------------------------
# Copyright (C) 2006 RoyaltyShare, Inc.   All Rights Reserved
# $Id$
#------------------------------------------------------------
package RPS::Price::Price;

use strict;
use warnings;

use lib '/app/tools/rps/lib';
use RPS::DB::Item::Price;
use RPS::DB::Item::ProductPrice;
use RPS::RoyaltyRun::RoyaltyRunStatusList;

use base 'RPS::Price::Price';

sub _init
{
	my ($self, %args) = @_;

	$self->{RoyaltyRunStatus} = new RPS::RoyaltyRun::RoyaltyRunStatusList( ukMechanical => 1, artist => 1 );

	return $self->SUPER::_init(%args);
}


###
1;#
###
