Update cartellino (con descrizioni imballo, soggetto, stato)
Aggiunto nuovo installer git-svn-id: https://keyhammer.ath.cx/svn/GMW/trunk@61 365432ac-a1b5-4ffd-bb28-6d3099d32164
This commit is contained in:
+50
-31
@@ -16,33 +16,7 @@ namespace GMW.Type
|
||||
}
|
||||
public Cartellino(DS_Applicazione.ElencoCartelliniRow riga)
|
||||
{
|
||||
UDC = riga.UDC;
|
||||
CodCS = riga.CodCS;
|
||||
CodCliente = riga.CodCliente;
|
||||
RagSociale = riga.RagSociale;
|
||||
Particolare = riga.Particolare;
|
||||
DescParticolare = riga.DescParticolare;
|
||||
DisegnoGrezzo = riga.DisegnoGrezzo;
|
||||
Esponente = riga.Esponente;
|
||||
CodImpianto = riga.CodImpianto;
|
||||
DescImpianto = riga.DescImpianto;
|
||||
CodCliente = riga.CodCliente;
|
||||
CodStampo = riga.CodStampo;
|
||||
Figura = riga.Figura;
|
||||
DataFus = riga.DataFus;
|
||||
TurnoFus = riga.TurnoFus;
|
||||
CodImballo = riga.CodImballo;
|
||||
CodSoggetto = riga.CodSoggetto;
|
||||
NomeSoggetto = riga.CodSoggetto; // !!! correggere
|
||||
NumCont = riga.NumCont;
|
||||
Tara = riga.Tara;
|
||||
Quantita = riga.Qta;
|
||||
CodStato = riga.CodStato;
|
||||
IdxPosizione = riga.IdxPosizione;
|
||||
PesoTot = riga.PesoTot;
|
||||
PesoCad = riga.PesoCad;
|
||||
CreateDate = riga.CreateDate;
|
||||
ModDate = riga.ModDate;
|
||||
setFromTabRow(riga);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
@@ -102,17 +76,25 @@ namespace GMW.Type
|
||||
/// </summary>
|
||||
public int TurnoFus { get; set; }
|
||||
/// <summary>
|
||||
/// CodiceImballo associato all'UDC
|
||||
/// Codice Imballo associato all'UDC
|
||||
/// </summary>
|
||||
public string CodImballo { get; set; }
|
||||
/// <summary>
|
||||
/// Descrizione Imballo associato all'UDC
|
||||
/// </summary>
|
||||
public string DescImballo { get; set; }
|
||||
/// <summary>
|
||||
/// Codice operatore della dichiarazione
|
||||
/// </summary>
|
||||
public string CodSoggetto { get; set; }
|
||||
/// <summary>
|
||||
/// Cognome-nome operatore della dichiarazione
|
||||
/// Cognome operatore della dichiarazione
|
||||
/// </summary>
|
||||
public string NomeSoggetto { get; set; }
|
||||
public string Cognome { get; set; }
|
||||
/// <summary>
|
||||
/// Nome operatore della dichiarazione
|
||||
/// </summary>
|
||||
public string Nome { get; set; }
|
||||
/// <summary>
|
||||
/// Numero contenitore (PROGRESSIVO)
|
||||
/// </summary>
|
||||
@@ -130,6 +112,10 @@ namespace GMW.Type
|
||||
/// </summary>
|
||||
public string CodStato { get; set; }
|
||||
/// <summary>
|
||||
/// Descrizione Stato pezzo (sabbiato, smaterozzato, ...)
|
||||
/// </summary>
|
||||
public string DescStato { get; set; }
|
||||
/// <summary>
|
||||
/// Codice Posizione associato all'UDC
|
||||
/// </summary>
|
||||
public int IdxPosizione { get; set; }
|
||||
@@ -172,7 +158,6 @@ namespace GMW.Type
|
||||
TurnoFus = riga.TurnoFus;
|
||||
CodImballo = riga.CodImballo;
|
||||
CodSoggetto = riga.CodSoggetto;
|
||||
NomeSoggetto = riga.CodSoggetto; // !!! correggere
|
||||
NumCont = riga.NumCont;
|
||||
Tara = riga.Tara;
|
||||
Quantita = riga.Qta;
|
||||
@@ -182,6 +167,40 @@ namespace GMW.Type
|
||||
PesoCad = riga.PesoCad;
|
||||
CreateDate = riga.CreateDate;
|
||||
ModDate = riga.ModDate;
|
||||
// campi calcolati
|
||||
DS_Applicazione.AnagOperatoriRow rigaOper = GMW_data.DataProxy.obj.taAnagOperatore.getByCodSoggetto(riga.CodSoggetto)[0];
|
||||
try
|
||||
{
|
||||
Cognome = rigaOper.Cognome;
|
||||
}
|
||||
catch
|
||||
{
|
||||
Cognome = "n.d.";
|
||||
}
|
||||
try
|
||||
{
|
||||
Nome = rigaOper.Nome;
|
||||
}
|
||||
catch
|
||||
{
|
||||
Nome = "n.d.";
|
||||
}
|
||||
try
|
||||
{
|
||||
DescImballo = DataProxy.obj.taAnagImballi.stp_getImballoByCod(riga.CodImballo)[0].DescImballo;
|
||||
}
|
||||
catch
|
||||
{
|
||||
DescImballo = "n.d.";
|
||||
}
|
||||
try
|
||||
{
|
||||
DescStato = DataProxy.obj.taStatiProd.getByCodStato(riga.CodStato)[0].DescStato;
|
||||
}
|
||||
catch
|
||||
{
|
||||
DescStato = "n.d.";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+3
-3
@@ -87,8 +87,8 @@
|
||||
<add key="titleApp" value="GMW_titleApp" />
|
||||
<add key="welcomeApp" value="GMW_welcomeApp" />
|
||||
<add key="appName" value="GMW"/>
|
||||
<add key="mainRev" value="0.9"/>
|
||||
<add key="minRev" value="40"/>
|
||||
<add key="mainRev" value="1.0"/>
|
||||
<add key="minRev" value="50"/>
|
||||
<add key="copyRight" value="SteamWare © 2010"/>
|
||||
<add key="_allowForceUser" value="true" />
|
||||
<add key="_safePages" value="jumper.aspx#unauthorized.aspx#allegati.aspx#forceUser.aspx#login.aspx#test.aspx#istruzioni.aspx#Test.aspx"/>
|
||||
@@ -130,10 +130,10 @@
|
||||
<add key="passkey" value="pi=314"/>
|
||||
<add key="CodCS" value="MA"/>
|
||||
<add key="MinutiFinestraEditUDC" value="10"/>
|
||||
<add key="GMWConnectionString" value="Data Source=localhost\sql2008;Initial Catalog=GMW;Persist Security Info=True;User ID=sa;Password=keyhammer"/>
|
||||
<add key="_adminEmail" value="samuele@steamware.net" />
|
||||
<add key="_logDir" value="~/logs/" />
|
||||
<add key="_smtpCli" value="keyhammer.ath.cx" />
|
||||
<add key="GMWConnectionString" value="Data Source=localhost\sql2008;Initial Catalog=GMW;Persist Security Info=True;User ID=sa;Password=keyhammer"/>
|
||||
<add key="PermessiConnectionString" value="Data Source=localhost\sql2008;Initial Catalog=GMW;Persist Security Info=True;User ID=sa;Password=keyhammer" />
|
||||
<add key="UtenteCdcConnectionString" value="Data Source=localhost\sql2005;Initial Catalog=SteamWare_Anagrafica;Persist Security Info=True;User ID=sa;Password=keyhammer" />
|
||||
<add key="VocabolarioConnectionString" value="Data Source=localhost\sql2005;Initial Catalog=SteamWare_Vocabolario;Persist Security Info=True;User ID=sa;Password=keyhammer" />
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -5,8 +5,8 @@
|
||||
<add key="titleApp" value="GMW_titleApp" />
|
||||
<add key="welcomeApp" value="GMW_welcomeApp" />
|
||||
<add key="appName" value="GMW"/>
|
||||
<add key="mainRev" value="0.9"/>
|
||||
<add key="minRev" value="40"/>
|
||||
<add key="mainRev" value="1.0"/>
|
||||
<add key="minRev" value="50"/>
|
||||
<add key="copyRight" value="SteamWare © 2010"/>
|
||||
<add key="_allowForceUser" value="true" />
|
||||
<add key="_safePages" value="jumper.aspx#unauthorized.aspx#allegati.aspx#forceUser.aspx#login.aspx#test.aspx#istruzioni.aspx#Test.aspx"/>
|
||||
@@ -26,13 +26,13 @@
|
||||
<add key="urlWebServer" value="http://localhost/GMW/" />
|
||||
<!--Default values vari-->
|
||||
<add key="Max_X" value="850"/>
|
||||
<add key="Max_Y" value="1300"/>
|
||||
<add key="Max_Z" value="900"/>
|
||||
<add key="Max_Y" value="900"/>
|
||||
<add key="Max_Z" value="1300"/>
|
||||
<add key="Max_Kg" value="1000"/>
|
||||
<add key="NumX" value="10"/>
|
||||
<add key="NumY" value="5"/>
|
||||
<add key="NumZ" value="1"/>
|
||||
|
||||
|
||||
<!--Setup stampa-->
|
||||
<!--<add key="printerCartTara" value="Brother HL-4050CDN"/>-->
|
||||
<add key="printerCartTara" value="\\Vostro410\PDFCreator"/>
|
||||
@@ -48,11 +48,11 @@
|
||||
<add key="passkey" value="pi=314"/>
|
||||
<add key="CodCS" value="MA"/>
|
||||
<add key="MinutiFinestraEditUDC" value="10"/>
|
||||
<add key="GMWConnectionString" value="Data Source=localhost\sql2008;Initial Catalog=GMW;Persist Security Info=True;User ID=sa;Password=keyhammer"/>
|
||||
<add key="_adminEmail" value="samuele@steamware.net" />
|
||||
<add key="_logDir" value="~/logs/" />
|
||||
<add key="_smtpCli" value="keyhammer.ath.cx" />
|
||||
<add key="PermessiConnectionString" value="Data Source=localhost\sql2008;Initial Catalog=GMW;Persist Security Info=True;User ID=sa;Password=keyhammer" />
|
||||
<add key="UtenteCdcConnectionString" value="Data Source=localhost\sql2005;Initial Catalog=SteamWare_Anagrafica;Persist Security Info=True;User ID=sa;Password=keyhammer" />
|
||||
<add key="VocabolarioConnectionString" value="Data Source=localhost\sql2005;Initial Catalog=SteamWare_Vocabolario;Persist Security Info=True;User ID=sa;Password=keyhammer" />
|
||||
<add key="GMWConnectionString" value="Data Source=localhost;Initial Catalog=GMW;Persist Security Info=True;User ID=connGMW;Password=steamware"/>
|
||||
<add key="PermessiConnectionString" value="Data Source=localhost;Initial Catalog=GMW;Persist Security Info=True;User ID=connGMW;Password=steamware" />
|
||||
<add key="UtenteCdcConnectionString" value="Data Source=localhost;Initial Catalog=SteamWare_Anagrafica;Persist Security Info=True;User ID=connGMW;Password=steamware" />
|
||||
<add key="VocabolarioConnectionString" value="Data Source=localhost;Initial Catalog=SteamWare_Vocabolario;Persist Security Info=True;User ID=connGMW;Password=steamware" />
|
||||
</appSettings>
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -10,3 +10,23 @@ c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW\obj\Release\GMW.d
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW\obj\Release\GMW.pdb
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW\obj\Release\RdlCompile.cache
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW\obj\Release\RdlCompile.compiled
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW\bin\AjaxControlToolkit.dll
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW\bin\System.Web.Ajax.dll
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW\bin\System.Web.Ajax.pdb
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW\bin\AjaxControlToolkit.pdb
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW\bin\ar\AjaxControlToolkit.resources.dll
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW\bin\cs\AjaxControlToolkit.resources.dll
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW\bin\de\AjaxControlToolkit.resources.dll
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW\bin\es\AjaxControlToolkit.resources.dll
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW\bin\fr\AjaxControlToolkit.resources.dll
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW\bin\he\AjaxControlToolkit.resources.dll
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW\bin\hi\AjaxControlToolkit.resources.dll
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW\bin\it\AjaxControlToolkit.resources.dll
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW\bin\ja\AjaxControlToolkit.resources.dll
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW\bin\ko\AjaxControlToolkit.resources.dll
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW\bin\nl\AjaxControlToolkit.resources.dll
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW\bin\pt\AjaxControlToolkit.resources.dll
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW\bin\ru\AjaxControlToolkit.resources.dll
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW\bin\tr-TR\AjaxControlToolkit.resources.dll
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW\bin\zh-CHS\AjaxControlToolkit.resources.dll
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW\bin\zh-CHT\AjaxControlToolkit.resources.dll
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -1,7 +1,7 @@
|
||||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ProjectExtensions>
|
||||
<VisualStudio>
|
||||
<FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}" xmlns="">
|
||||
<FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
|
||||
<WebProjectProperties>
|
||||
<StartPageUrl>
|
||||
</StartPageUrl>
|
||||
|
||||
@@ -87,7 +87,7 @@
|
||||
<add key="titleApp" value="GMW_titleApp" />
|
||||
<add key="welcomeApp" value="GMW_welcomeApp" />
|
||||
<add key="appName" value="GMW"/>
|
||||
<add key="mainRev" value="0.9"/>
|
||||
<add key="mainRev" value="1.0"/>
|
||||
<add key="minRev" value="50"/>
|
||||
<add key="copyRight" value="SteamWare © 2010"/>
|
||||
<add key="_allowForceUser" value="true" />
|
||||
@@ -130,10 +130,10 @@
|
||||
<add key="passkey" value="pi=314"/>
|
||||
<add key="CodCS" value="MA"/>
|
||||
<add key="MinutiFinestraEditUDC" value="10"/>
|
||||
<add key="GMWConnectionString" value="Data Source=localhost\sql2008;Initial Catalog=GMW;Persist Security Info=True;User ID=sa;Password=keyhammer"/>
|
||||
<add key="_adminEmail" value="samuele@steamware.net" />
|
||||
<add key="_logDir" value="~/logs/" />
|
||||
<add key="_smtpCli" value="keyhammer.ath.cx" />
|
||||
<add key="GMWConnectionString" value="Data Source=localhost\sql2008;Initial Catalog=GMW;Persist Security Info=True;User ID=sa;Password=keyhammer"/>
|
||||
<add key="PermessiConnectionString" value="Data Source=localhost\sql2008;Initial Catalog=GMW;Persist Security Info=True;User ID=sa;Password=keyhammer" />
|
||||
<add key="UtenteCdcConnectionString" value="Data Source=localhost\sql2005;Initial Catalog=SteamWare_Anagrafica;Persist Security Info=True;User ID=sa;Password=keyhammer" />
|
||||
<add key="VocabolarioConnectionString" value="Data Source=localhost\sql2005;Initial Catalog=SteamWare_Vocabolario;Persist Security Info=True;User ID=sa;Password=keyhammer" />
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -5,8 +5,8 @@
|
||||
<add key="titleApp" value="GMW_titleApp" />
|
||||
<add key="welcomeApp" value="GMW_welcomeApp" />
|
||||
<add key="appName" value="GMW"/>
|
||||
<add key="mainRev" value="0.9"/>
|
||||
<add key="minRev" value="40"/>
|
||||
<add key="mainRev" value="1.0"/>
|
||||
<add key="minRev" value="50"/>
|
||||
<add key="copyRight" value="SteamWare © 2010"/>
|
||||
<add key="_allowForceUser" value="true" />
|
||||
<add key="_safePages" value="jumper.aspx#unauthorized.aspx#allegati.aspx#forceUser.aspx#login.aspx#test.aspx#istruzioni.aspx#Test.aspx"/>
|
||||
@@ -26,13 +26,13 @@
|
||||
<add key="urlWebServer" value="http://localhost/GMW/" />
|
||||
<!--Default values vari-->
|
||||
<add key="Max_X" value="850"/>
|
||||
<add key="Max_Y" value="1300"/>
|
||||
<add key="Max_Z" value="900"/>
|
||||
<add key="Max_Y" value="900"/>
|
||||
<add key="Max_Z" value="1300"/>
|
||||
<add key="Max_Kg" value="1000"/>
|
||||
<add key="NumX" value="10"/>
|
||||
<add key="NumY" value="5"/>
|
||||
<add key="NumZ" value="1"/>
|
||||
|
||||
|
||||
<!--Setup stampa-->
|
||||
<!--<add key="printerCartTara" value="Brother HL-4050CDN"/>-->
|
||||
<add key="printerCartTara" value="\\Vostro410\PDFCreator"/>
|
||||
@@ -48,11 +48,11 @@
|
||||
<add key="passkey" value="pi=314"/>
|
||||
<add key="CodCS" value="MA"/>
|
||||
<add key="MinutiFinestraEditUDC" value="10"/>
|
||||
<add key="GMWConnectionString" value="Data Source=localhost\sql2008;Initial Catalog=GMW;Persist Security Info=True;User ID=sa;Password=keyhammer"/>
|
||||
<add key="_adminEmail" value="samuele@steamware.net" />
|
||||
<add key="_logDir" value="~/logs/" />
|
||||
<add key="_smtpCli" value="keyhammer.ath.cx" />
|
||||
<add key="PermessiConnectionString" value="Data Source=localhost\sql2008;Initial Catalog=GMW;Persist Security Info=True;User ID=sa;Password=keyhammer" />
|
||||
<add key="UtenteCdcConnectionString" value="Data Source=localhost\sql2005;Initial Catalog=SteamWare_Anagrafica;Persist Security Info=True;User ID=sa;Password=keyhammer" />
|
||||
<add key="VocabolarioConnectionString" value="Data Source=localhost\sql2005;Initial Catalog=SteamWare_Vocabolario;Persist Security Info=True;User ID=sa;Password=keyhammer" />
|
||||
<add key="GMWConnectionString" value="Data Source=localhost;Initial Catalog=GMW;Persist Security Info=True;User ID=connGMW;Password=steamware"/>
|
||||
<add key="PermessiConnectionString" value="Data Source=localhost;Initial Catalog=GMW;Persist Security Info=True;User ID=connGMW;Password=steamware" />
|
||||
<add key="UtenteCdcConnectionString" value="Data Source=localhost;Initial Catalog=SteamWare_Anagrafica;Persist Security Info=True;User ID=connGMW;Password=steamware" />
|
||||
<add key="VocabolarioConnectionString" value="Data Source=localhost;Initial Catalog=SteamWare_Vocabolario;Persist Security Info=True;User ID=connGMW;Password=steamware" />
|
||||
</appSettings>
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,32 @@
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW_WS\bin\GMW_WS.dll
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW_WS\bin\GMW_WS.pdb
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW_WS\bin\GMW.dll
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW_WS\bin\GMW_data.dll
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW_WS\bin\SteamWare.dll
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW_WS\bin\System.Web.Ajax.dll
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW_WS\bin\AjaxControlToolkit.dll
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW_WS\bin\ICSharpCode.SharpZipLib.dll
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW_WS\bin\System.Web.Ajax.pdb
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW_WS\bin\AjaxControlToolkit.pdb
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW_WS\bin\GMW_data.pdb
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW_WS\bin\SteamWare.pdb
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW_WS\bin\GMW.pdb
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW_WS\bin\ar\AjaxControlToolkit.resources.dll
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW_WS\bin\cs\AjaxControlToolkit.resources.dll
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW_WS\bin\de\AjaxControlToolkit.resources.dll
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW_WS\bin\es\AjaxControlToolkit.resources.dll
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW_WS\bin\fr\AjaxControlToolkit.resources.dll
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW_WS\bin\he\AjaxControlToolkit.resources.dll
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW_WS\bin\hi\AjaxControlToolkit.resources.dll
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW_WS\bin\it\AjaxControlToolkit.resources.dll
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW_WS\bin\ja\AjaxControlToolkit.resources.dll
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW_WS\bin\ko\AjaxControlToolkit.resources.dll
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW_WS\bin\nl\AjaxControlToolkit.resources.dll
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW_WS\bin\pt\AjaxControlToolkit.resources.dll
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW_WS\bin\ru\AjaxControlToolkit.resources.dll
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW_WS\bin\tr-TR\AjaxControlToolkit.resources.dll
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW_WS\bin\zh-CHS\AjaxControlToolkit.resources.dll
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW_WS\bin\zh-CHT\AjaxControlToolkit.resources.dll
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW_WS\obj\Release\ResolveAssemblyReference.cache
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW_WS\obj\Release\GMW_WS.dll
|
||||
c:\Users\samuele\Documents\Visual Studio 2008\Projects\GMW\GMW_WS\obj\Release\GMW_WS.pdb
|
||||
Binary file not shown.
Binary file not shown.
@@ -32,6 +32,10 @@
|
||||
<EnableUpdateable>true</EnableUpdateable>
|
||||
<UseMerge>true</UseMerge>
|
||||
<SingleAssemblyName>GMW_WS_deploy</SingleAssemblyName>
|
||||
<UseWebConfigReplacement>true</UseWebConfigReplacement>
|
||||
<ValidateWebConfigReplacement>true</ValidateWebConfigReplacement>
|
||||
<DeleteAppDataFolder>true</DeleteAppDataFolder>
|
||||
<DeleteAppCodeCompiledFiles>true</DeleteAppCodeCompiledFiles>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
</ItemGroup>
|
||||
|
||||
@@ -104,6 +104,27 @@
|
||||
"PrivateKeyFile" = "8:"
|
||||
"TimeStampServer" = "8:"
|
||||
"InstallerBootstrapper" = "3:2"
|
||||
"BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}"
|
||||
{
|
||||
"Enabled" = "11:TRUE"
|
||||
"PromptEnabled" = "11:TRUE"
|
||||
"PrerequisitesLocation" = "2:1"
|
||||
"Url" = "8:"
|
||||
"ComponentsUrl" = "8:"
|
||||
"Items"
|
||||
{
|
||||
"{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:Microsoft.Net.Framework.3.5.SP1"
|
||||
{
|
||||
"Name" = "8:.NET Framework 3.5 SP1"
|
||||
"ProductCode" = "8:Microsoft.Net.Framework.3.5.SP1"
|
||||
}
|
||||
"{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:Microsoft.Windows.Installer.3.1"
|
||||
{
|
||||
"Name" = "8:Windows Installer 3.1"
|
||||
"ProductCode" = "8:Microsoft.Windows.Installer.3.1"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
"Deployable"
|
||||
@@ -214,7 +235,7 @@
|
||||
{
|
||||
"{80453C8E-1031-40EC-8E7A-9762B297303A}:_B61BA0CAC3474474B971A8F12A1C93F2"
|
||||
{
|
||||
"VirtualDirectory" = "8:GMW_WS_installer"
|
||||
"VirtualDirectory" = "8:GMW_WS"
|
||||
"Port" = "3:80"
|
||||
"IsApplication" = "11:TRUE"
|
||||
"AllowScriptSourceAccess" = "11:FALSE"
|
||||
@@ -322,24 +343,24 @@
|
||||
"Product"
|
||||
{
|
||||
"Name" = "8:Microsoft Visual Studio"
|
||||
"ProductName" = "8:GMW_WS_installer"
|
||||
"ProductCode" = "8:{4E0C6BD2-9309-4558-940E-173F2C311CE2}"
|
||||
"PackageCode" = "8:{FB7E213C-7BE9-4294-9FB2-733E8D6C3660}"
|
||||
"ProductName" = "8:GMW_WS"
|
||||
"ProductCode" = "8:{E33824F7-D5DE-4EA9-A07D-D97E233DF9B0}"
|
||||
"PackageCode" = "8:{47E710A1-2368-40F1-AE1C-4A9F293016F9}"
|
||||
"UpgradeCode" = "8:{BA470335-3D4B-4C20-8152-90A5F0F14FE0}"
|
||||
"RestartWWWService" = "11:FALSE"
|
||||
"RemovePreviousVersions" = "11:FALSE"
|
||||
"RestartWWWService" = "11:TRUE"
|
||||
"RemovePreviousVersions" = "11:TRUE"
|
||||
"DetectNewerInstalledVersion" = "11:TRUE"
|
||||
"InstallAllUsers" = "11:FALSE"
|
||||
"ProductVersion" = "8:1.0.0"
|
||||
"Manufacturer" = "8:Microsoft"
|
||||
"ARPHELPTELEPHONE" = "8:"
|
||||
"ARPHELPLINK" = "8:"
|
||||
"Title" = "8:GMW_WS_installer"
|
||||
"ProductVersion" = "8:1.0.50"
|
||||
"Manufacturer" = "8:SteamWare s.r.l."
|
||||
"ARPHELPTELEPHONE" = "8:+39-035460560"
|
||||
"ARPHELPLINK" = "8:http://www.steamware.net"
|
||||
"Title" = "8:GMW_WS Installer"
|
||||
"Subject" = "8:"
|
||||
"ARPCONTACT" = "8:Microsoft"
|
||||
"ARPCONTACT" = "8:SteamWare s.r.l."
|
||||
"Keywords" = "8:"
|
||||
"ARPCOMMENTS" = "8:"
|
||||
"ARPURLINFOABOUT" = "8:"
|
||||
"ARPCOMMENTS" = "8:WebServices per Gestione Magazzino web"
|
||||
"ARPURLINFOABOUT" = "8:http://www.steamware.net"
|
||||
"ARPPRODUCTICON" = "8:"
|
||||
"ARPIconIndex" = "3:0"
|
||||
"SearchPath" = "8:"
|
||||
@@ -803,7 +824,7 @@
|
||||
}
|
||||
"{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_C1E28C0CBEB3498E83D9B97B28568D55"
|
||||
{
|
||||
"SourcePath" = "8:..\\..\\IISCustomActionVB\\IISConsoleVB\\obj\\Debug\\IISConsoleVB.exe"
|
||||
"SourcePath" = "8:..\\..\\IISCustomActionVB\\IISConsoleVB\\obj\\Release\\IISConsoleVB.exe"
|
||||
"TargetName" = "8:"
|
||||
"Tag" = "8:"
|
||||
"Folder" = "8:_B61BA0CAC3474474B971A8F12A1C93F2"
|
||||
@@ -831,7 +852,7 @@
|
||||
}
|
||||
"{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_D67ABEB91C7F428EB3C512E4A505628A"
|
||||
{
|
||||
"SourcePath" = "8:..\\..\\SetDirectoryPermission\\obj\\Debug\\SetDirectoryPermission.exe"
|
||||
"SourcePath" = "8:..\\..\\SetDirectoryPermission\\obj\\Release\\SetDirectoryPermission.exe"
|
||||
"TargetName" = "8:"
|
||||
"Tag" = "8:"
|
||||
"Folder" = "8:_B61BA0CAC3474474B971A8F12A1C93F2"
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Generated
+46
-2
@@ -10798,11 +10798,16 @@ SELECT CodStato, DescStato FROM AnagStatiProdotto WHERE (CodStato = @CodStato)";
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
private void InitCommandCollection() {
|
||||
this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
|
||||
this._commandCollection = new global::System.Data.SqlClient.SqlCommand[2];
|
||||
this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
|
||||
this._commandCollection[0].Connection = this.Connection;
|
||||
this._commandCollection[0].CommandText = "SELECT CodStato, DescStato FROM dbo.AnagStatiProdotto";
|
||||
this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
|
||||
this._commandCollection[1] = new global::System.Data.SqlClient.SqlCommand();
|
||||
this._commandCollection[1].Connection = this.Connection;
|
||||
this._commandCollection[1].CommandText = "SELECT CodStato, DescStato FROM dbo.AnagStatiProdotto\r\nwhere CodStato=@CodStato";
|
||||
this._commandCollection[1].CommandType = global::System.Data.CommandType.Text;
|
||||
this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodStato", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, "CodStato", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
@@ -10827,6 +10832,22 @@ SELECT CodStato, DescStato FROM AnagStatiProdotto WHERE (CodStato = @CodStato)";
|
||||
return dataTable;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
|
||||
[global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, false)]
|
||||
public virtual DS_Applicazione.AnagStatiProdottoDataTable getByCodStato(string CodStato) {
|
||||
this.Adapter.SelectCommand = this.CommandCollection[1];
|
||||
if ((CodStato == null)) {
|
||||
throw new global::System.ArgumentNullException("CodStato");
|
||||
}
|
||||
else {
|
||||
this.Adapter.SelectCommand.Parameters[0].Value = ((string)(CodStato));
|
||||
}
|
||||
DS_Applicazione.AnagStatiProdottoDataTable dataTable = new DS_Applicazione.AnagStatiProdottoDataTable();
|
||||
this.Adapter.Fill(dataTable);
|
||||
return dataTable;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
|
||||
public virtual int Update(DS_Applicazione.AnagStatiProdottoDataTable dataTable) {
|
||||
@@ -17097,12 +17118,19 @@ SELECT CodSoggetto, CodCS, CodDipendente, CodAziendaOp, DescAziendaOp, CodFilial
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
private void InitCommandCollection() {
|
||||
this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
|
||||
this._commandCollection = new global::System.Data.SqlClient.SqlCommand[2];
|
||||
this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
|
||||
this._commandCollection[0].Connection = this.Connection;
|
||||
this._commandCollection[0].CommandText = "SELECT CodSoggetto, CodCS, CodDipendente, CodAziendaOp, DescAziendaOp, CodFiliale" +
|
||||
"Op, DescFilialeOp, Cognome, Nome FROM RilPro.AnagOperatori";
|
||||
this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
|
||||
this._commandCollection[1] = new global::System.Data.SqlClient.SqlCommand();
|
||||
this._commandCollection[1].Connection = this.Connection;
|
||||
this._commandCollection[1].CommandText = "SELECT CodSoggetto, CodCS, CodDipendente, CodAziendaOp, DescAziendaOp, Cod" +
|
||||
"FilialeOp, DescFilialeOp, Cognome, Nome\r\nFROM RilPro.AnagOperatori\r\nW" +
|
||||
"HERE (CodSoggetto = @CodSoggetto)";
|
||||
this._commandCollection[1].CommandType = global::System.Data.CommandType.Text;
|
||||
this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodSoggetto", global::System.Data.SqlDbType.NChar, 16, global::System.Data.ParameterDirection.Input, 0, 0, "CodSoggetto", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
@@ -17127,6 +17155,22 @@ SELECT CodSoggetto, CodCS, CodDipendente, CodAziendaOp, DescAziendaOp, CodFilial
|
||||
return dataTable;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
|
||||
[global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, false)]
|
||||
public virtual DS_Applicazione.AnagOperatoriDataTable getByCodSoggetto(string CodSoggetto) {
|
||||
this.Adapter.SelectCommand = this.CommandCollection[1];
|
||||
if ((CodSoggetto == null)) {
|
||||
throw new global::System.ArgumentNullException("CodSoggetto");
|
||||
}
|
||||
else {
|
||||
this.Adapter.SelectCommand.Parameters[0].Value = ((string)(CodSoggetto));
|
||||
}
|
||||
DS_Applicazione.AnagOperatoriDataTable dataTable = new DS_Applicazione.AnagOperatoriDataTable();
|
||||
this.Adapter.Fill(dataTable);
|
||||
return dataTable;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
|
||||
public virtual int Update(DS_Applicazione.AnagOperatoriDataTable dataTable) {
|
||||
|
||||
@@ -155,7 +155,19 @@ SELECT CodStato, DescStato FROM AnagStatiProdotto WHERE (CodStato = @CodStato)</
|
||||
<Mapping SourceColumn="CodStato" DataSetColumn="CodStato" />
|
||||
<Mapping SourceColumn="DescStato" DataSetColumn="DescStato" />
|
||||
</Mappings>
|
||||
<Sources />
|
||||
<Sources>
|
||||
<DbSource ConnectionRef="GMWConnectionString (Settings)" DbObjectName="GMW.dbo.AnagStatiProdotto" DbObjectType="Table" GenerateMethods="Get" GenerateShortCommands="true" GeneratorGetMethodName="getByCodStato" GetMethodModifier="Public" GetMethodName="getByCodStato" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="getByCodStato" UserSourceName="getByCodStato">
|
||||
<SelectCommand>
|
||||
<DbCommand CommandType="Text" ModifiedByUser="true">
|
||||
<CommandText>SELECT CodStato, DescStato FROM dbo.AnagStatiProdotto
|
||||
where CodStato=@CodStato</CommandText>
|
||||
<Parameters>
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="CodStato" ColumnName="CodStato" DataSourceName="GMW.dbo.AnagStatiProdotto" DataTypeServer="nvarchar(50)" DbType="String" Direction="Input" ParameterName="@CodStato" Precision="0" ProviderType="NVarChar" Scale="0" Size="50" SourceColumn="CodStato" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
</Parameters>
|
||||
</DbCommand>
|
||||
</SelectCommand>
|
||||
</DbSource>
|
||||
</Sources>
|
||||
</TableAdapter>
|
||||
<TableAdapter BaseClass="System.ComponentModel.Component" DataAccessorModifier="AutoLayout, AnsiClass, Class, Public" DataAccessorName="AnagArticoliTableAdapter" GeneratorDataComponentClassName="AnagArticoliTableAdapter" Name="AnagArticoli" UserDataComponentName="AnagArticoliTableAdapter">
|
||||
<MainSource>
|
||||
@@ -1303,7 +1315,20 @@ SELECT CodSoggetto, CodCS, CodDipendente, CodAziendaOp, DescAziendaOp, CodFilial
|
||||
<Mapping SourceColumn="Cognome" DataSetColumn="Cognome" />
|
||||
<Mapping SourceColumn="Nome" DataSetColumn="Nome" />
|
||||
</Mappings>
|
||||
<Sources />
|
||||
<Sources>
|
||||
<DbSource ConnectionRef="GMWConnectionString (Settings)" DbObjectName="GMW.RilPro.AnagOperatori" DbObjectType="Table" GenerateMethods="Get" GenerateShortCommands="true" GeneratorGetMethodName="getByCodSoggetto" GetMethodModifier="Public" GetMethodName="getByCodSoggetto" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="getByCodSoggetto" UserSourceName="getByCodSoggetto">
|
||||
<SelectCommand>
|
||||
<DbCommand CommandType="Text" ModifiedByUser="true">
|
||||
<CommandText>SELECT CodSoggetto, CodCS, CodDipendente, CodAziendaOp, DescAziendaOp, CodFilialeOp, DescFilialeOp, Cognome, Nome
|
||||
FROM RilPro.AnagOperatori
|
||||
WHERE (CodSoggetto = @CodSoggetto)</CommandText>
|
||||
<Parameters>
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="CodSoggetto" ColumnName="CodSoggetto" DataSourceName="GMW.RilPro.AnagOperatori" DataTypeServer="nchar(16)" DbType="String" Direction="Input" ParameterName="@CodSoggetto" Precision="0" ProviderType="NChar" Scale="0" Size="16" SourceColumn="CodSoggetto" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
</Parameters>
|
||||
</DbCommand>
|
||||
</SelectCommand>
|
||||
</DbSource>
|
||||
</Sources>
|
||||
</TableAdapter>
|
||||
<TableAdapter BaseClass="System.ComponentModel.Component" DataAccessorModifier="AutoLayout, AnsiClass, Class, Public" DataAccessorName="AnagClientiTableAdapter" GeneratorDataComponentClassName="AnagClientiTableAdapter" Name="AnagClienti" UserDataComponentName="AnagClientiTableAdapter">
|
||||
<MainSource>
|
||||
@@ -2095,7 +2120,7 @@ SELECT CodCliente, RagSociale FROM RilPro.AnagClienti WHERE (CodCliente = @CodCl
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="stp_prtCartByUDC" msprop:Generator_UserTableName="stp_prtCartByUDC" msprop:Generator_RowDeletedName="stp_prtCartByUDCRowDeleted" msprop:Generator_TableClassName="stp_prtCartByUDCDataTable" msprop:Generator_RowChangedName="stp_prtCartByUDCRowChanged" msprop:Generator_RowClassName="stp_prtCartByUDCRow" msprop:Generator_RowChangingName="stp_prtCartByUDCRowChanging" msprop:Generator_RowEvArgName="stp_prtCartByUDCRowChangeEvent" msprop:Generator_RowEvHandlerName="stp_prtCartByUDCRowChangeEventHandler" msprop:Generator_TablePropName="stp_prtCartByUDC" msprop:Generator_TableVarName="tablestp_prtCartByUDC" msprop:Generator_RowDeletingName="stp_prtCartByUDCRowDeleting">
|
||||
<xs:element name="stp_prtCartByUDC" msprop:Generator_UserTableName="stp_prtCartByUDC" msprop:Generator_RowDeletedName="stp_prtCartByUDCRowDeleted" msprop:Generator_RowChangedName="stp_prtCartByUDCRowChanged" msprop:Generator_RowClassName="stp_prtCartByUDCRow" msprop:Generator_RowChangingName="stp_prtCartByUDCRowChanging" msprop:Generator_RowEvArgName="stp_prtCartByUDCRowChangeEvent" msprop:Generator_RowEvHandlerName="stp_prtCartByUDCRowChangeEventHandler" msprop:Generator_TableClassName="stp_prtCartByUDCDataTable" msprop:Generator_TableVarName="tablestp_prtCartByUDC" msprop:Generator_RowDeletingName="stp_prtCartByUDCRowDeleting" msprop:Generator_TablePropName="stp_prtCartByUDC">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="UDC" msprop:Generator_UserColumnName="UDC" msprop:Generator_ColumnPropNameInRow="UDC" msprop:Generator_ColumnVarNameInTable="columnUDC" msprop:Generator_ColumnPropNameInTable="UDCColumn">
|
||||
|
||||
@@ -4,27 +4,27 @@
|
||||
Changes to this file may cause incorrect behavior and will be lost if
|
||||
the code is regenerated.
|
||||
</autogenerated>-->
|
||||
<DiagramLayout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" ex:showrelationlabel="False" ViewPortX="-10" ViewPortY="356" xmlns:ex="urn:schemas-microsoft-com:xml-msdatasource-layout-extended" xmlns="urn:schemas-microsoft-com:xml-msdatasource-layout">
|
||||
<DiagramLayout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" ex:showrelationlabel="False" ViewPortX="-10" ViewPortY="-47" xmlns:ex="urn:schemas-microsoft-com:xml-msdatasource-layout-extended" xmlns="urn:schemas-microsoft-com:xml-msdatasource-layout">
|
||||
<Shapes>
|
||||
<Shape ID="DesignTable:AnagStati" ZOrder="23" X="867" Y="533" Height="115" Width="201" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
|
||||
<Shape ID="DesignTable:AnagTipoDichiaraz" ZOrder="16" X="785" Y="654" Height="115" Width="254" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
|
||||
<Shape ID="DesignTable:AnagStatiProdotto" ZOrder="22" X="99" Y="722" Height="115" Width="254" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
|
||||
<Shape ID="DesignTable:AnagArticoli" ZOrder="21" X="168" Y="43" Height="153" Width="217" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="102" />
|
||||
<Shape ID="DesignTable:Impianti2Articoli" ZOrder="20" X="489" Y="35" Height="248" Width="254" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="159" />
|
||||
<Shape ID="DesignTable:StoricoEventi" ZOrder="18" X="855" Y="777" Height="305" Width="221" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
|
||||
<Shape ID="DesignTable:RelazUDC" ZOrder="15" X="27" Y="249" Height="153" Width="201" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
|
||||
<Shape ID="DesignTable:AnagImpianti" ZOrder="12" X="853" Y="19" Height="191" Width="224" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="121" />
|
||||
<Shape ID="DesignTable:AnagCompanySito" ZOrder="11" X="1156" Y="-8" Height="172" Width="253" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="121" />
|
||||
<Shape ID="DesignTable:AnagBilance" ZOrder="10" X="1261" Y="306" Height="172" Width="227" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="83" />
|
||||
<Shape ID="DesignTable:ElencoCartellini" ZOrder="2" X="462" Y="346" Height="381" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
|
||||
<Shape ID="DesignTable:AnagImballi" ZOrder="7" X="72" Y="488" Height="153" Width="225" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="83" />
|
||||
<Shape ID="DesignTable:v_ArtInProd" ZOrder="6" X="1209" Y="588" Height="324" Width="254" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
|
||||
<Shape ID="DesignTable:AnagOperatori" ZOrder="5" X="488" Y="821" Height="248" Width="231" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="197" />
|
||||
<Shape ID="DesignTable:AnagClienti" ZOrder="3" X="240" Y="910" Height="115" Width="212" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
|
||||
<Shape ID="DesignTable:stp_prtCartByUDC" ZOrder="1" X="20" Y="1044" Height="305" Width="249" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
|
||||
<Shape ID="DesignTable:AnagTipoDichiaraz" ZOrder="17" X="785" Y="654" Height="115" Width="254" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
|
||||
<Shape ID="DesignTable:AnagStatiProdotto" ZOrder="1" X="157" Y="722" Height="134" Width="196" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
|
||||
<Shape ID="DesignTable:AnagArticoli" ZOrder="22" X="168" Y="43" Height="153" Width="217" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="102" />
|
||||
<Shape ID="DesignTable:Impianti2Articoli" ZOrder="21" X="489" Y="35" Height="248" Width="254" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="159" />
|
||||
<Shape ID="DesignTable:StoricoEventi" ZOrder="19" X="855" Y="777" Height="305" Width="221" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
|
||||
<Shape ID="DesignTable:RelazUDC" ZOrder="16" X="27" Y="249" Height="153" Width="201" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
|
||||
<Shape ID="DesignTable:AnagImpianti" ZOrder="13" X="853" Y="19" Height="191" Width="224" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="121" />
|
||||
<Shape ID="DesignTable:AnagCompanySito" ZOrder="12" X="1156" Y="-8" Height="172" Width="253" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="121" />
|
||||
<Shape ID="DesignTable:AnagBilance" ZOrder="11" X="1261" Y="306" Height="172" Width="227" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="83" />
|
||||
<Shape ID="DesignTable:ElencoCartellini" ZOrder="3" X="462" Y="346" Height="381" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
|
||||
<Shape ID="DesignTable:AnagImballi" ZOrder="8" X="72" Y="488" Height="153" Width="225" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="83" />
|
||||
<Shape ID="DesignTable:v_ArtInProd" ZOrder="7" X="1209" Y="588" Height="324" Width="254" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
|
||||
<Shape ID="DesignTable:AnagOperatori" ZOrder="6" X="488" Y="821" Height="267" Width="237" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="197" />
|
||||
<Shape ID="DesignTable:AnagClienti" ZOrder="4" X="240" Y="910" Height="115" Width="212" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
|
||||
<Shape ID="DesignTable:stp_prtCartByUDC" ZOrder="2" X="20" Y="1044" Height="305" Width="249" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
|
||||
</Shapes>
|
||||
<Connectors>
|
||||
<Connector ID="DesignRelation:FK_Impianti2Articoli_AnagArticoli1" ZOrder="19" LineWidth="11">
|
||||
<Connector ID="DesignRelation:FK_Impianti2Articoli_AnagArticoli1" ZOrder="20" LineWidth="11">
|
||||
<RoutePoints>
|
||||
<Point>
|
||||
<X>385</X>
|
||||
@@ -36,7 +36,7 @@
|
||||
</Point>
|
||||
</RoutePoints>
|
||||
</Connector>
|
||||
<Connector ID="DesignRelation:FK_StoricoEventi_AnagTipoDichiaraz" ZOrder="17" LineWidth="11">
|
||||
<Connector ID="DesignRelation:FK_StoricoEventi_AnagTipoDichiaraz" ZOrder="18" LineWidth="11">
|
||||
<RoutePoints>
|
||||
<Point>
|
||||
<X>947</X>
|
||||
@@ -48,7 +48,7 @@
|
||||
</Point>
|
||||
</RoutePoints>
|
||||
</Connector>
|
||||
<Connector ID="DesignRelation:FK_Impianti2Articoli_AnagImpianti" ZOrder="14" LineWidth="11">
|
||||
<Connector ID="DesignRelation:FK_Impianti2Articoli_AnagImpianti" ZOrder="15" LineWidth="11">
|
||||
<RoutePoints>
|
||||
<Point>
|
||||
<X>853</X>
|
||||
@@ -60,7 +60,7 @@
|
||||
</Point>
|
||||
</RoutePoints>
|
||||
</Connector>
|
||||
<Connector ID="DesignRelation:FK_AnagImpianti_AnagCompanySito" ZOrder="13" LineWidth="11">
|
||||
<Connector ID="DesignRelation:FK_AnagImpianti_AnagCompanySito" ZOrder="14" LineWidth="11">
|
||||
<RoutePoints>
|
||||
<Point>
|
||||
<X>1156</X>
|
||||
@@ -72,7 +72,7 @@
|
||||
</Point>
|
||||
</RoutePoints>
|
||||
</Connector>
|
||||
<Connector ID="DesignRelation:FK_ElencoCartellini_AnagCompanySito" ZOrder="9" LineWidth="11">
|
||||
<Connector ID="DesignRelation:FK_ElencoCartellini_AnagCompanySito" ZOrder="10" LineWidth="11">
|
||||
<RoutePoints>
|
||||
<Point>
|
||||
<X>1173</X>
|
||||
@@ -88,7 +88,7 @@
|
||||
</Point>
|
||||
</RoutePoints>
|
||||
</Connector>
|
||||
<Connector ID="DesignRelation:FK_ElencoCartellini_AnagStatiProdotto" ZOrder="8" LineWidth="11">
|
||||
<Connector ID="DesignRelation:FK_ElencoCartellini_AnagStatiProdotto" ZOrder="9" LineWidth="11">
|
||||
<RoutePoints>
|
||||
<Point>
|
||||
<X>336</X>
|
||||
@@ -104,7 +104,7 @@
|
||||
</Point>
|
||||
</RoutePoints>
|
||||
</Connector>
|
||||
<Connector ID="DesignRelation:FK_AnagOperatori_AnagCompanySito" ZOrder="4" LineWidth="11">
|
||||
<Connector ID="DesignRelation:FK_AnagOperatori_AnagCompanySito" ZOrder="5" LineWidth="11">
|
||||
<RoutePoints>
|
||||
<Point>
|
||||
<X>1181</X>
|
||||
@@ -115,7 +115,7 @@
|
||||
<Y>838</Y>
|
||||
</Point>
|
||||
<Point>
|
||||
<X>719</X>
|
||||
<X>725</X>
|
||||
<Y>838</Y>
|
||||
</Point>
|
||||
</RoutePoints>
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user