Package org.compiere.model

Examples of org.compiere.model.MArchive


  {
    boolean success = false;
    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

Related Classes of org.compiere.model.MArchive

Copyright © 2018 www.massapicom. 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.