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

« back to all changes in this revision

Viewing changes to dhis-2/dhis-web/dhis-web-validationrule/src/main/java/org/hisp/dhis/validationrule/util/ValidationResultPDFGenerator.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.validationrule.util;
 
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.io.OutputStream;
 
31
import java.util.Collection;
 
32
 
 
33
import org.hisp.dhis.i18n.I18n;
 
34
import org.hisp.dhis.i18n.I18nFormat;
 
35
import org.hisp.dhis.organisationunit.OrganisationUnit;
 
36
import org.hisp.dhis.period.Period;
 
37
import org.hisp.dhis.system.util.DateUtils;
 
38
import org.hisp.dhis.system.util.PDFUtils;
 
39
import org.hisp.dhis.validation.ValidationResult;
 
40
 
 
41
import com.lowagie.text.Document;
 
42
import com.lowagie.text.pdf.PdfPTable;
 
43
 
 
44
/**
 
45
 * @author Lars Helge Overland
 
46
 * @version $Id$
 
47
 */
 
48
public class ValidationResultPDFGenerator
 
49
    extends PDFUtils
 
50
        implements OutputGenerator
 
51
{
 
52
    // -------------------------------------------------------------------------
 
53
    // PDF functionality
 
54
    // -------------------------------------------------------------------------
 
55
 
 
56
    public void generateOutput( Collection<ValidationResult> results, OutputStream out, I18n i18n, I18nFormat format )
 
57
    {
 
58
        Document document = openDocument( out );
 
59
        
 
60
        PdfPTable table = getPdfPTable( true, 0.19f, 0.13f, 0.21f, 0.07f, 0.12f, 0.07f, 0.21f );
 
61
        
 
62
        table.setHeaderRows( 0 );
 
63
        
 
64
        table.addCell( getHeader3Cell( i18n.getString( "data_quality_report" ), 7 ) );
 
65
 
 
66
        table.addCell( getCell( 7, 8 ) );
 
67
        
 
68
        table.addCell( getTextCell( i18n.getString( "district_health_information_software" ) + " - " + DateUtils.getMediumDateString(), 7 ) );
 
69
        
 
70
        table.addCell( getCell( 7, 15 ) );
 
71
        
 
72
        table.addCell( getItalicCell( i18n.getString( "source" ), 1 ) );
 
73
        table.addCell( getItalicCell( i18n.getString( "period" ), 1 ) );
 
74
        table.addCell( getItalicCell( i18n.getString( "left_side_description" ), 1 ) );
 
75
        table.addCell( getItalicCell( i18n.getString( "value" ), 1 ) );
 
76
        table.addCell( getItalicCell( i18n.getString( "operator" ), 1 ) );
 
77
        table.addCell( getItalicCell( i18n.getString( "value" ), 1 ) );
 
78
        table.addCell( getItalicCell( i18n.getString( "right_side_description" ), 1 ) );
 
79
        
 
80
        table.addCell( getCell( 7, 8 ) );
 
81
        
 
82
        if ( results != null )
 
83
        {
 
84
            for ( ValidationResult validationResult : results )
 
85
            {
 
86
                OrganisationUnit unit = (OrganisationUnit) validationResult.getSource();
 
87
                
 
88
                Period period = validationResult.getPeriod();
 
89
                
 
90
                table.addCell( getTextCell( unit.getName() ) );
 
91
                table.addCell( getTextCell( format.formatPeriod( period ) ) );
 
92
                table.addCell( getTextCell( validationResult.getValidationRule().getLeftSide().getDescription() ) );
 
93
                table.addCell( getTextCell( String.valueOf( validationResult.getLeftsideValue() ) ) );
 
94
                table.addCell( getTextCell( i18n.getString( validationResult.getValidationRule().getOperator() ), 1, ALIGN_CENTER ) );
 
95
                table.addCell( getTextCell( String.valueOf( validationResult.getRightsideValue() ) ) );
 
96
                table.addCell( getTextCell( validationResult.getValidationRule().getRightSide().getDescription() ) );                    
 
97
            }
 
98
        }
 
99
        
 
100
        addTableToDocument( document, table );
 
101
        
 
102
        closeDocument( document );
 
103
    }
 
104
}