~dhis2-devs-core/dhis2/datamart

« back to all changes in this revision

Viewing changes to local/vn/dhis-web-spreadsheet-reporting/src/main/java/org/hisp/dhis/reportsheet/organisationunit/action/ShowAddOrganisationUnitFormAction.java

  • Committer: Hieu
  • Date: 2012-08-21 08:32:18 UTC
  • Revision ID: hieu.hispvietnam@gmail.com-20120821083218-8xxonsih0i9qwo5g
local vn - Implemented a new GUI for adding multiple of organisation unit based on the org-unit-prototypes

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package org.hisp.dhis.reportsheet.organisationunit.action;
 
2
 
 
3
/*
 
4
 * Copyright (c) 2004-2011, 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 com.opensymphony.xwork2.Action;
 
31
import org.hisp.dhis.attribute.Attribute;
 
32
import org.hisp.dhis.attribute.AttributeService;
 
33
import org.hisp.dhis.common.comparator.IdentifiableObjectNameComparator;
 
34
import org.hisp.dhis.dataset.DataSet;
 
35
import org.hisp.dhis.dataset.DataSetService;
 
36
import org.hisp.dhis.organisationunit.OrganisationUnitGroupService;
 
37
import org.hisp.dhis.organisationunit.OrganisationUnitGroupSet;
 
38
import org.hisp.dhis.period.Cal;
 
39
import org.springframework.beans.factory.annotation.Autowired;
 
40
 
 
41
import java.util.ArrayList;
 
42
import java.util.Collections;
 
43
import java.util.Date;
 
44
import java.util.List;
 
45
 
 
46
/**
 
47
 * @author Dang Duy Hieu
 
48
 * @version $Id$
 
49
 */
 
50
public class ShowAddOrganisationUnitFormAction
 
51
    implements Action
 
52
{
 
53
    // -------------------------------------------------------------------------
 
54
    // Dependencies
 
55
    // -------------------------------------------------------------------------
 
56
 
 
57
    @Autowired
 
58
    private DataSetService dataSetService;
 
59
 
 
60
    @Autowired
 
61
    private OrganisationUnitGroupService organisationUnitGroupService;
 
62
 
 
63
    @Autowired
 
64
    private AttributeService attributeService;
 
65
 
 
66
    // -------------------------------------------------------------------------
 
67
    // Input & Output
 
68
    // -------------------------------------------------------------------------
 
69
 
 
70
    private Date defaultDate;
 
71
 
 
72
    public Date getDefaultDate()
 
73
    {
 
74
        return defaultDate;
 
75
    }
 
76
 
 
77
    private List<DataSet> dataSets;
 
78
 
 
79
    public List<DataSet> getDataSets()
 
80
    {
 
81
        return dataSets;
 
82
    }
 
83
 
 
84
    private List<OrganisationUnitGroupSet> groupSets;
 
85
 
 
86
    public List<OrganisationUnitGroupSet> getGroupSets()
 
87
    {
 
88
        return groupSets;
 
89
    }
 
90
 
 
91
    private List<Attribute> attributes;
 
92
 
 
93
    public List<Attribute> getAttributes()
 
94
    {
 
95
        return attributes;
 
96
    }
 
97
 
 
98
    // -------------------------------------------------------------------------
 
99
    // Action implementation
 
100
    // -------------------------------------------------------------------------
 
101
 
 
102
    public String execute()
 
103
    {
 
104
        defaultDate = new Cal().set( 1900, 1, 1 ).time();
 
105
 
 
106
        dataSets = new ArrayList<DataSet>( dataSetService.getAllDataSets() );
 
107
 
 
108
        groupSets = new ArrayList<OrganisationUnitGroupSet>( organisationUnitGroupService
 
109
            .getCompulsoryOrganisationUnitGroupSetsWithMembers() );
 
110
 
 
111
        attributes = new ArrayList<Attribute>( attributeService.getOrganisationUnitAttributes() );
 
112
 
 
113
        Collections.sort( dataSets, IdentifiableObjectNameComparator.INSTANCE );
 
114
        Collections.sort( groupSets, IdentifiableObjectNameComparator.INSTANCE );
 
115
        Collections.sort( attributes, IdentifiableObjectNameComparator.INSTANCE );
 
116
 
 
117
        return SUCCESS;
 
118
    }
 
119
}