Ejemplo n.º 1
0
        protected override void AddParameter(TipoDocumentoParametro par, string id, string style)
        {
            if (dia > 31)
            {
                dia = 1;
            }
            switch (par.Nombre)
            {
            case CamposCombustible.Dia:
                AddLiteral((dia++).ToString());
                break;

            case CamposCombustible.Cliente:
                AddLabel(id, style);
                break;

            case CamposCombustible.Actividad:
                var cb = AddDropDownList(id, style);
                cb.Items.Clear();
                cb.Items.Add(new ListItem(" ", ""));
                cb.Items.Add(new ListItem("PERFORA - REPASA - REPERFORA - CIRCULA - REG VERTICALIDAD", "PC"));
                cb.Items.Add(new ListItem("REG VERTICALIDAD TOCTO - ENSAYA - SACA SONDEO - BAJA SONDEO - CALIBRA POZO - ARMA PM - COLOCA VASTAGO", "MA"));
                cb.Items.Add(new ListItem("MONTAJE BOP - TEST BOP - VINCULA CSG - TEST MNIFOLD", "BP"));
                cb.Items.Add(new ListItem("PERFILA", "LG"));
                cb.Items.Add(new ListItem("ENTUBA", "EN"));
                cb.Items.Add(new ListItem("ESPERA", "ES"));
                cb.Items.Add(new ListItem("REPARACION MECANICA", "RM"));
                cb.Items.Add(new ListItem("REPARACION OPERATIVA", "RO"));
                cb.Items.Add(new ListItem("MANIOBRA HERRAMIENTA APRISIONADA", "AP"));
                cb.Items.Add(new ListItem("PREPARACION INYECCION - ACUMULA AGUA - PERFILA VAINAS", "AC"));
                cb.Items.Add(new ListItem("DTM", "DM"));
                cb.Items.Add(new ListItem("REPARACION ELECTRICA", "RE"));
                cb.Items.Add(new ListItem("OPERATIVA", "OP"));
                cb.Items.Add(new ListItem("ESPERA POR FUERZA MAYOR-HUELGA-PARO-CORTE DE RUTA", "FM"));
                break;

            case CamposCombustible.StockDiario:
            case CamposCombustible.TotalCantidad:
            case CamposCombustible.TotalMotores:
            case CamposCombustible.TotalGenerador:
            case CamposCombustible.TotalEgresosPropios:
            case CamposCombustible.TotalEgresosTerceros:
            case CamposCombustible.TotalStockDiario:
                AddLabel(id, style);
                break;

            default:
                base.AddParameter(par, id, style);

                if (par.Nombre == CamposCombustible.Mes)
                {
                    (GetControlFromView(TipoDocumentoHelper.GetControlName(par)) as TextBox).Text = DateTime.Now.Month.ToString();
                }
                if (par.Nombre == CamposCombustible.Anio)
                {
                    (GetControlFromView(TipoDocumentoHelper.GetControlName(par)) as TextBox).Text = DateTime.Now.Year.ToString();
                }
                break;
            }
        }
Ejemplo n.º 2
0
        protected override void Validate()
        {
            base.Validate();

            var cbEquipo = GetControlFromView(TipoDocumentoHelper.CONTROL_NAME_PARENTI19) as DropDownList;

            if (cbEquipo.SelectedIndex < 0)
            {
                throw new ApplicationException("No se encontro el valor de Equipo");
            }

            foreach (TipoDocumentoParametro parametro in TipoDocumento.Parametros)
            {
                switch (parametro.Nombre)
                {
                case CamposCombustible.Tanque:
                    var cb = GetControlFromView(TipoDocumentoHelper.GetControlName(parametro)) as DropDownList;
                    if (cb == null || cb.SelectedIndex < 0)
                    {
                        throw new ApplicationException("No se encontro el valor de " + parametro.Nombre);
                    }
                    break;

                case CamposCombustible.Mes:
                case CamposCombustible.Anio:
                    var txt = GetControlFromView(TipoDocumentoHelper.GetControlName(parametro)) as TextBox;
                    int a;
                    if (txt == null || !int.TryParse(txt.Text, out a))
                    {
                        throw new ApplicationException("Valor invalido para campo " + parametro.Nombre);
                    }
                    if (parametro.Nombre == CamposCombustible.Mes && (a < 1 || a > 12))
                    {
                        throw new ApplicationException("Valor invalido para campo " + parametro.Nombre);
                    }
                    if (parametro.Nombre == CamposCombustible.Anio && (a < 1900 || a > 3000))
                    {
                        throw new ApplicationException("Valor invalido para campo " + parametro.Nombre);
                    }
                    break;

                case CamposCombustible.StockInicial:
                    var    txtd = GetControlFromView(TipoDocumentoHelper.GetControlName(parametro)) as TextBox;
                    double d;
                    if (txtd == null || !double.TryParse(txtd.Text, out d))
                    {
                        throw new ApplicationException("Valor invalido para campo " + parametro.Nombre);
                    }
                    break;
                }
            }
        }
Ejemplo n.º 3
0
 public void SetDefaults()
 {
     foreach (TipoDocumentoParametro param in TipoDocumento.Parametros)
     {
         if (!string.IsNullOrEmpty(param.Default))
         {
             continue;
         }
         if (param.Repeticion == 1)
         {
             var id = TipoDocumentoHelper.GetControlName(param);
             SetParameterValue(param.TipoDato, id, param.Default);
         }
         else
         {
             for (var i = 0; i < param.Repeticion; i++)
             {
                 var id = TipoDocumentoHelper.GetControlName(param, 0);
                 SetParameterValue(param.TipoDato, id, param.Default);
             }
         }
     }
 }
Ejemplo n.º 4
0
        private void SetCliente()
        {
            var cbCliente = GetControlFromView(TipoDocumentoHelper.GetControlName(TipoDocumentoHelper.GetByName(CamposCombustible.Cliente))) as Label;

            cbCliente.Text = string.Empty;

            var cbEquipo = GetControlFromView(TipoDocumentoHelper.CONTROL_NAME_PARENTI19) as DropDownList;

            if (cbEquipo.SelectedIndex < 0)
            {
                return;
            }
            var equipo = DAOFactory.EquipoDAO.FindById(Convert.ToInt32(cbEquipo.SelectedValue));

            cbCliente.Text = equipo.Cliente.Descripcion;
        }
Ejemplo n.º 5
0
 protected override void SetParameterValue(DocumentoValor val)
 {
     if (val.Parametro.Nombre == CamposCombustible.Actividad)
     {
         var id = (val.Parametro.Repeticion != 1)
                  ? TipoDocumentoHelper.GetControlName(val.Parametro, val.Repeticion)
                  : TipoDocumentoHelper.GetControlName(val.Parametro);
         var control = GetControlFromView(id);
         if (control == null)
         {
             return;
         }
         SetDropDownValue(control, val.Valor);
     }
     else
     {
         base.SetParameterValue(val);
     }
 }
Ejemplo n.º 6
0
        protected override void AfterValidate(Documento doc)
        {
            var txtCodigo = GetControlFromView(TipoDocumentoHelper.CONTROL_NAME_CODIGO) as TextBox;
            var cbEquipo  = GetControlFromView(TipoDocumentoHelper.CONTROL_NAME_PARENTI19) as DropDownList;
            var eq        = cbEquipo.SelectedItem.Text;
            var mes       = string.Empty;
            var anio      = string.Empty;

            foreach (TipoDocumentoParametro parametro in TipoDocumento.Parametros)
            {
                switch (parametro.Nombre)
                {
                case CamposCombustible.Mes:
                    mes = (GetControlFromView(TipoDocumentoHelper.GetControlName(parametro)) as TextBox).Text;
                    break;

                case CamposCombustible.Anio:
                    anio = (GetControlFromView(TipoDocumentoHelper.GetControlName(parametro)) as TextBox).Text;
                    break;
                }
            }
            txtCodigo.Text = eq + " - " + mes + "/" + anio;
        }
Ejemplo n.º 7
0
 private string GetClientID(TipoDocumentoParametro parametro, short repeticion)
 {
     return(GetControlFromView(TipoDocumentoHelper.GetControlName(parametro, repeticion)).ClientID);
 }
Ejemplo n.º 8
0
 private string GetClientID(TipoDocumentoParametro parametro)
 {
     return(GetControlFromView(TipoDocumentoHelper.GetControlName(parametro)).ClientID);
 }
