private DataTable consumos_productos()
        {
            try
            {
                DtReporte = new DataTable();
                var BL = new tb_60local_stockBL();
                var BE = new tb_60local_stock();

                BE.moduloid = moduloid.ToString();
                BE.perimes = Mesdoini.ToString();
                BE.perianio = Peranio.ToString();
                BE.procedenciaid = procedenciaid.ToString();
                BE.filtro = "1";

                DtReporte = BL.ConsumosProd(VariablesPublicas.EmpresaID.ToString(), BE).Tables[0];

                if (DtReporte != null)
                {
                    return DtReporte;
                }
                else
                {
                    return DtReporte;
                }
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }