コード例 #1
0
        public InventarioAlmacenRpt GetDetailReport(InventarioAlmacenInfo item)
        {
            if (item == null)
            {
                return(null);
            }

            InventarioAlmacenRpt doc = new InventarioAlmacenRpt();

            List <InventarioAlmacenPrint> pList = new List <InventarioAlmacenPrint>();

            pList.Add(InventarioAlmacenPrint.New(item));
            doc.SetDataSource(pList);
            doc.SetParameterValue("Empresa", Schema.Name);


            List <LineaInventarioPrint> pLineaInventarios = new List <LineaInventarioPrint>();

            foreach (LineaInventarioInfo child in item.LineaInventarios)
            {
                pLineaInventarios.Add(LineaInventarioPrint.New(child));
            }

            doc.Subreports["LineaInventarioSubRpt"].SetDataSource(pLineaInventarios);


            //FormatReport(doc, empresa.Logo);

            return(doc);
        }
コード例 #2
0
 private static void FormatReport(InventarioAlmacenRpt rpt, string logo)
 {
     /*string path = Images.GetRootPath() + "\\" + Resources.Paths.LOGO_EMPRESAS + logo;
      *
      * if (File.Exists(path))
      * {
      *  Image image = Image.FromFile(path);
      *  int width = rpt.Section1.ReportObjects["Logo"].Width;
      *  int height = rpt.Section1.ReportObjects["Logo"].Height;
      *
      *  rpt.Section1.ReportObjects["Logo"].Width = 15 * image.Width;
      *  rpt.Section1.ReportObjects["Logo"].Height = 15 * image.Height;
      *  rpt.Section1.ReportObjects["Logo"].Left += (width - 15 * image.Width) / 2;
      *  rpt.Section1.ReportObjects["Logo"].Top += (height - 15 * image.Height) / 2;
      * }*/
 }