~mortenoh/+junk/dhis2-detailed-import-export

« back to all changes in this revision

Viewing changes to local/in/dhis-web-dashboard/src/main/java/org/hisp/dhis/dashboard/ta/action/GenerateTabularAnalysisFormAction.java

  • Committer: larshelge at gmail
  • Date: 2009-03-03 16:46:36 UTC
  • Revision ID: larshelge@gmail.com-20090303164636-2sjlrquo7ib1gf7r
Initial check-in

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package org.hisp.dhis.dashboard.ta.action;
 
2
 
 
3
/*
 
4
 * Copyright (c) 2004-2007, University of Oslo
 
5
 * All rights reserved.
 
6
 *
 
7
 * Redistribution and use in source and binary forms, with or without
 
8
 * modification, are permitted provided that the following conditions are met:
 
9
 * * Redistributions of source code must retain the above copyright notice, this
 
10
 *   list of conditions and the following disclaimer.
 
11
 * * Redistributions in binary form must reproduce the above copyright notice,
 
12
 *   this list of conditions and the following disclaimer in the documentation
 
13
 *   and/or other materials provided with the distribution.
 
14
 * * Neither the name of the HISP project nor the names of its contributors may
 
15
 *   be used to endorse or promote products derived from this software without
 
16
 *   specific prior written permission.
 
17
 *
 
18
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
 
19
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 
20
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 
21
 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
 
22
 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 
23
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 
24
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
 
25
 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
26
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 
27
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
28
 */
 
29
 
 
30
import java.text.SimpleDateFormat;
 
31
import java.util.ArrayList;
 
32
import java.util.Collection;
 
33
import java.util.Collections;
 
34
import java.util.List;
 
35
 
 
36
import org.hisp.dhis.dashboard.util.PeriodStartDateComparator;
 
37
import org.hisp.dhis.dataelement.DataElement;
 
38
import org.hisp.dhis.dataelement.DataElementGroup;
 
39
import org.hisp.dhis.dataelement.DataElementService;
 
40
import org.hisp.dhis.organisationunit.OrganisationUnit;
 
41
import org.hisp.dhis.organisationunit.OrganisationUnitService;
 
42
import org.hisp.dhis.period.MonthlyPeriodType;
 
43
import org.hisp.dhis.period.Period;
 
44
import org.hisp.dhis.period.PeriodStore;
 
45
 
 
46
import com.opensymphony.xwork.Action;
 
47
 
 
48
public class GenerateTabularAnalysisFormAction
 
49
    implements Action
 
50
{
 
51
 
 
52
    /* Dependencies */
 
53
    private OrganisationUnitService organisationUnitService;
 
54
 
 
55
    public void setOrganisationUnitService( OrganisationUnitService organisationUnitService )
 
56
    {
 
57
        this.organisationUnitService = organisationUnitService;
 
58
    }
 
59
 
 
60
    private PeriodStore periodStore;
 
61
 
 
62
    public void setPeriodStore( PeriodStore periodStore )
 
63
    {
 
64
        this.periodStore = periodStore;
 
65
    }
 
66
 
 
67
    private DataElementService dataElementService;
 
68
 
 
69
    public void setDataElementService( DataElementService dataElementService )
 
70
    {
 
71
        this.dataElementService = dataElementService;
 
72
    }
 
73
 
 
74
    /* Output Parameters */
 
75
    private Collection<OrganisationUnit> orgUnitList;
 
76
 
 
77
    public Collection<OrganisationUnit> getOrgUnitList()
 
78
    {
 
79
        return orgUnitList;
 
80
    }
 
81
 
 
82
    private Collection<DataElement> dataElements;
 
83
 
 
84
    public Collection<DataElement> getDataElements()
 
85
    {
 
86
        return dataElements;
 
87
    }
 
88
 
 
89
    private Collection<DataElementGroup> dataElementGroups;
 
90
 
 
91
    public Collection<DataElementGroup> getDataElementGroups()
 
92
    {
 
93
        return dataElementGroups;
 
94
    }
 
95
 
 
96
    private List<Period> monthlyPeriods;
 
97
 
 
98
    public List<Period> getMonthlyPeriods()
 
99
    {
 
100
        return monthlyPeriods;
 
101
    }
 
102
 
 
103
    private SimpleDateFormat simpleDateFormat;
 
104
 
 
105
    public SimpleDateFormat getSimpleDateFormat()
 
106
    {
 
107
        return simpleDateFormat;
 
108
    }
 
109
 
 
110
    public String execute()
 
111
        throws Exception
 
112
    {
 
113
        /* OrganisationUnit */
 
114
        orgUnitList = organisationUnitService.getAllOrganisationUnits();
 
115
 
 
116
        /* DataElements and Groups */
 
117
        dataElements = dataElementService.getAllDataElements();
 
118
        dataElementGroups = dataElementService.getAllDataElementGroups();
 
119
 
 
120
        /* Monthly Periods */
 
121
        monthlyPeriods = new ArrayList<Period>( periodStore.getPeriodsByPeriodType( new MonthlyPeriodType() ) );
 
122
        Collections.sort( monthlyPeriods, new PeriodStartDateComparator() );
 
123
        simpleDateFormat = new SimpleDateFormat( "yyyy-MM-dd" );
 
124
 
 
125
        return SUCCESS;
 
126
    }
 
127
}