Package org.compiere.model

Examples of org.compiere.model.MArchive.save()


    byte[] data = Document.getPDFAsArray(m_reportEngine.getLayout().getPageable(false))//  No Copy
    if (data != null)
    {
      MArchive archive = new MArchive (Env.getCtx(), m_reportEngine.getPrintInfo(), null);
      archive.setBinaryData(data);
      success = archive.save();
    }
    if (success)
      ADialog.info(m_WindowNo, this, "Archived");
    else
      ADialog.error(m_WindowNo, this, "ArchiveError");
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.