Ejemplo n.º 9
0
        /// <summary>
        /// Parsea el documento
        /// </summary>
        public override void Parse()
        {
            OnLiteral(string.Concat("<table style='padding: 10px; width:100%; border: solid 1px #DDDDDD;height: auto;' align='center'><tr><td><div style='font-size: 14px; font-weight: bold; text-align: center;'>", TipoDocumentoHelper.TipoDocumento.Nombre));
            OnLiteral(string.Concat("</div></td></tr></table>"));
            OnLiteral("<br/><table style='padding: 0px; width:100%; border: solid 1px #DDDDDD;background-color: #E7E7E7;' align='center'>");

            OnLiteral("<tr><td>Distrito</td><td>");
            OnBase(new DocumentoParametroEventArgs(TipoDocumentoHelper.CONTROL_NAME_PARENTI01, string.Empty));
            OnLiteral("</td></tr>");
            OnLiteral("<tr><td>Base</td><td>");
            OnPlanta(new DocumentoParametroEventArgs(TipoDocumentoHelper.CONTROL_NAME_PARENTI02, string.Empty));
            OnLiteral("</td></tr>");
            OnLiteral("<tr><td>Codigo</td><td>");
            OnCodigo(new DocumentoParametroEventArgs(TipoDocumentoHelper.CONTROL_NAME_CODIGO, string.Empty));
            OnLiteral("</td></tr>");
            //OnLiteral("<tr><td>Descripcion<td><td>");
            //OnDescripcion(new DocumentoParametroEventArgs(TipoDocumentoHelper.CONTROL_NAME_DESCRIPCION, string.Empty));
            //OnLiteral("</td></tr>");
            OnLiteral("<tr><td>Fecha</td><td>");
            OnFecha(new DocumentoParametroEventArgs(TipoDocumentoHelper.CONTROL_NAME_FECHA, string.Empty));
            OnLiteral("</td></tr>");
            //OnLiteral("<tr><td>Presentacion<td><td>");
            //OnPresentacion(new DocumentoParametroEventArgs(TipoDocumentoHelper.CONTROL_NAME_PRESENTACION, string.Empty));
            //OnLiteral("</td></tr>");

            OnLiteral("<tr><td>Vencimiento</td><td>");
            OnVencimiento(new DocumentoParametroEventArgs(TipoDocumentoHelper.CONTROL_NAME_VENCIMIENTO, string.Empty));
            OnLiteral("</td></tr>");

            //OnLiteral("<tr><td>Estado<td><td>");
            //OnEstado(new DocumentoParametroEventArgs(TipoDocumentoHelper.CONTROL_NAME_ESTADO, string.Empty));
            //OnLiteral("</td></tr>");

            //--------------------------------------------

            if (TipoDocumentoHelper.TipoDocumento.AplicarATransportista)
            {
                OnLiteral("<tr><td>Transportista</td><td>");
                OnTransportista(new DocumentoParametroEventArgs(TipoDocumentoHelper.CONTROL_NAME_PARENTI07, string.Empty));
                OnLiteral("</td></tr>");
            }


            if (TipoDocumentoHelper.TipoDocumento.AplicarAVehiculo)
            {
                OnLiteral("<tr><td>Vehiculo</td><td>");
                OnVehiculo(new DocumentoParametroEventArgs(TipoDocumentoHelper.CONTROL_NAME_PARENTI03, string.Empty));
                OnLiteral("</td></tr>");
            }

            if (TipoDocumentoHelper.TipoDocumento.AplicarAEmpleado)
            {
                OnLiteral("<tr><td>Empleado</td><td>");
                OnEmpleado(new DocumentoParametroEventArgs(TipoDocumentoHelper.CONTROL_NAME_PARENTI09, string.Empty));
                OnLiteral("</td></tr>");
            }


            if (TipoDocumentoHelper.TipoDocumento.AplicarAEquipo)
            {
                OnLiteral("<tr><td>Equipo</td><td>");
                OnEquipo(new DocumentoParametroEventArgs(TipoDocumentoHelper.CONTROL_NAME_PARENTI19, string.Empty));
                OnLiteral("</td></tr>");
            }

            //---------------

            OnLiteral("</table>");
            OnLiteral("<br />");

            var parametros = TipoDocumentoHelper.GetParametros();

            OnLiteral("<table style='padding: 0px; width:100%;border: solid 1px #DDDDDD;background-color: #EEEEEE;' align='center'>");

            var repetidos = new List <TipoDocumentoParametro>();
            var lastOrder = -1;
            var repeating = false;

            foreach (var parametro in parametros)
            {
                var order = (int)Math.Floor(parametro.Orden);

                if (repeating && lastOrder != order)
                {
                    OnLiteral("<tr><td colspan='2'><br/><table border='1' align='center' cellspacing='0' cellpadding='2' style='text-align: center;'>");

                    int repeatTimes = repetidos[0].Repeticion;
                    for (short i = -1; i < repeatTimes; i++)
                    {
                        OnLiteral("<tr>");
                        foreach (var repetido in repetidos)
                        {
                            OnLiteral("<td>");
                            if (i == -1)
                            {
                                OnLiteral(repetido.Nombre);
                            }
                            else
                            {
                                var id = TipoDocumentoHelper.GetControlName(repetido, i);
                                OnParametro(new DocumentoParametroEventArgs(id, "width: 100px", repetido));
                            }
                            OnLiteral("</td>");
                        }
                        OnLiteral("</tr>");
                    }
                    OnLiteral("</table><br/></td></tr>");
                    repetidos.Clear();
                }

                if (parametro.Repeticion == 0 || parametro.Repeticion == 1)
                {
                    var id = TipoDocumentoHelper.GetControlName(parametro);
                    OnLiteral(string.Concat("<tr><td>", parametro.Nombre, "</td><td>"));
                    OnParametro(new DocumentoParametroEventArgs(id, string.Empty, parametro));
                    OnLiteral("</td></tr>");
                }
                else
                {
                    repetidos.Add(parametro);
                }

                lastOrder = order;
                repeating = parametro.Repeticion != 1;
            }

            if (repeating)
            {
                OnLiteral("<tr><td colspan='2'><table>");

                int repeatTimes = repetidos[0].Repeticion;
                for (short i = -1; i < repeatTimes; i++)
                {
                    OnLiteral("<tr>");
                    foreach (var repetido in repetidos)
                    {
                        OnLiteral("<td>");
                        if (i == -1)
                        {
                            OnLiteral(repetido.Nombre);
                        }
                        else
                        {
                            var id = TipoDocumentoHelper.GetControlName(repetido, i);
                            OnParametro(new DocumentoParametroEventArgs(id, string.Empty, repetido));
                        }
                        OnLiteral("</td>");
                    }
                    OnLiteral("</tr>");
                }
                OnLiteral("</table></td></tr>");
                repetidos.Clear();
            }

            OnLiteral("</table>");
        }
