Commit d818b4e5 authored by sabita.prasad's avatar sabita.prasad

Manual shipment Label printing report done


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@93419 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 11d3b25c
<?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="Manual Shipment Label" pageWidth="283" pageHeight="438" columnWidth="243" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20">
<property name="ireport.zoom" value="1.0"/>
<property name="ireport.x" value="0"/>
<property name="ireport.y" value="0"/>
<parameter name="as_ship_id" class="java.lang.String"/>
<queryString>
<![CDATA[SELECT C.SHIP_LABEL
FROM SHIPMENT A,
SHIPMENT_CONTENT B,
CARTON_MASTER C
WHERE A.SHIPMENT_ID = B.SHIPMENT_ID
AND B.CARTON_NO = C.CARTON_NO
AND A.SHIPMENT_ID =$P{as_ship_id}]]>
</queryString>
<field name="SHIP_LABEL" class="java.lang.String"/>
<background>
<band splitType="Stretch"/>
</background>
<detail>
<band height="382" splitType="Stretch">
<image>
<reportElement x="0" y="0" width="243" height="382"/>
<imageExpression><![CDATA[$F{SHIP_LABEL}]]></imageExpression>
</image>
</band>
</detail>
</jasperReport>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment