pcwa.core.scope('HRMS.SalClassPlan.report');

HRMS.SalClassPlan.report.SalClassPlanReport = function SalClassPlanReport(config){
	Ext.apply(config,{
		reportServer: 'jaspertest-3-1-0.co.pierce.wa.us:8080',
		reportPath: 'teamdelta/HRMS/SalaryClassPlan',
		imagePath: 'PCLWHRGBB.jpg',
		reportName: config.params.reportName,// 'SalClassPlan_report',
		dsn:		teamdelta.HRMS.Application.reportDsn,
		catalog:	'ramt',
		windowOptions: [
			'height=600',
			'width=800',
			'left=112',
			'top=25',
			'resizable',
			'toolbar=no',
			'status=no'
		]
	});

	HRMS.SalClassPlan.report.SalClassPlanReport.superclass.constructor.call(this, config);
};

Ext.extend(HRMS.SalClassPlan.report.SalClassPlanReport, pcwa.report.jasper.DbReportRequest, {});