Ejemplo n.º 10
0
        protected override string GetParameterValue(TipoDocumentoParametro parameter, short repeticion)
        {
            if (dia > 31)
            {
                dia = 1;
            }
            switch (parameter.Nombre)
            {
            case CamposCombustible.Dia:
                return((dia++).ToString());

            case CamposCombustible.Actividad:
                var combo = GetControlFromView(TipoDocumentoHelper.GetControlName(parameter, repeticion)) as DropDownList;
                return(combo.SelectedValue);

            case CamposCombustible.StockDiario:
            case CamposCombustible.TotalCantidad:
            case CamposCombustible.TotalMotores:
            case CamposCombustible.TotalGenerador:
            case CamposCombustible.TotalEgresosPropios:
            case CamposCombustible.TotalEgresosTerceros:
            case CamposCombustible.TotalStockDiario:
                return("0");

            case CamposCombustible.Cliente:
                var cbEquipo = GetControlFromView(TipoDocumentoHelper.CONTROL_NAME_PARENTI19) as DropDownList;
                var equipo   = DAOFactory.EquipoDAO.FindById(Convert.ToInt32(cbEquipo.SelectedValue));
                return(equipo.Cliente.Id.ToString());

            default:
                var    val = base.GetParameterValue(parameter, repeticion);
                double d   = GetFloat(val);
                if (d == -999)
                {
                    d = 0;
                }
                if (parameter.Nombre == CamposCombustible.Cantidad)
                {
                    cantidad += d;
                    if (!diario.ContainsKey(repeticion))
                    {
                        diario.Add(repeticion, 0);
                    }
                    diario[repeticion] += d;
                    return(d.ToString());
                }
                if (parameter.Nombre == CamposCombustible.Motores)
                {
                    motores += d;
                    if (!diario.ContainsKey(repeticion))
                    {
                        diario.Add(repeticion, 0);
                    }
                    diario[repeticion] += d;
                    return(d.ToString());
                }
                if (parameter.Nombre == CamposCombustible.Generador)
                {
                    generador += d;
                    if (!diario.ContainsKey(repeticion))
                    {
                        diario.Add(repeticion, 0);
                    }
                    diario[repeticion] += d;
                    return(d.ToString());
                }
                if (parameter.Nombre == CamposCombustible.EgresosPropios)
                {
                    propios += d;
                    if (!diario.ContainsKey(repeticion))
                    {
                        diario.Add(repeticion, 0);
                    }
                    diario[repeticion] += d;
                    return(d.ToString());
                }
                if (parameter.Nombre == CamposCombustible.EgresosTerceros)
                {
                    terceros += d;
                    if (!diario.ContainsKey(repeticion))
                    {
                        diario.Add(repeticion, 0);
                    }
                    diario[repeticion] += d;
                    return(d.ToString());
                }

                return(val);
            }
        }
Ejemplo n.º 11
0
        protected virtual string GetParameterValue(TipoDocumentoParametro parameter, short repeticion)
        {
            var id = (parameter.Repeticion != 1)
                            ? TipoDocumentoHelper.GetControlName(parameter, repeticion)
                            : TipoDocumentoHelper.GetControlName(parameter);

            var control = GetControlFromView(id);

            if (control == null)
            {
                return(null);
            }

            string textValue;

            switch (parameter.TipoDato.ToLower())
            {
            case TipoParametroDocumento.Integer:
                textValue = GetTextBoxValue(id);
                if (parameter.Obligatorio)
                {
                    return(GetRequiredInt(parameter.Nombre, textValue).ToString());
                }

                var integer = GetInt(textValue);
                if (integer == -999)
                {
                    return(null);
                }
                return(integer.ToString());

            case TipoParametroDocumento.Float:
                textValue = GetTextBoxValue(id).Replace(',', '.');
                if (parameter.Obligatorio)
                {
                    return(GetRequiredFloat(parameter.Nombre, textValue).ToString());
                }
                var floatnum = GetFloat(textValue);
                if (floatnum == -999)
                {
                    return(null);
                }
                return(floatnum.ToString());

            case TipoParametroDocumento.String:
            case TipoParametroDocumento.Barcode:
                textValue = GetTextBoxValue(id);
                return(parameter.Obligatorio
                               ? GetRequiredNotEmpty(parameter.Nombre, textValue)
                               : textValue);

            case TipoParametroDocumento.DateTime:
                textValue = GetTextBoxValue(id);
                if (parameter.Obligatorio)
                {
                    return(GetRequiredValidDate(parameter.Nombre, textValue).ToString(CultureInfo.InvariantCulture));
                }

                var date = GetValidDate(textValue);
                if (date == DateTime.MinValue)
                {
                    return(null);
                }
                return(date.ToString(CultureInfo.InvariantCulture));

            case TipoParametroDocumento.Boolean:
                return(GetCheckBoxValue(id) ? "true" : "false");

            case TipoParametroDocumento.Coche:
            case TipoParametroDocumento.Chofer:
            case TipoParametroDocumento.Aseguradora:
            case TipoParametroDocumento.Equipo:
            case TipoParametroDocumento.Cliente:
            case TipoParametroDocumento.Tanque:
            case TipoParametroDocumento.CentroCostos:
                textValue = GetDropDownListValue(id);
                if (parameter.Obligatorio)
                {
                    return(GetRequiredInt(parameter.Nombre, textValue).ToString());
                }

                var number = GetInt(textValue);
                if (number == 0)
                {
                    return(null);
                }
                return(number.ToString());

            case TipoParametroDocumento.Image:
                if (parameter.Obligatorio && !editMode)
                {
                    return(GetRequiredFile(parameter.Nombre, control as FileUpload));
                }
                return(GetFile(parameter.Nombre, control as FileUpload));
            }

            return(null);
        }