Beispiel #1
0
        /*private static void FormatReport(AyudaRpt 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 Ayuda

        public AyudaRpt GetDetailReport(AyudaInfo item)
        {
            if (item == null)
            {
                return(null);
            }

            AyudaRpt doc = new AyudaRpt();

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

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


            List <AyudaPeriodoPrint> pAyudaPeriodos = new List <AyudaPeriodoPrint>();

            foreach (AyudaPeriodoInfo child in item.AyudaPeriodos)
            {
                pAyudaPeriodos.Add(AyudaPeriodoPrint.New(child));
            }

            doc.Subreports["AyudaPeriodoSubRpt"].SetDataSource(pAyudaPeriodos);


            //FormatReport(doc, empresa.Logo);

            return(doc);
        }
Beispiel #2
0
        internal void CopyValues(AyudaInfo source)
        {
            if (source == null)
            {
                return;
            }

            _record.CopyValues(source._base.Record);
        }
Beispiel #3
0
        protected void CopyValues(AyudaInfo source)
        {
            if (source == null)
            {
                return;
            }

            Oid = source.Oid;
            _base.CopyValues(source);
        }
Beispiel #4
0
        protected virtual void CopyFrom(AyudaInfo source)
        {
            if (source == null)
            {
                return;
            }

            Oid           = source.Oid;
            Serial        = source.Serial;
            Codigo        = source.Codigo;
            Estado        = source.Estado;
            Nombre        = source.Nombre;
            Observaciones = source.Observaciones;
        }
 public static string SELECT(AyudaInfo parent)
 {
     return(AyudaPeriodo.SELECT(new QueryConditions {
         Ayuda = parent
     }, true));
 }