1 | /* LoadConfigBedsEvent.as */
|
---|
2 |
|
---|
3 | package gov.va.med.edp.control.reports
|
---|
4 | {
|
---|
5 | import com.adobe.cairngorm.control.CairngormEvent;
|
---|
6 |
|
---|
7 | import flash.events.Event;
|
---|
8 |
|
---|
9 | import gov.va.med.edp.vo.reports.ReportParamsVO;
|
---|
10 |
|
---|
11 | public class ReportEvent extends CairngormEvent
|
---|
12 | {
|
---|
13 | public static const EVENT_ACTIVITY_REPORT:String = "Activity";
|
---|
14 | public static const EVENT_DELAY_REPORT:String = "_Delay";
|
---|
15 | public static const EVENT_SUMMARY_REPORT:String = "Summary";
|
---|
16 | public static const EVENT_MISSED_OP_REPORT:String = "MissedOp";
|
---|
17 | public static const EVENT_ACUITY_REPORT:String = "Acuity";
|
---|
18 | public static const EVENT_SHIFT_REPORT:String = "Shift";
|
---|
19 | public static const EVENT_PROVIDER_REPORT:String = "Provider";
|
---|
20 | public static const EVENT_EXPOSURE_REPORT:String = "Exposure";
|
---|
21 | public static const EVENT_PATIENT_INTAKE_REPORT:String = "Intake";
|
---|
22 | public static const EVENT_PATIENT_XREF_REPORT:String = "Patient";
|
---|
23 | public static const EVENT_VA_ADMISSIONS_REPORT:String = "Admissions";
|
---|
24 | public static const EVENT_BVAC_REPORT:String = "Bvac";
|
---|
25 | public static const EVENT_ORDERS_BY_ACUITY_REPORT:String = "Orders";
|
---|
26 | public static const EVENT_NONE:String = "";
|
---|
27 |
|
---|
28 | public var reportParams: ReportParamsVO;
|
---|
29 |
|
---|
30 | public function ReportEvent(type:String, bubbles:Boolean=true, cancelable:Boolean=false)
|
---|
31 | {
|
---|
32 | super(type, bubbles, cancelable);
|
---|
33 | }
|
---|
34 |
|
---|
35 | override public function clone():Event
|
---|
36 | {
|
---|
37 | return new ReportEvent(type);
|
---|
38 | }
|
---|
39 | }
|
---|
40 | }
|
---|