fixes bug #9386
git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Web/trunk/ventaboletos@72244 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
449d200bbd
commit
9f8a6ebc78
Binary file not shown.
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<jasperReport xmlns="http://jasperreports.sourceforge.net/jasperreports" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://jasperreports.sourceforge.net/jasperreports http://jasperreports.sourceforge.net/xsd/jasperreport.xsd" name="RelatorioRDI" pageWidth="842" pageHeight="595" orientation="Landscape" columnWidth="802" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" isFloatColumnFooter="true" uuid="1c0e8b69-fdcb-47fd-b54b-d862711fb037">
|
||||
<property name="ireport.zoom" value="1.6105100000000017"/>
|
||||
<property name="ireport.zoom" value="1.7715610000000024"/>
|
||||
<property name="ireport.x" value="0"/>
|
||||
<property name="ireport.y" value="0"/>
|
||||
<parameter name="empresa" class="java.lang.String"/>
|
||||
|
@ -778,12 +778,6 @@
|
|||
</band>
|
||||
</groupFooter>
|
||||
</group>
|
||||
<background>
|
||||
<band splitType="Stretch"/>
|
||||
</background>
|
||||
<title>
|
||||
<band splitType="Stretch"/>
|
||||
</title>
|
||||
<pageHeader>
|
||||
<band height="69" splitType="Stretch">
|
||||
<textField>
|
||||
|
@ -808,14 +802,14 @@
|
|||
<textFieldExpression><![CDATA["Período: "]]></textFieldExpression>
|
||||
</textField>
|
||||
<textField pattern="dd/MM/yyyy">
|
||||
<reportElement x="37" y="26" width="45" height="13" uuid="6ad65d40-63a6-4ef3-b4b4-aedaa42328a2"/>
|
||||
<reportElement x="37" y="26" width="52" height="13" uuid="6ad65d40-63a6-4ef3-b4b4-aedaa42328a2"/>
|
||||
<textElement>
|
||||
<font size="8"/>
|
||||
</textElement>
|
||||
<textFieldExpression><![CDATA[$P{inicio}]]></textFieldExpression>
|
||||
</textField>
|
||||
<textField pattern="dd/MM/yyyy">
|
||||
<reportElement x="102" y="26" width="45" height="13" uuid="6e76b64a-19d8-4ca7-88a0-b732d0bf0334"/>
|
||||
<reportElement x="109" y="26" width="52" height="13" uuid="6e76b64a-19d8-4ca7-88a0-b732d0bf0334"/>
|
||||
<textElement>
|
||||
<font size="8"/>
|
||||
</textElement>
|
||||
|
@ -1020,7 +1014,7 @@
|
|||
<reportElement x="0" y="67" width="802" height="1" uuid="e00bc40a-38a8-4dfd-b403-7767a7ffc5e3"/>
|
||||
</line>
|
||||
<textField pattern="dd/MM/yyyy">
|
||||
<reportElement x="82" y="26" width="20" height="13" uuid="8088db47-6a6c-4b1c-9e5b-13c79f11e4aa"/>
|
||||
<reportElement x="89" y="26" width="20" height="13" uuid="8088db47-6a6c-4b1c-9e5b-13c79f11e4aa"/>
|
||||
<textElement>
|
||||
<font size="8"/>
|
||||
</textElement>
|
||||
|
@ -1035,9 +1029,6 @@
|
|||
</textField>
|
||||
</band>
|
||||
</pageHeader>
|
||||
<columnHeader>
|
||||
<band splitType="Stretch"/>
|
||||
</columnHeader>
|
||||
<detail>
|
||||
<band height="20" splitType="Stretch">
|
||||
<textField>
|
||||
|
@ -1168,8 +1159,8 @@
|
|||
</textField>
|
||||
</band>
|
||||
</detail>
|
||||
<columnFooter>
|
||||
<band height="45" splitType="Stretch">
|
||||
<lastPageFooter>
|
||||
<band height="44" splitType="Immediate">
|
||||
<textField>
|
||||
<reportElement x="0" y="5" width="65" height="13" uuid="ff885eb7-f6b4-4e1c-9a17-8aed962e1026"/>
|
||||
<textElement>
|
||||
|
@ -1450,11 +1441,5 @@
|
|||
<textFieldExpression><![CDATA[$V{icmsRec_total}]]></textFieldExpression>
|
||||
</textField>
|
||||
</band>
|
||||
</columnFooter>
|
||||
<pageFooter>
|
||||
<band splitType="Stretch"/>
|
||||
</pageFooter>
|
||||
<summary>
|
||||
<band splitType="Stretch"/>
|
||||
</summary>
|
||||
</lastPageFooter>
|
||||
</jasperReport>
|
||||
|
|
|
@ -80,13 +80,6 @@ public class BusquedaRelatorioRDIController extends MyGenericForwardComposer {
|
|||
|
||||
try {
|
||||
Empresa empresa = cmbEmpresa.getSelectedItem() == null ? null : (Empresa) cmbEmpresa.getSelectedItem().getValue();
|
||||
if (empresa == null) {
|
||||
Messagebox.show(Labels.getLabel("busquedaRelatorioRDIController.seleciona.empresa"),
|
||||
Labels.getLabel("indexController.mnImpressaoRMD.label"),
|
||||
Messagebox.OK, Messagebox.ERROR);
|
||||
return;
|
||||
}
|
||||
|
||||
List<Estado> estados = new ArrayList<Estado>();
|
||||
for (Object ob : estadoList.getSelectedItemsByIndex()) {
|
||||
estados.add((Estado) ob);
|
||||
|
@ -118,15 +111,8 @@ public class BusquedaRelatorioRDIController extends MyGenericForwardComposer {
|
|||
openWindow("/component/reportView.zul",
|
||||
Labels.getLabel("indexController.mnRelatorioRDI.label"), args, MODAL);
|
||||
|
||||
} catch (InterruptedException e) {
|
||||
log.error("", e);
|
||||
} catch (WrongValueException e) {
|
||||
log.error("", e);
|
||||
} catch (SQLException e) {
|
||||
log.error("", e);
|
||||
} catch (Exception e) {
|
||||
log.error("", e);
|
||||
|
||||
Messagebox.show(e.getMessage(),
|
||||
Labels.getLabel("indexController.mnImpressaoRMD.label"),
|
||||
Messagebox.OK, Messagebox.INFORMATION);
|
||||
|
|
Loading…
Reference in New Issue