From 53d2ef5a81fb63de9ce6849cfe001e467776d044 Mon Sep 17 00:00:00 2001 From: teo_sarca Date: Fri, 18 Jun 2010 09:07:33 +0000 Subject: [PATCH] Process Print Invoices not Jasper-enabled Please enforce backward compatibility when possible. Link to SF Tracker: http://sourceforge.net/support/tracker.php?aid=2973199 --- client/src/org/compiere/print/ReportCtl.java | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/client/src/org/compiere/print/ReportCtl.java b/client/src/org/compiere/print/ReportCtl.java index dc9dbec0eb..766d952baa 100644 --- a/client/src/org/compiere/print/ReportCtl.java +++ b/client/src/org/compiere/print/ReportCtl.java @@ -48,6 +48,19 @@ import org.compiere.util.Trx; */ public class ReportCtl { + /** + * @deprecated Please use {@link ServerReportCtl#PARAM_PRINTER_NAME} + */ + public static final String PARAM_PRINTER_NAME = ServerReportCtl.PARAM_PRINTER_NAME; + /** + * @deprecated Please use {@link ServerReportCtl#PARAM_PRINT_FORMAT} + */ + public static final String PARAM_PRINT_FORMAT = ServerReportCtl.PARAM_PRINT_FORMAT; + /** + * @deprecated Please use {@link ServerReportCtl#PARAM_PRINT_INFO} + */ + public static final String PARAM_PRINT_INFO = ServerReportCtl.PARAM_PRINT_INFO; + /** * Constructor - prevent instance */