Short answer yes, long answer....not easily.
To implement the functionality you request the following steps must be taken.
First create an action on the AR Invoice screen that will generate a report, save and attach it to the document.
public class ARInvoiceEntryExtension : PXGraphExtension<ARInvoiceEntry>
{
public PXAction<ARInvoice> exportReport;
[PXUIField(DisplayName = "Export Report")]
[PXButton]
public virtual IEnumerable ExportReport(PXAdapter adapter)
{
//Report Paramenters
Dictionary<String, String> parameters = new Dictionary<String, String>();
parameters["ARInvoice.DocType"] = Base.Document.Current.DocType;
parameters["ARInvoice.RefNbr"] = Base.Document.Current.RefNbr;
//Report Processing
PX.Reports.Controls.Report _report = PXReportTools.LoadReport("AR641000", null);
PXReportTools.InitReportParameters(_report, parameters,
SettingsProvider.Instance.Default);
ReportNode reportNode = ReportProcessor.ProcessReport(_report);
//Generation PDF
byte[] data = PX.Reports.Mail.Message.GenerateReport(reportNode,
ReportProcessor.FilterPdf).First();
PX.SM.FileInfo file = new PX.SM.FileInfo(reportNode.ExportFileName + ".pdf", null, data);
UploadFileMaintenance graph = new UploadFileMaintenance();
graph.SaveFile(file);
PXNoteAttribute.AttachFile(Base.Document.Cache, Base.Document.Current, file);
return adapter.Get();
}
}
Second you will have to create a method utilizing the Contract API to find the Invoice, trigger the action and then retrieve the file attached to the document.
class Program
{
static void Main(string[] args)
{
AcumaticaProcessor processor = new AcumaticaProcessor();
processor.Login();
File[] result = processor.RetrieveReport("Invoice", "001007");
}
}
public class AcumaticaProcessor
{
DefaultSoapClient client = new DefaultSoapClient();
public void Login()
{
client.Login("Username", "Password", "Company", "Branch", null);
}
public File[] RetrieveReport(string docType, string refNbr)
{
ARInvoice invoiceToFind = new ARInvoice()
{
Type = new StringSearch() { Value = docType },
ReferenceNbr = new StringSearch() { Value = refNbr }
};
invoiceToFind = client.Get(invoiceToFind) as ARInvoice;
InvokeResult result = client.Invoke(invoiceToFind, new ExportReport());
return client.GetFiles(invoiceToFind) as File[];
}
}