diff --git a/C2P/RepOffers.aspx.cs b/C2P/RepOffers.aspx.cs index 4d7438c..b251a1f 100644 --- a/C2P/RepOffers.aspx.cs +++ b/C2P/RepOffers.aspx.cs @@ -18,43 +18,7 @@ namespace C2P if (!Page.IsPostBack) { // imposto iframe! con tutti i possibili valori di URL - repView.Src = string.Format(@"{0}/ReportViewer.aspx?ticket={1}&lingua={2}&QuoteType={3}&CodQuote={4}&QuoteRev={5}", memLayer.ML.confReadString("reportsUrl"), Request.QueryString["ticket"], user_std.UtSn.lingua, Request.QueryString["QuoteType"], Request.QueryString["CodQuote"], Request.QueryString["QuoteRev"]); -#if false - if (memLayer.ML.confReadBool("ReportRemoteRender")) - { - ReportOffers.ProcessingMode = ProcessingMode.Remote; - ReportOffers.ServerReport.ReportServerUrl = new Uri(@"http://10.74.82.217/ReportServer_SQL2008R2"); - ReportOffers.ServerReport.ReportPath = @"/Test/ReportOffers"; - ReportOffers.ServerReport.DisplayName = "Offers"; - } - else - { - ReportOffers.ProcessingMode = Microsoft.Reporting.WebForms.ProcessingMode.Local; - LocalReport localReport = ReportOffers.LocalReport; - - // 0) recupero la richiesta di stampa: numero ticket! - int ticket = 0; - try - { - ticket = Convert.ToInt32(Request.QueryString["ticket"]); - } - catch - { } - - // 1) impostazione file report - localReport.ReportPath = @".\Reports\ReportOffers.rdlc"; - - // 2) caricamento tab dati - DataTable tabVoc = new DataTable(); - DataTable tabQuote = new DataTable(); - tabVoc = (DataTable)SteamWare.selDataVoc.mgr.getVocabolarioByLemma(SteamWare.user_std.UtSn.lingua, "C2P_prt1"); // HARD CODED lemma x report!!! - tabQuote = (DataTable)DtProxy.man.taQFQ.repOffersByTicket(ticket); - - // 3) inserimento dataset nel report - localReport.DataSources.Add(new ReportDataSource("dsVocabolario", tabVoc)); - localReport.DataSources.Add(new ReportDataSource("dsQuoteFull_Q_Data", tabQuote)); - } -#endif + repView.Src = string.Format(@"{0}/ReportViewer.aspx?ticket={1}&lingua={2}&QuoteType={3}&CodQuote={4}&QuoteRev={5}&TypeDoc={6}", memLayer.ML.confReadString("reportsUrl"), Request.QueryString["ticket"], user_std.UtSn.lingua, Request.QueryString["QuoteType"], Request.QueryString["CodQuote"], Request.QueryString["QuoteRev"], Request.QueryString["TypeDoc"]); } } } diff --git a/C2P/WebUserControls/mod_OffersArchive.ascx b/C2P/WebUserControls/mod_OffersArchive.ascx index 17ac04a..a266f47 100644 --- a/C2P/WebUserControls/mod_OffersArchive.ascx +++ b/C2P/WebUserControls/mod_OffersArchive.ascx @@ -110,16 +110,9 @@
<%:traduci("Print") %> - <%-- - - - --%>
- - - - +
@@ -225,6 +218,12 @@ + + + + + +
diff --git a/C2P/WebUserControls/mod_OffersArchive.ascx.cs b/C2P/WebUserControls/mod_OffersArchive.ascx.cs index 2fc6a29..271e115 100644 --- a/C2P/WebUserControls/mod_OffersArchive.ascx.cs +++ b/C2P/WebUserControls/mod_OffersArchive.ascx.cs @@ -489,7 +489,7 @@ namespace C2P.WebUserControls } } // rimando a pagina di stampa reports... - Response.Redirect(string.Format("RepOffers?ticket={0}&QuoteType={1}&CodQuote=0&QuoteRev=0", ticket, QuoteType)); + Response.Redirect(string.Format("RepOffers?ticket={0}&QuoteType={1}&CodQuote=0&QuoteRev=0&TypeDoc={2}", ticket, QuoteType, ddlTypeDoc.SelectedValue)); } } /// diff --git a/C2P/WebUserControls/mod_OffersArchive.ascx.designer.cs b/C2P/WebUserControls/mod_OffersArchive.ascx.designer.cs index c249d89..d69cc3d 100644 --- a/C2P/WebUserControls/mod_OffersArchive.ascx.designer.cs +++ b/C2P/WebUserControls/mod_OffersArchive.ascx.designer.cs @@ -183,6 +183,15 @@ namespace C2P.WebUserControls { /// protected global::System.Web.UI.WebControls.ObjectDataSource odsQuotes; + /// + /// odsTipoDoc control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.ObjectDataSource odsTipoDoc; + /// /// numRes control. /// diff --git a/C2P/bin/C2P.dll b/C2P/bin/C2P.dll index e82e58b..3424eb6 100644 Binary files a/C2P/bin/C2P.dll and b/C2P/bin/C2P.dll differ diff --git a/C2P_Project/bin/Output/C2P_DB.dacpac b/C2P_Project/bin/Output/C2P_DB.dacpac index 6eb0c1b..bdab0fa 100644 Binary files a/C2P_Project/bin/Output/C2P_DB.dacpac and b/C2P_Project/bin/Output/C2P_DB.dacpac differ diff --git a/C2P_Project/bin/Output/C2P_Project.dll b/C2P_Project/bin/Output/C2P_Project.dll index 7912b19..9ee9106 100644 Binary files a/C2P_Project/bin/Output/C2P_Project.dll and b/C2P_Project/bin/Output/C2P_Project.dll differ diff --git a/C2P_Report/C2P_Report.csproj b/C2P_Report/C2P_Report.csproj index b890599..99504bd 100644 --- a/C2P_Report/C2P_Report.csproj +++ b/C2P_Report/C2P_Report.csproj @@ -117,16 +117,20 @@ + Designer + Designer + + @@ -134,6 +138,9 @@ + + + Web.config diff --git a/C2P_Report/ReportViewer.aspx.cs b/C2P_Report/ReportViewer.aspx.cs index a98a34b..2c0291c 100644 --- a/C2P_Report/ReportViewer.aspx.cs +++ b/C2P_Report/ReportViewer.aspx.cs @@ -36,6 +36,7 @@ namespace C2P_Report int CodQuote = 0; int QuoteRev = 0; string chiave = ""; + string TypeDoc = ""; try { ticket = Convert.ToInt32(Request.QueryString["ticket"]); @@ -70,8 +71,28 @@ namespace C2P_Report } if (lingua == "" || lingua == null) lingua = "EN"; - // 1) impostazione file report - localReport.ReportPath = string.Format(@".\Reports\ReportOffers_{0}.rdlc", QuoteType); + try + { + TypeDoc = Request.QueryString["TypeDoc"]; + } + catch + { + lingua = "ReportOff"; + } + + // 1) impostazione file report da TypeDoc: + if (TypeDoc == "ReportOff") + { + localReport.ReportPath = string.Format(@".\Reports\ReportOffers_{0}.rdlc", QuoteType); + } + else if (TypeDoc == "OffertDOC") + { + localReport.ReportPath = string.Format(@".\Reports\OffertDOC.rdlc"); + } + else // fallback + { + localReport.ReportPath = string.Format(@".\Reports\ReportOffers_{0}.rdlc", QuoteType); + } // 2) caricamento tab dati DataTable tabVoc = new DataTable(); DataTable tabVocQState = new DataTable(); diff --git a/C2P_Report/Reports/IIS02/OffertDOC.rdl b/C2P_Report/Reports/IIS02/OffertDOC.rdl new file mode 100644 index 0000000..037b068 --- /dev/null +++ b/C2P_Report/Reports/IIS02/OffertDOC.rdl @@ -0,0 +1,1665 @@ + + + Steamware SRL - Vers. 1.1.1 + 0 + + + DB_C2P + None + ffd8a90c-e6a6-4b01-88d5-724b8c467036 + + + + + + DB_C2P + + + =Parameters!Ticket.Value + true + + + stp_prt_dsQuoteFull_Q_Data + true + + + + =Fields!QuoteType.Value+CStr(Fields!CodQuote.Value)+CStr(Fields!QuoteRev.Value) + + + Vers + System.String + + + QuoteType + System.String + + + CodQuote + System.Int64 + + + OfferResult + System.String + + + QuoteRev + System.Int32 + + + IdxQState + System.Int32 + + + KoReason + System.String + + + CodClient + System.String + + + Agente + System.String + + + ClientName + System.String + + + ProdType + System.String + + + CodItem + System.String + + + CodItemGroup + System.String + + + RawMat + System.String + + + UnitWeight + System.Decimal + + + BatchQty + System.Int32 + + + CodInco + System.String + + + TranspZone + System.String + + + KeyAM + System.String + + + Note + System.String + + + PriceOff + System.Decimal + + + CodClientAssoc + System.String + + + ClientNameAssoc + System.String + + + ItemDescr + System.String + + + CodifProfilo + System.String + + + ClasseMerc + System.String + + + TipoDies + System.String + + + CodDiesGroup + System.String + + + DiamDies + System.Decimal + + + HoleNumDies + System.Int32 + + + DiesPrice + System.Decimal + + + DiesExpLife + System.Decimal + + + DiesEOLife + System.Decimal + + + DiesByClass + System.Boolean + + + NumDiesInList + System.Decimal + + + NumDiesExaust + System.Decimal + + + CodPlant + System.String + + + KeyAMIL + System.String + + + KgTeo + System.Decimal + + + NumSMED + System.Decimal + + + QuotaMan + System.Decimal + + + PRMWeight + System.Decimal + + + PWeight + System.Decimal + + + PTare + System.Decimal + + + LivPackage + System.String + + + LivPackageDett + System.String + + + RawMatCost + System.Decimal + + + RawMatExtraCost + System.Decimal + + + RawMatFullCost + System.Decimal + + + CodPackag + System.String + + + PkgDesc + System.String + + + FSR + System.Decimal + + + ProvvCost + System.Decimal + + + EECost + System.Decimal + + + GasCost + System.Decimal + + + DiesCost + System.Decimal + + + PackCost + System.Decimal + + + TranspCost + System.Decimal + + + SellCost01 + System.Decimal + + + RefCost01 + System.Decimal + + + SellCost04 + System.Decimal + + + RefCost04 + System.Decimal + + + WSR01 + System.Decimal + + + MSR01 + System.Decimal + + + NetProd01 + System.Decimal + + + FC4UG01 + System.Decimal + + + VC4UG01 + System.Decimal + + + OH4UG01 + System.Decimal + + + SC4UG01 + System.Decimal + + + DSR + System.Decimal + + + NetProd04 + System.Decimal + + + FC4UG04 + System.Decimal + + + VC4UG04 + System.Decimal + + + FVC + System.Decimal + + + Charge + System.Decimal + + + P_FVC + System.Decimal + + + CPS + System.Decimal + + + P_CPS + System.Decimal + + + P_FC4UG04 + System.Decimal + + + FullCost + System.Decimal + + + P_FullCost + System.Decimal + + + MinPrice + System.Decimal + + + P_MinPrice + System.Decimal + + + P_PriceOff + System.Decimal + + + NetMar + System.Decimal + + + FCShield + System.Decimal + + + PckSur + System.Decimal + + + valid + System.Boolean + + + errorScore + System.Int32 + + + DiesPrice_sim + System.Decimal + + + SamplePrice + System.Decimal + + + DiesFullCost + System.Decimal + + + DiesPriceClientQuote + System.Decimal + + + DiesTecLife + System.Decimal + + + DiesCommLife + System.Decimal + + + MonthSalesPrev + System.Decimal + + + SalesPrevCost + System.Decimal + + + DiesFinCost + System.Decimal + + + ClientQuoteReven + System.Decimal + + + ExtraDiscountDies + System.Decimal + + + WSR01_sim + System.Decimal + + + MSR01_sim + System.Decimal + + + NetProd01_sim + System.Decimal + + + NetProd04_sim + System.Decimal + + + DSR_sim + System.Decimal + + + NetMar_sim + System.Decimal + + + FCShield_sim + System.Decimal + + + MinPrice_sim + System.Decimal + + + P_MinPrice_sim + System.Decimal + + + Cli_ZipCode + System.String + + + Cli_City + System.String + + + Cli_State + System.String + + + Cli_Nation + System.String + + + DescInco + System.String + + + + + + + + + + + + + 18.9cm + + + + + 19.38542cm + + + + + + + Embedded + SoloProxima_285x72px + FitProportional + 0.36903cm + 0.44335cm + 1.5cm + 6.58cm + + + + + + + + + 2.15604cm + + + 4.10015cm + + + 1.91791cm + + + 2.28833cm + + + 1.97082cm + + + 2.76459cm + + + 2.79104cm + + + + + 0.6cm + + + + + true + true + + + + + Cod. Prod. + + + + + + + Textbox13 + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Descrizione + + + + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Lega + + + + + + + Textbox17 + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Prezzo/kg + + + + + + + Textbox23 + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Quantità + + + + + + + Textbox25 + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Totale + + + + + + + Textbox38 + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Data Consegna + + + + + + + Textbox27 + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + =Fields!CodItem.Value + + + + + + + CodItem1 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!ItemDescr.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!RawMat.Value + + + + + + + RawMat + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!P_PriceOff.Value + + + + + + 2pt + 2pt + 2pt + 2pt + it-IT + + + + + + + + true + true + + + + + =Fields!BatchQty.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!P_PriceOff.Value * Fields!KgTeo.Value + + + + + + 2pt + 2pt + 2pt + 2pt + it-IT + + + + + + + + true + true + + + + + __ /__ /____ + + + + + + + Textbox28 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + + + + + + After + + + + + + + dsQuoteFull_Q_Data + 14.56063cm + 0.41689cm + 1.2cm + 17.98888cm + 1 + + + + + + true + true + + + + + =Fields!DescInco.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Di seguito le condizioni offerte + + + + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Oggetto: Offerta commerciale + + + + + =Fields!QuoteType.Value+"|"+CStr(Fields!CodQuote.Value)+"."+CStr(Fields!QuoteRev.Value) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + + ="Bergamo, " + FormatDateTime(Today(),DateFormat.ShortDate) + + + + + + + + + + =Fields!ClientName.Value + + + + + + + + + + + + + + + + + + + + =Fields!Cli_City.Value + + + + + + + + + + + =Fields!Cli_Nation.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + true + + + + + + + + + + 2.5cm + + + + + + + true + true + + + + + In Fede + + + + + + + + + + + + + + + + + + =Fields!Agente.Value + + + + + + + Textbox155 + 11.89981cm + 2.5cm + 5.64854cm + + + 2pt + 2pt + 2pt + 2pt + + + + true + + + + + + + + + + + + + + + + + + + + + =Fields!Key.Value + + + Between + + + + + =Fields!Key.Value + + + + + + + + + + dsQuoteFull_Q_Data + 0.00001cm + 21.88542cm + 18.9cm + + 0.25pt + + + + + 27cm + + + + + + + + + 2.15604cm + + + 4.10015cm + + + 1.91791cm + + + 2.28833cm + + + 1.97082cm + + + 2.76459cm + + + 2.79104cm + + + + + 0.6cm + + + + + true + true + + + + + Cod. Prod. + + + + + + + Textbox13 + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Descrizione + + + + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Lega + + + + + + + Textbox17 + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Prezzo/kg + + + + + + + Textbox23 + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Quantità + + + + + + + Textbox25 + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Totale + + + + + + + Textbox38 + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Data Consegna + + + + + + + Textbox27 + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + =Fields!CodItem.Value + + + + + + + CodItem1 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!ItemDescr.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!RawMat.Value + + + + + + + RawMat + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!P_PriceOff.Value + + + + + + 2pt + 2pt + 2pt + 2pt + it-IT + + + + + + + + true + true + + + + + =Fields!BatchQty.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!P_PriceOff.Value * Fields!KgTeo.Value + + + + + + 2pt + 2pt + 2pt + 2pt + it-IT + + + + + + + + true + true + + + + + __ /__ /____ + + + + + + + Textbox28 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + + + + + + After + + + + + + + dsQuoteFull_Q_Data + 14.56063cm + 0.41689cm + 1.2cm + 17.98888cm + 1 + + + + + + true + true + + + + + =Fields!DescInco.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Di seguito le condizioni offerte + + + + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Oggetto: Offerta commerciale + + + + + =Fields!QuoteType.Value+"|"+CStr(Fields!CodQuote.Value)+"."+CStr(Fields!QuoteRev.Value) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + + ="Bergamo, " + FormatDateTime(Today(),DateFormat.ShortDate) + + + + + + + + + + =Fields!ClientName.Value + + + + + + + + + + + + + + + + + + + + =Fields!Cli_City.Value + + + + + + + + + + + =Fields!Cli_Nation.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + true + + + + + + + + + + 2.5cm + + + + + + + true + true + + + + + In Fede + + + + + + + + + + + + + + + + + + =Fields!Agente.Value + + + + + + + Textbox155 + 11.89981cm + 2.5cm + 5.64854cm + + + 2pt + 2pt + 2pt + 2pt + + + + true + + + + + + + + + + + + + + + + + + + + + =Fields!Key.Value + + + Between + + + + + =Fields!Key.Value + + + + + + + + + + dsQuoteFull_Q_Data + 0.00001cm + 21.88542cm + 18.9cm + + 0.25pt + + + + + 27cm + + + + + + + + + 2.15604cm + + + 4.10015cm + + + 1.91791cm + + + 2.28833cm + + + 1.97082cm + + + 2.76459cm + + + 2.79104cm + + + + + 0.6cm + + + + + true + true + + + + + Cod. Prod. + + + + + + + Textbox13 + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Descrizione + + + + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Lega + + + + + + + Textbox17 + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Prezzo/kg + + + + + + + Textbox23 + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Quantità + + + + + + + Textbox25 + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Totale + + + + + + + Textbox38 + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Data Consegna + + + + + + + Textbox27 + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + =Fields!CodItem.Value + + + + + + + CodItem1 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!ItemDescr.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!RawMat.Value + + + + + + + RawMat + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!P_PriceOff.Value + + + + + + 2pt + 2pt + 2pt + 2pt + it-IT + + + + + + + + true + true + + + + + =Fields!BatchQty.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!P_PriceOff.Value * Fields!KgTeo.Value + + + + + + 2pt + 2pt + 2pt + 2pt + it-IT + + + + + + + + true + true + + + + + __ /__ /____ + + + + + + + Textbox28 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + + + + + + After + + + + + + + dsQuoteFull_Q_Data + 14.56063cm + 0.41689cm + 1.2cm + 17.98888cm + 1 + + + + + + true + true + + + + + =Fields!DescInco.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Di seguito le condizioni offerte + + + + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Oggetto: Offerta commerciale + + + + + =Fields!QuoteType.Value+"|"+CStr(Fields!CodQuote.Value)+"."+CStr(Fields!QuoteRev.Value) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + + ="Bergamo, " + FormatDateTime(Today(),DateFormat.ShortDate) + + + + + + + + + + =Fields!ClientName.Value + + + + + + + + + + + + + + + + + + + + =Fields!Cli_City.Value + + + + + + + + + + + =Fields!Cli_Nation.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + true + + + + + + + + + + 2.5cm + + + + + + + true + true + + + + + In Fede + + + + + + + + + + + + + + + + + + =Fields!Agente.Value + + + + + + + Textbox155 + 11.89981cm + 2.5cm + 5.64854cm + + + 2pt + 2pt + 2pt + 2pt + + + + true + + + + + + + + + + + + + + + + + + + + + =Fields!Key.Value + + + Between + + + + + =Fields!Key.Value + + + + + + + + + + dsQuoteFull_Q_Data + 0.00001cm + 21.88542cm + 18.9cm + + 0.25pt + + + + + 27cm + + + + + + + + + 2.15604cm + + + 4.10015cm + + + 1.91791cm + + + 2.28833cm + + + 1.97082cm + + + 2.76459cm + + + 2.79104cm + + + + + 0.6cm + + + + + true + true + + + + + Cod. Prod. + + + + + + + Textbox13 + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Descrizione + + + + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Lega + + + + + + + Textbox17 + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Prezzo/kg + + + + + + + Textbox23 + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Quantità + + + + + + + Textbox25 + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Totale + + + + + + + Textbox38 + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Data Consegna + + + + + + + Textbox27 + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + =Fields!CodItem.Value + + + + + + + CodItem1 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!ItemDescr.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!RawMat.Value + + + + + + + RawMat + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!P_PriceOff.Value + + + + + + 2pt + 2pt + 2pt + 2pt + it-IT + + + + + + + + true + true + + + + + =Fields!BatchQty.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!P_PriceOff.Value * Fields!KgTeo.Value + + + + + + 2pt + 2pt + 2pt + 2pt + it-IT + + + + + + + + true + true + + + + + __ /__ /____ + + + + + + + Textbox28 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + + + + + + After + + + + + + + dsQuoteFull_Q_Data + 14.56063cm + 0.41689cm + 1.2cm + 17.98888cm + 1 + + + + + + true + true + + + + + =Fields!DescInco.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Di seguito le condizioni offerte + + + + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Oggetto: Offerta commerciale + + + + + =Fields!QuoteType.Value+"|"+CStr(Fields!CodQuote.Value)+"."+CStr(Fields!QuoteRev.Value) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + + ="Bergamo, " + FormatDateTime(Today(),DateFormat.ShortDate) + + + + + + + + + + =Fields!ClientName.Value + + + + + + + + + + + + + + + + + + + + =Fields!Cli_City.Value + + + + + + + + + + + =Fields!Cli_Nation.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + true + + + + + + + + + + 2.5cm + + + + + + + true + true + + + + + In Fede + + + + + + + + + + + + + + + + + + =Fields!Agente.Value + + + + + + + Textbox155 + 11.89981cm + 2.5cm + 5.64854cm + + + 2pt + 2pt + 2pt + 2pt + + + + true + + + + + + + + + + + + + + + + + + + + + =Fields!Key.Value + + + Between + + + + + =Fields!Key.Value + + + + + + + + + + dsQuoteFull_Q_Data + 0.00001cm + 21.88542cm + 18.9cm + + 0.25pt + + + + + 27cm + + + + + + + + + 2.15604cm + + + 4.10015cm + + + 1.91791cm + + + 2.28833cm + + + 1.97082cm + + + 2.76459cm + + + 2.79104cm + + + + + 0.6cm + + + + + true + true + + + + + Cod. Prod. + + + + + + + Textbox13 + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Descrizione + + + + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Lega + + + + + + + Textbox17 + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Prezzo/kg + + + + + + + Textbox23 + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Quantità + + + + + + + Textbox25 + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Totale + + + + + + + Textbox38 + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Data Consegna + + + + + + + Textbox27 + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + =Fields!CodItem.Value + + + + + + + CodItem1 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!ItemDescr.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!RawMat.Value + + + + + + + RawMat + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!P_PriceOff.Value + + + + + + 2pt + 2pt + 2pt + 2pt + it-IT + + + + + + + + true + true + + + + + =Fields!BatchQty.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!P_PriceOff.Value * Fields!KgTeo.Value + + + + + + 2pt + 2pt + 2pt + 2pt + it-IT + + + + + + + + true + true + + + + + __ /__ /____ + + + + + + + Textbox28 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + + + + + + After + + + + + + + dsQuoteFull_Q_Data + 14.56063cm + 0.41689cm + 1.2cm + 17.98888cm + 1 + + + + + + true + true + + + + + =Fields!DescInco.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Di seguito le condizioni offerte + + + + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Oggetto: Offerta commerciale + + + + + =Fields!QuoteType.Value+"|"+CStr(Fields!CodQuote.Value)+"."+CStr(Fields!QuoteRev.Value) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + + ="Bergamo, " + FormatDateTime(Today(),DateFormat.ShortDate) + + + + + + + + + + =Fields!ClientName.Value + + + + + + + + + + + + + + + + + + + + =Fields!Cli_City.Value + + + + + + + + + + + =Fields!Cli_Nation.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + true + + + + + + + + + + 2.5cm + + + + + + + true + true + + + + + In Fede + + + + + + + + + + + + + + + + + + =Fields!Agente.Value + + + + + + + Textbox155 + 11.89981cm + 2.5cm + 5.64854cm + + + 2pt + 2pt + 2pt + 2pt + + + + true + + + + + + + + + + + + + + + + + + + + + =Fields!Key.Value + + + Between + + + + + =Fields!Key.Value + + + + + + + + + + dsQuoteFull_Q_Data + 0.00001cm + 21.88542cm + 18.9cm + + 0.25pt + + + + + 27cm + + + + + + + + + 2.15604cm + + + 4.10015cm + + + 1.91791cm + + + 2.28833cm + + + 1.97082cm + + + 2.76459cm + + + 2.79104cm + + + + + 0.6cm + + + + + true + true + + + + + Cod. Prod. + + + + + + + Textbox13 + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Descrizione + + + + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Lega + + + + + + + Textbox17 + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Prezzo/kg + + + + + + + Textbox23 + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Quantità + + + + + + + Textbox25 + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Totale + + + + + + + Textbox38 + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Data Consegna + + + + + + + Textbox27 + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + =Fields!CodItem.Value + + + + + + + CodItem1 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!ItemDescr.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!RawMat.Value + + + + + + + RawMat + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!P_PriceOff.Value + + + + + + 2pt + 2pt + 2pt + 2pt + it-IT + + + + + + + + true + true + + + + + =Fields!BatchQty.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!P_PriceOff.Value * Fields!KgTeo.Value + + + + + + 2pt + 2pt + 2pt + 2pt + it-IT + + + + + + + + true + true + + + + + __ /__ /____ + + + + + + + Textbox28 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + + + + + + After + + + + + + + dsQuoteFull_Q_Data + 14.56063cm + 0.41689cm + 1.2cm + 17.98888cm + 1 + + + + + + true + true + + + + + =Fields!DescInco.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Di seguito le condizioni offerte + + + + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Oggetto: Offerta commerciale + + + + + =Fields!QuoteType.Value+"|"+CStr(Fields!CodQuote.Value)+"."+CStr(Fields!QuoteRev.Value) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + + ="Bergamo, " + FormatDateTime(Today(),DateFormat.ShortDate) + + + + + + + + + + =Fields!ClientName.Value + + + + + + + + + + + + + + + + + + + + =Fields!Cli_City.Value + + + + + + + + + + + =Fields!Cli_Nation.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + true + + + + + + + + + + 2.5cm + + + + + + + true + true + + + + + In Fede + + + + + + + + + + + + + + + + + + =Fields!Agente.Value + + + + + + + Textbox155 + 11.89981cm + 2.5cm + 5.64854cm + + + 2pt + 2pt + 2pt + 2pt + + + + true + + + + + + + + + + + + + + + + + + + + + =Fields!Key.Value + + + Between + + + + + =Fields!Key.Value + + + + + + + + + + dsQuoteFull_Q_Data + 0.00001cm + 21.88542cm + 18.9cm + + 0.25pt + + + + + 27cm + + + + + + + + + 2.15604cm + + + 4.10015cm + + + 1.91791cm + + + 2.28833cm + + + 1.97082cm + + + 2.76459cm + + + 2.79104cm + + + + + 0.6cm + + + + + true + true + + + + + Cod. Prod. + + + + + + + Textbox13 + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Descrizione + + + + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Lega + + + + + + + Textbox17 + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Prezzo/kg + + + + + + + Textbox23 + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Quantità + + + + + + + Textbox25 + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Totale + + + + + + + Textbox38 + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Data Consegna + + + + + + + Textbox27 + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.6cm + + + + + true + true + + + + + =Fields!CodItem.Value + + + + + + + CodItem1 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!ItemDescr.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!RawMat.Value + + + + + + + RawMat + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!P_PriceOff.Value + + + + + + 2pt + 2pt + 2pt + 2pt + it-IT + + + + + + + + true + true + + + + + =Fields!BatchQty.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!P_PriceOff.Value * Fields!KgTeo.Value + + + + + + 2pt + 2pt + 2pt + 2pt + it-IT + + + + + + + + true + true + + + + + __ /__ /____ + + + + + + + Textbox28 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + + + + + + After + + + + + + + dsQuoteFull_Q_Data + 14.56063cm + 0.41689cm + 1.2cm + 17.98888cm + 1 + + + + + + true + true + + + + + =Fields!DescInco.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Di seguito le condizioni offerte + + + + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Oggetto: Offerta commerciale + + + + + =Fields!QuoteType.Value+"|"+CStr(Fields!CodQuote.Value)+"."+CStr(Fields!QuoteRev.Value) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + + ="Bergamo, " + FormatDateTime(Today(),DateFormat.ShortDate) + + + + + + + + + + =Fields!ClientName.Value + + + + + + + + + + + + + + + + + + + + =Fields!Cli_City.Value + + + + + + + + + + + =Fields!Cli_Nation.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + true + + + + + + + + + + 2.5cm + + + + + + + true + true + + + + + In Fede + + + + + + + + + + + + + + + + + + =Fields!Agente.Value + + + + + + + Textbox155 + 11.89981cm + 2.5cm + 5.64854cm + + + 2pt + 2pt + 2pt + 2pt + + + + true + + + + + + + + + + + + + + + + + + + + + =Fields!Key.Value + + + Between + + + + + =Fields!Key.Value + + + + + + + + + + dsQuoteFull_Q_Data + 0.00001cm + 21.88542cm + 18.9cm + + 0.25pt + + + + + 27cm +