2

我试图强制打开打印对话框,以便用户所要做的就是设置电子邮件地址并按确定。我找到了多个关于如何在没有打印对话框的情况下将报告打印到文件或打印机的教程,但这不是我想要的。

通常,要通过电子邮件发送报告,用户会显示报告,单击工具栏中的打印图标,然后选择电子邮件并发送。我想自动删除前两个步骤。

到目前为止,这是我做这件事的众多尝试之一,但无济于事。

void emailInvoice()
{
Args                args;
ReportRun           rr;
Report              rb;
PrintJobSettings    pjs;
CustInvoiceJour     record;
;

select record where record.RecId == 5637175089;

args = new Args("SalesInvoice");
args.record(record);
args.parmEnum(PrintCopyOriginal::OriginalPrint);

// Set report run properties
rr = new ReportRun(args,'');
rr.suppressReportIsEmptyMessage(true);
rr.query().interactive(false);

// set report properties
rb = rr.report();
rb.interactive(true);

// set print job settings
pjs = rr.printJobSettings();
pjs.fileName(strfmt("C:\\Users\\gbonzo\\Desktop\\%1.pdf", record.SalesId));
pjs.fitToPage(true);
// break the report info pages using the height of the current printer's paper
pjs.virtualPageHeight(-1);


// force PDF printing
pjs.format(PrintFormat::PDF);
pjs.setTarget(PrintMedium::Mail);
pjs.viewerType(ReportOutputUserType::PDF);

// lock the print job settings so can't be changed
// X++ code int the report may try to change the destination
// to the screen for example but this does not make
// sense when running a report here
pjs.lockDestinationProperties(true);

// Initialize the report
rr.init();

rr.run();
}

在此先感谢您的帮助!

4

2 回答 2

1

您是否尝试过开发一个 RunBase 标准对话框类(如果您需要选择打印机,则为 RunBaseBatchPrintable)来获取您需要的所有对话框字段,并从那里以编程方式运行传递所有所需参数的报告?我很确定它会起作用,并且可能会留下更清晰的代码来分隔用户交互所需的逻辑报告。

在此处阅读示例:

http://waikeatng.blogspot.com.es/2010/10/using-runbasebatchprintable-class.html

于 2013-01-28T16:02:51.723 回答
0

在调用 run() 方法之前,您必须调用 ReportRun 类的 prompt() 方法。

if (rr.prompt())
{
    rr.run();
}

prompt() 方法将显示打印对话框。如果您想让您的用户更轻松,您可以使用 SysMailer 类,看看 quickSend() 方法。

于 2013-01-18T14:55:53.123 回答