Skip to content

Commit

Permalink
#1460 remove barcode from menu order checkup
Browse files Browse the repository at this point in the history
  • Loading branch information
metas-lc committed May 8, 2017
1 parent e389071 commit 4832a36
Showing 1 changed file with 4 additions and 25 deletions.
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Created with Jaspersoft Studio version 6.2.2.final using JasperReports Library version 6.2.2 -->
<!-- 2017-05-08T14:20:43 -->
<!-- 2017-05-08T15:03:52 -->
<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="report_details" pageWidth="596" pageHeight="842" columnWidth="596" leftMargin="0" rightMargin="0" topMargin="0" bottomMargin="0" uuid="352f38d2-10a9-47ea-be33-9b905ff1f8f6">
<property name="ireport.scriptlethandling" value="0"/>
<property name="ireport.encoding" value="UTF-8"/>
Expand Down Expand Up @@ -43,12 +43,10 @@
ol.qtyenteredtu,
ol.qtyentered,
pm.name as container,
uom.UOMSymbol AS UOMSymbol,
reportLine.barcode AS barcode
uom.UOMSymbol AS UOMSymbol
FROM
C_Order o
LEFT OUTER JOIN C_OrderLine ol ON o.C_Order_ID = ol.C_Order_ID AND ol.isActive = 'Y'
LEFT OUTER JOIN C_Order_MFGWarehouse_ReportLine reportLine ON ol.C_OrderLine_ID = reportLine.C_OrderLine_ID
LEFT OUTER JOIN C_BPartner bp ON ol.C_BPartner_ID = bp.C_BPartner_ID AND bp.isActive = 'Y'
LEFT OUTER JOIN M_HU_PI_Item_Product ip ON ol.M_HU_PI_Item_Product_ID = ip.M_HU_PI_Item_Product_ID AND ip.isActive = 'Y'
LEFT OUTER JOIN M_HU_PI_Item pii ON ip.M_HU_PI_Item_ID = pii.M_HU_PI_Item_ID AND pii.isActive = 'Y'
Expand Down Expand Up @@ -125,7 +123,6 @@ ORDER BY
<field name="qtyentered" class="java.math.BigDecimal"/>
<field name="container" class="java.lang.String"/>
<field name="uomsymbol" class="java.lang.String"/>
<field name="barcode" class="java.lang.String"/>
<variable name="LINE_COUNT" class="java.lang.Number" calculation="Count">
<variableExpression><![CDATA[1]]></variableExpression>
<initialValueExpression><![CDATA[0]]></initialValueExpression>
Expand All @@ -144,7 +141,7 @@ ORDER BY
$F{pricelist}+$F{priceactual}+
$F{uomsymbol}+$F{capacity}+$F{container}]]></groupExpression>
<groupFooter>
<band height="106">
<band height="39">
<property name="com.jaspersoft.studio.unit.height" value="pixel"/>
<printWhenExpression><![CDATA[new Boolean ( $P{C_BPartner_ID} != null && $P{Date} != null )]]></printWhenExpression>
<textField isBlankWhenNull="false">
Expand Down Expand Up @@ -305,15 +302,6 @@ $F{uomsymbol}+$F{capacity}+$F{container}]]></groupExpression>
</textElement>
<textFieldExpression><![CDATA[$V{AggLine}]]></textFieldExpression>
</textField>
<image scaleImage="RetainShape" hAlign="Right">
<reportElement x="350" y="35" width="190" height="60" uuid="9c5fe40e-8509-408a-b52f-aa9f6ce6f2b0">
<property name="com.jaspersoft.studio.unit.height" value="pixel"/>
<property name="com.jaspersoft.studio.unit.width" value="pixel"/>
</reportElement>
<imageExpression><![CDATA[new java.net.URL( $P{barcodeURL} + "?Content=" +
$F{barcode} +
"&Format=CODE_128&Width=470&Height=140" )]]></imageExpression>
</image>
</band>
</groupFooter>
</group>
Expand Down Expand Up @@ -399,7 +387,7 @@ $F{barcode} +
</band>
</pageHeader>
<detail>
<band height="106" splitType="Stretch">
<band height="36" splitType="Stretch">
<property name="com.jaspersoft.studio.unit.height" value="pixel"/>
<printWhenExpression><![CDATA[new Boolean ( $P{c_order_id} != null )]]></printWhenExpression>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
Expand Down Expand Up @@ -560,15 +548,6 @@ $F{barcode} +
</textElement>
<textFieldExpression><![CDATA[$F{uomsymbol}]]></textFieldExpression>
</textField>
<image scaleImage="RetainShape" hAlign="Right">
<reportElement x="350" y="35" width="190" height="60" uuid="36e8e364-d050-4424-9594-14ca4002487c">
<property name="com.jaspersoft.studio.unit.height" value="pixel"/>
<property name="com.jaspersoft.studio.unit.width" value="pixel"/>
</reportElement>
<imageExpression><![CDATA[new java.net.URL( $P{barcodeURL} + "?Content=" +
$F{barcode} +
"&Format=CODE_128&Width=470&Height=140" )]]></imageExpression>
</image>
</band>
</detail>
</jasperReport>

0 comments on commit 4832a36

Please sign in to comment.