public static string[] NombrePresupuesto(int id) { Controller_Cotizador controlCot = new Controller_Cotizador(); Cotizador cot = controlCot.BuscarPresupuestoxID(id); return(new[] { cot.NombrePresupuesto, cot.EstadoPPTO.ToString() }); }
protected void Page_Load(object sender, EventArgs e) { try { string id = Request.QueryString["id"].ToString(); Controller_Cotizador controlpre = new Controller_Cotizador(); Cotizador p = controlpre.BuscarPresupuestoxID(Convert.ToInt32(id)); lblCatalogo.Text = p.NombrePresupuesto.ToString(); txtTablaDetalle.Text = PrePrensa(p.PaginasInt, p.PaginasTap, p.EntradasxFormatos, p.Formato, p.GramajeInterior, p.GramajeTapas, p.PapelInterior, p.PapelTap, p.Encuadernacion, p.Tiraje1.Cantidad.ToString(), Convert.ToInt32(id), p.QuintoColor, p.BarnizUV, p.Laminado, p.BarnizAcuosoTap, p.BarnizAcuosoInt, "0", p.Segmentos, p.Empresa); } catch { } }
protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { try { int id = Convert.ToInt32(Request.QueryString["id"].ToString()); Controller_Cotizador controlpres = new Controller_Cotizador(); Cotizador cot = controlpres.BuscarPresupuestoxID(id); if (cot.NombrePresupuesto != null) { lblCatalogo.Text = cot.NombrePresupuesto; if (cot.Tiraje1 != null) { lblIDTiraje1.Text = cot.Tiraje1.IDTiraje.ToString(); lblCantidad1.Text = cot.Tiraje1.Cantidad.ToString("N0").Replace(",", "."); lblPrecio1.Text = cot.Tiraje1.CostoTotal.ToString("N0").Replace(",", "."); } if (cot.Tiraje2 != null) { lblIDTiraje2.Text = cot.Tiraje2.IDTiraje.ToString(); lblCantidad2.Text = cot.Tiraje2.Cantidad.ToString("N0").Replace(",", "."); lblPrecio2.Text = cot.Tiraje2.CostoTotal.ToString("N0").Replace(",", "."); } else { divT2.Visible = false; } if (cot.Tiraje3 != null) { lblIDTiraje3.Text = cot.Tiraje3.IDTiraje.ToString(); lblCantidad3.Text = cot.Tiraje3.Cantidad.ToString("N0").Replace(",", "."); lblPrecio3.Text = cot.Tiraje3.CostoTotal.ToString("N0").Replace(",", "."); } else { divT3.Visible = false; } } } catch { } } }
protected void Page_Load(object sender, EventArgs e) { try { string id = Request.QueryString["id"].ToString();//1.ToString();// Controller_Cotizador controlpre = new Controller_Cotizador(); Cotizador p = controlpre.BuscarPresupuestoxID(Convert.ToInt32(id)); string Tapas = ""; string PapelTapas = ""; string Barniz = ""; switch (p.PaginasTap) { case 0: Tapas = "******"; PapelTapas = "******"; break; default: Tapas = p.PaginasTap + " páginas impresas a 4/4 colores proceso</td>"; PapelTapas = p.PapelTap.Replace("Couché", "Couché Opaco") + " de " + p.GramajeTapas + " grs. Certificado PEFC</td>"; if (p.BarnizAcuosoTap != "No") { Barniz = "<tr><td class='style1'><div style='font-weight: bold;' align='right'>Terminación Tapa:</div></td><td colspan='2' class='style1'>Barniz Acuoso Parejo en el " + p.BarnizAcuosoTap + ".</td></tr>"; } break; } p.Empresa = "GRUPO COPESA"; //Falta Los barniz Acuosos en Todo string formatoExt = ""; string[] str = p.Formato.Replace(",", ".").Split('x'); Double fextendAncho = Convert.ToDouble(str[0].Trim()) * 10.0; Double fextendLargo = Convert.ToDouble(str[1].Trim()) * 10.0; string Formato = fextendAncho.ToString() + " x " + fextendLargo; formatoExt = (Convert.ToDouble(fextendAncho) * 2).ToString() + " x " + fextendLargo; string encuadernacion = p.Encuadernacion; if (encuadernacion == "Hotmelt") { encuadernacion = "Entapado hotmelt"; } else if (encuadernacion == "Corchete") { encuadernacion = "Dos corchetes al Lomo"; } else { encuadernacion = "No Considera Encuadernación"; } // PPTO_Tirajes tiraje1 = p.Tiraje1; string TirajeTotales = ""; // string TextoCantidad = ""; // string TextoTotalNeto = ""; TirajeTotales = "<tr>" + "<td style='100px'></td>" + "<td>" + "<div style='font-weight: bold;' align='right'>Cantidad de Ejemplares:</div>" + "</td>" + "<td>" + Convert.ToInt32(p.Tiraje).ToString("N0").Replace(",", ".") + "</td>" + "<td style='width: 1%;'>" + "<div align='right'>" + "<a style='font-weight: bold;'>" + "Total Neto:" + "</a> $ " + Convert.ToInt32(p.TotalNeto).ToString("N0").Replace(",", ".") + "</div>" + "</td>" + "</tr>" + //Inicio mini tabla de detalle "<tr><td style='100px'></td>" + "<td>" + "</td>" + "<td>" + "</td>" + "<td style='width: 1%;'>" + "<div align='right'>" + "<table><tr>" + "<td><span style='font-weight: bold;' align='center'>C.F.</span></td>" + "<td><span style='font-weight: bold;' align='center'>C.V.</span></td>" + "</div></td></tr></table>" + "</td></tr>" + "<tr><td style='100px'></td>" + "<td>" + "</td>" + "<td>" + "<span style='font-weight: bold;' align='right'>Papel:</span>" + "</td>" + "<td style='width: 1%;'>" + "<div align='right'>" + "<table><tr>" + "<td>" + Convert.ToInt32(p.Tiraje).ToString("N0").Replace(",", ".") + "</td>" + "<td>" + Convert.ToInt32(p.TotalNeto).ToString("N0").Replace(",", ".") + "</td>" + "</div></td></tr></table>" + "</td></tr>" + "<tr><td style='100px'></td>" + "<td>" + "</td>" + "<td>" + "<span style='font-weight: bold;' align='right'>Impresión:</span>" + "</td>" + "<td style='width: 1%;'>" + "<div align='right'>" + "<table><tr>" + "<td>" + Convert.ToInt32(p.Tiraje).ToString("N0").Replace(",", ".") + "</td>" + "<td>" + Convert.ToInt32(p.TotalNeto).ToString("N0").Replace(",", ".") + "</td>" + "</div></td></tr></table>" + "</td></tr>" + "<tr><td style='100px'></td>" + "<td>" + "</td>" + "<td>" + "<span style='font-weight: bold;' align='right'>Encuadernación:</span>" + "</td>" + "<td style='width: 1%;'>" + "<div align='right'>" + "<table><tr>" + "<td>" + Convert.ToInt32(p.Tiraje).ToString("N0").Replace(",", ".") + "</td>" + "<td>" + Convert.ToInt32(p.TotalNeto).ToString("N0").Replace(",", ".") + "</td>" + "</div></td></tr></table>" + "</td></tr>" + "<tr><td style='100px'></td>" + "<td>" + "</td>" + "<td>" + "<span style='font-weight: bold;' align='right'>Terminación:</span>" + "</td>" + "<td style='width: 1%;'>" + "<div align='right'>" + "<table><tr>" + "<td>" + Convert.ToInt32(p.Tiraje).ToString("N0").Replace(",", ".") + "</td>" + "<td>" + Convert.ToInt32(p.TotalNeto).ToString("N0").Replace(",", ".") + "</td>" + "</div></td></tr></table>" + "</td></tr>" + "<tr><td style='100px'></td>" + "<td>" + "</td>" + "<td>" + "<span style='font-weight: bold;' align='right'>Manufactura:</span>" + "</td>" + "<td style='width: 1%;'>" + "<div align='right'>" + "<table><tr>" + "<td>" + Convert.ToInt32(p.Tiraje).ToString("N0").Replace(",", ".") + "</td>" + "<td>" + Convert.ToInt32(p.TotalNeto).ToString("N0").Replace(",", ".") + "</td>" + "</div></td></tr></table>" + "</td></tr>"; string contenido = "<table style='width: 100%;height:100%;' border='1'>" + "<tr><td>" + "<table style='width: 100%;' border='0'>" + "<tr><td>" + "<img " + //height='50px' " alt='Logo AImpresores' src='http://cencosud.aimpresores.cl/Estructura/Image/índice.jpg'" + " />" + "<div style='font-size: 8px;'>" + "Av. Gladys Marín Millie 6920, Estación Central, Santiago de Chile" + "<br />" + "Teléfono: (56 2) 2440 5700 / Fax: " + p.PersonalComercial.Fax + "<br />[email protected]" + "</div>" + "</td>" + "<td align='right'>" + "<br /><br /><br /><br />" + "<div style='font-weight: bold;' align='center'>PRESUPUESTO " + p.ID_Presupuesto.ToString() + "</div>" + "</td></tr></table></td></tr></table>" + "<table border='1'><tr>" + "<td align='center' style='vertical-align:center'>" + "<div style='font-weight: bold; font-size: 8px; font-style: italic;'>" + "De acuerdo a lo solicitado por ustedes, remitimos el siguiente presupuesto:</div>" + "</td></tr></table>" + "<div style='font-size: 9px;'>" + "<table style='width: 100%;'>" + "<tr><td>" + "<div style='font-weight: bold;' align='right'>" + "Empresa:</div></td><td>" + p.Empresa.ToUpper() + "</td><td style='width: 1%;'>" + "<a style='font-weight: bold;'>Fecha: </a>" + p.FechaCreacion.ToString("dd/MM/yyy") + "</td></tr><tr><td>" + "<div style='font-weight: bold;' align='right'>" + "Atención a:</div></td><td>" + p.Usuario_Creador + "</td><td style='width: 1%;'></td></tr>" + "<tr>" + "<td>" + "<div style='font-weight: bold;' align='right'>" + "Ejecutivo Directo:</div>" + "</td>" + "<td>" + p.PersonalComercial.NombreCompleto + "</td>" + "<td style='width: 1%;'>" + "</td>" + "</tr>" + "<tr><td>" + "<div style='font-weight: bold;' align='right'>" + "Teléfono:</div>" + "</td>" + "<td>" + p.PersonalComercial.Telefono + " / " + p.PersonalComercial.Celular + "</td>" + "<td style='width: 1%;'>" + "</td>" + "</tr>" + "<tr>" + "<td colspan='3' align='center'>" + "___________________________________________________________________________________________" + "</td>" + "</tr>" + "<tr>" + "<td>" + "<div style='font-weight: bold;' align='right'>" + "Producto:</div>" + "</td>" + "<td>" + "<a style='font-weight: bold;'>" + p.NombrePresupuesto.ToUpper() + "</a>" + "</td>" + "<td style='width: 1%;'>" + "</td>" + "</tr>" + "<tr>" + "<td>" + "<div style='font-weight: bold;' align='right'>" + "Formato Cerrado:</div>" + "</td>" + "<td>" + Formato + " (mm.)" + "</td>" + "<td style='width: 1%;'>" + "</td>" + "</tr>" + "<tr>" + "<td>" + "<div style='font-weight: bold;' align='right'>" + "Formato Extendido:</div>" + "</td>" + "<td>" + formatoExt + " (mm.)" + "</td>" + "<td style='width: 1%;'>" + "</td>" + "</tr>" + "<tr>" + "<td>" + "<div style='font-weight: bold;' align='right'>" + "</div>" + "</td>" + "<td>" + "</td>" + "<td style='width: 1%;'>" + "</td>" + "</tr>" + "<tr>" + "<td>" + "<div style='font-weight: bold;' align='right'>" + "Extensión:</div>" + "</td>" + "<td colspan='2'>" + p.PaginasInt + " páginas Interiores impresas a 4/4 colores " + "proceso " + "</td>" + "</tr>" + "<tr>" + "<td>" + "<div style='font-weight: bold;' align='right'>" + "Papel:</div>" + "</td>" + "<td colspan='2'>" + p.PapelInterior.Replace("Couché", "Couché Opaco") + " de " + p.GramajeInterior + " grs. Certificado PEFC" + "</td>" + "</tr>" + "<tr>" + "<td>" + "<div style='font-weight: bold;' align='right'>" + "Tapa:</div>" + "</td>" + "<td colspan='2'>" + Tapas + "</tr>" + "<tr>" + "<td class='style1'>" + "<div style='font-weight: bold;' align='right'>" + "Papel:</div>" + "</td>" + "<td colspan='2' class='style1'>" + PapelTapas + "</tr>" + Barniz + "<tr>" + "<td>" + "<div style='font-weight: bold;' align='right'>" + "Encuadernación:</div>" + "</td>" + "<td>" + encuadernacion + "</td>" + "<td>" + "</td>" + "</tr>" + "</table>" + "<table style='width: 100%;' align='center'>" + TirajeTotales + "</table>" + "</div>" + "<br />" + "<br />" + "<br />" + "<br />" + "<table style='width: 100%;' align='center'>" + "<tr>" + "<td align='center'>" + "__________________________" + "<br />" + "<a style='font-weight: bold; font-size: 9px;'>ACEPTADO CLIENTE</a>" + "</td>" + "<td align='center'>" + "__________________________" + "<br />" + "<a style='font-weight: bold; font-size: 9px;'>A IMPRESORES S.A.</a>" + "</td>" + "</tr>" + "</table>" + "<br />" + "<a style='font-weight: bold; font-size: 9px;'>Precios no Incluyen IVA</a>" + "" + "<div style='font-size: 8px;' border='1' align='center'>" + "<table style='width: 100%; font-size: 8px;' align='center' border='1'>" + "<tr>" + "<td align='center'>" + "La Validez de este presupuesto es de 30 días, vencido este plazo el presupuesto " + "queda nulo " + "<br />" + "Se acepta una variación de la cantidad solicitada en un rango +/- 5% la cual será " + "facturada al valor del ejemplar adicional" + "<br />" + "Este Presupuesto se mantiene proforma hasta el cierre completo del material proporcionado " + "por el cliente" + "<br />" + "Despacho del volumen total solo a un lugar físico dentro de la Región Metropolitana" + "<br />" + "Si este presupuesto es acertado,se deberá confirmar disponibilidad de máquina y " + "papeles con su ejecutivo directo." + "<br />" + "Tipo de cambio vigente : UF " + p.ValorUFActual.Valor.ToString("N2") + " informado por el Banco Central de Chile." + "</td>" + "</table>"; //" </div>" + // "<a style='font-weight: bold;font-size:9px;'> En caso de recepción Incompleta o ilegible, favor comunicarse al 56 (2) 2440 5740</a>"; Document document = new Document(PageSize.LETTER, 15f, 15f, 20f, 10f); PdfWriter.GetInstance(document, new FileStream(Request.PhysicalApplicationPath + "PDF\\" + id + ".- " + p.NombrePresupuesto + ".pdf", FileMode.Create)); document.Open(); iTextSharp.text.html.simpleparser.HTMLWorker hw = new iTextSharp.text.html.simpleparser.HTMLWorker(document); hw.Parse(new StringReader(contenido)); document.Close(); //if (EnviarCorreo(id + ".- " + p.NombrePresupuesto, ""))//falta el correo de Comercial //{ Response.Redirect("../../PDF/" + id + ".- " + p.NombrePresupuesto + ".pdf"); //} //Response.Clear(); //Response.ContentType = "application/pdf"; //Response.AddHeader("Content-Disposition", "attachment; filename=MySamplePDF"); //Response.WriteFile(Request.PhysicalApplicationPath + "\\MySamplePDF.pdf"); //Response.End(); } catch (Exception a) { string popupScript = "<script language='JavaScript'>alert('A ocurrido el siguiente error:" + a.Message + "');</script>"; Page.RegisterStartupScript("PopupScript", popupScript); } }