Пример #1
0
        public override void PrintList()
        {
            PgMng.Reset(3, 1, Face.Resources.Messages.LOADING_DATA, this);

            PayrollBatchReportMng reportMng = new PayrollBatchReportMng(AppContext.ActiveSchema, this.Text, FilterValues);

            PgMng.Grow(Face.Resources.Messages.BUILDING_REPORT);

            RemesaNominasListRpt report = reportMng.GetListReport(List);

            PgMng.FillUp();

            ShowReport(report);
        }
        /*private static void FormatReport(NominaRpt 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;
         * }
         * }*/

        #endregion

        #region Business Methods

        public RemesaNominasListRpt GetListReport(PayrollBatchList list)
        {
            if (list.Count == 0)
            {
                return(null);
            }

            RemesaNominasListRpt doc = new RemesaNominasListRpt();

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

            foreach (PayrollBatchInfo item in list)
            {
                pList.Add(RemesaNominaPrint.New(item));
            }

            doc.SetDataSource(pList);

            FormatHeader(doc);

            return(doc);
        }