Modifica metodi x nuovo oggetto cartellino
Update DB git-svn-id: https://keyhammer.ath.cx/svn/GMW/trunk@26 365432ac-a1b5-4ffd-bb28-6d3099d32164
This commit is contained in:
@@ -15,8 +15,7 @@ namespace GMW.Type
|
||||
{
|
||||
CodBilancia = riga.CodBilancia;
|
||||
DescrBilancia = riga.DescrImpianto;
|
||||
CodCompany = riga.CodCompany;
|
||||
CodSito = riga.CodSito;
|
||||
CodCS = riga.CodCS;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
@@ -28,13 +27,9 @@ namespace GMW.Type
|
||||
/// </summary>
|
||||
public string DescrBilancia { get; set; }
|
||||
/// <summary>
|
||||
/// Codice COmpany
|
||||
/// Codice Company/Sito
|
||||
/// </summary>
|
||||
public string CodCompany { get; set; }
|
||||
/// <summary>
|
||||
/// Codice sito
|
||||
/// </summary>
|
||||
public string CodSito { get; set; }
|
||||
public string CodCS { get; set; }
|
||||
/// <summary>
|
||||
/// inizializza a partire da una riga bilancia tipizzata
|
||||
/// </summary>
|
||||
@@ -43,8 +38,7 @@ namespace GMW.Type
|
||||
{
|
||||
CodBilancia = riga.CodBilancia;
|
||||
DescrBilancia = riga.DescrImpianto;
|
||||
CodCompany = riga.CodCompany;
|
||||
CodSito = riga.CodSito;
|
||||
CodCS = riga.CodCS;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+116
-54
@@ -9,70 +9,81 @@ namespace GMW.Type
|
||||
/// <summary>
|
||||
/// classe che rappresenta l'intero UDC
|
||||
/// </summary>
|
||||
public class UDC
|
||||
public class Cartellino
|
||||
{
|
||||
public UDC()
|
||||
public Cartellino()
|
||||
{
|
||||
}
|
||||
public UDC(DS_Applicazione.TabCartelliniRow riga)
|
||||
public Cartellino(DS_Applicazione.ElencoCartelliniRow riga)
|
||||
{
|
||||
CodCompany = riga.CodCompany;
|
||||
ODP = riga.ODP;
|
||||
UDC_code = riga.UDC;
|
||||
Tara = riga.Tara;
|
||||
IdxStato = riga.IdxStato;
|
||||
Qta = riga.Qta;
|
||||
CodImballo = riga.CodImballo;
|
||||
CodImpianto = riga.CodImpianto;
|
||||
Particolare = riga.Particolare;
|
||||
CodStato = riga.CodStato;
|
||||
CodStampo = riga.CodStampo;
|
||||
Figura = riga.Figura;
|
||||
FiguraIncisa = riga.FiguraIncisa;
|
||||
CreateDate = riga.CreateDate;
|
||||
ModDate = riga.ModDate;
|
||||
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;
|
||||
NumCont = riga.NumCont;
|
||||
Tara = riga.Tara;
|
||||
Qta = riga.Qta;
|
||||
CodStato = riga.CodStato;
|
||||
IdxPosizione = riga.IdxPosizione;
|
||||
PesoTot = riga.PesoTot;
|
||||
PesoCad = riga.PesoCad;
|
||||
CreateDate = riga.CreateDate;
|
||||
ModDate = riga.ModDate;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Codice company
|
||||
/// </summary>
|
||||
public string CodCompany { get; set; }
|
||||
/// <summary>
|
||||
/// Codice ODP
|
||||
/// </summary>
|
||||
public string ODP { get; set; }
|
||||
/// <summary>
|
||||
/// Codice UDC
|
||||
/// </summary>
|
||||
public string UDC_code { get; set; }
|
||||
public string UDC { get; set; }
|
||||
/// <summary>
|
||||
/// Tara dell'UDC
|
||||
/// Codice company
|
||||
/// </summary>
|
||||
public double Tara { get; set; }
|
||||
public string CodCS { get; set; }
|
||||
/// <summary>
|
||||
/// stato associato all'UDC
|
||||
/// Codice Cliente
|
||||
/// </summary>
|
||||
public int IdxStato { get; set; }
|
||||
public string CodCliente { get; set; }
|
||||
/// <summary>
|
||||
/// Quantità associata all'UDC
|
||||
/// Ragione sociale cliente
|
||||
/// </summary>
|
||||
public decimal Qta { get; set; }
|
||||
public string RagSociale { get; set; }
|
||||
/// <summary>
|
||||
/// CodiceImballo associato all'UDC
|
||||
/// Particolare
|
||||
/// </summary>
|
||||
public string CodImballo { get; set; }
|
||||
public string Particolare { get; set; }
|
||||
/// <summary>
|
||||
/// Descrizione particolare
|
||||
/// </summary>
|
||||
public string DescParticolare { get; set; }
|
||||
/// <summary>
|
||||
/// Disegno Grezzo
|
||||
/// </summary>
|
||||
public string DisegnoGrezzo { get; set; }
|
||||
/// <summary>
|
||||
/// Esponente
|
||||
/// </summary>
|
||||
public string Esponente { get; set; }
|
||||
/// <summary>
|
||||
/// Codice impianto
|
||||
/// </summary>
|
||||
public string CodImpianto { get; set; }
|
||||
/// <summary>
|
||||
/// Codice Articolo
|
||||
/// Descrizione impianto
|
||||
/// </summary>
|
||||
public string Particolare { get; set; }
|
||||
/// <summary>
|
||||
/// Codice Stato pezzo (sabbiato, smaterozzato, ...)
|
||||
/// </summary>
|
||||
public string CodStato { get; set; }
|
||||
public string DescImpianto { get; set; }
|
||||
/// <summary>
|
||||
/// Codice Stampo
|
||||
/// </summary>
|
||||
@@ -82,9 +93,49 @@ namespace GMW.Type
|
||||
/// </summary>
|
||||
public string Figura { get; set; }
|
||||
/// <summary>
|
||||
/// Figura Incisa
|
||||
/// Data fusione
|
||||
/// </summary>
|
||||
public string FiguraIncisa { get; set; }
|
||||
public DateTime DataFus { get; set; }
|
||||
/// <summary>
|
||||
/// Turno Fusione
|
||||
/// </summary>
|
||||
public int TurnoFus { get; set; }
|
||||
/// <summary>
|
||||
/// CodiceImballo associato all'UDC
|
||||
/// </summary>
|
||||
public string CodImballo { get; set; }
|
||||
/// <summary>
|
||||
/// Codice operatore della dichiarazione
|
||||
/// </summary>
|
||||
public string CodSoggetto { get; set; }
|
||||
/// <summary>
|
||||
/// Numero contenitore (PROGRESSIVO)
|
||||
/// </summary>
|
||||
public int NumCont { get; set; }
|
||||
/// <summary>
|
||||
/// Tara dell'UDC
|
||||
/// </summary>
|
||||
public double Tara { get; set; }
|
||||
/// <summary>
|
||||
/// Quantità associata all'UDC
|
||||
/// </summary>
|
||||
public decimal Qta { get; set; }
|
||||
/// <summary>
|
||||
/// Codice Stato pezzo (sabbiato, smaterozzato, ...)
|
||||
/// </summary>
|
||||
public string CodStato { get; set; }
|
||||
/// <summary>
|
||||
/// Codice Posizione associato all'UDC
|
||||
/// </summary>
|
||||
public int IdxPosizione { get; set; }
|
||||
/// <summary>
|
||||
/// Peso totale rilevato
|
||||
/// </summary>
|
||||
public double PesoTot { get; set; }
|
||||
/// <summary>
|
||||
/// Peso totale rilevato
|
||||
/// </summary>
|
||||
public double PesoCad { get; set; }
|
||||
/// <summary>
|
||||
/// Data di creazione dell'UDC
|
||||
/// </summary>
|
||||
@@ -97,21 +148,32 @@ namespace GMW.Type
|
||||
/// inizializza a partire da una riga statoOdpUdc
|
||||
/// </summary>
|
||||
/// <param name="riga"></param>
|
||||
public void setFromTabRow(DS_Applicazione.TabCartelliniRow riga)
|
||||
public void setFromTabRow(DS_Applicazione.ElencoCartelliniRow riga)
|
||||
{
|
||||
CodCompany = riga.CodCompany;
|
||||
ODP = riga.ODP;
|
||||
UDC_code= riga.UDC;
|
||||
Tara = riga.Tara;
|
||||
IdxStato = riga.IdxStato;
|
||||
Qta = riga.Qta;
|
||||
CodImballo = riga.CodImballo;
|
||||
CodImpianto = riga.CodImpianto;
|
||||
UDC = riga.UDC;
|
||||
CodCS = riga.CodCS;
|
||||
CodCliente = riga.CodCliente;
|
||||
RagSociale = riga.RagSociale;
|
||||
Particolare = riga.Particolare;
|
||||
CodStato = riga.CodStato;
|
||||
DescParticolare = riga.DescParticolare;
|
||||
DisegnoGrezzo = riga.DisegnoGrezzo;
|
||||
Esponente = riga.Esponente;
|
||||
CodImpianto = riga.CodImpianto;
|
||||
DescImpianto = riga.DescImpianto;
|
||||
CodCliente = riga.CodCliente;
|
||||
CodStampo = riga.CodStampo;
|
||||
Figura = riga.Figura;
|
||||
FiguraIncisa = riga.FiguraIncisa;
|
||||
DataFus = riga.DataFus;
|
||||
TurnoFus = riga.TurnoFus;
|
||||
CodImballo = riga.CodImballo;
|
||||
CodSoggetto = riga.CodSoggetto;
|
||||
NumCont = riga.NumCont;
|
||||
Tara = riga.Tara;
|
||||
Qta = riga.Qta;
|
||||
CodStato = riga.CodStato;
|
||||
IdxPosizione = riga.IdxPosizione;
|
||||
PesoTot = riga.PesoTot;
|
||||
PesoCad = riga.PesoCad;
|
||||
CreateDate = riga.CreateDate;
|
||||
ModDate = riga.ModDate;
|
||||
}
|
||||
|
||||
+9
-13
@@ -252,39 +252,35 @@ namespace GMW.Type
|
||||
|
||||
#endregion
|
||||
|
||||
#region area UDC
|
||||
#region area Cartellino
|
||||
|
||||
protected UDC[] _elencoUDC;
|
||||
protected Cartellino[] _elencoCartellini;
|
||||
|
||||
/// <summary>
|
||||
/// legge una tab di tipo TabStatoOdpUdc e la converte ad un array di tipo UDC[]
|
||||
/// </summary>
|
||||
/// <param name="tabArt2Imp"></param>
|
||||
public void caricaUDC(DS_Applicazione.Impianti2ArticoliDataTable tabArt2Imp)
|
||||
public void caricaCartellini(DS_Applicazione.ElencoCartelliniDataTable tabArt2Imp)
|
||||
{
|
||||
|
||||
#if false
|
||||
// conto quanti elementi ha la tab x inizializzare l'array...
|
||||
int numRighe = tabArt2Imp.Rows.Count;
|
||||
_elencoArtInProd = new ArtInProd[numRighe];
|
||||
_elencoCartellini = new Cartellino[numRighe];
|
||||
// prendo un obj impianto da valorizzare di volta in volta...
|
||||
ArtInProd obj;
|
||||
Cartellino obj;
|
||||
for (int i = 0; i < numRighe; i++)
|
||||
{
|
||||
obj = new ArtInProd();
|
||||
obj.setFromTabRow(tabArt2Imp[i]);
|
||||
_elencoArtInProd[i] = obj;
|
||||
obj = new Cartellino(tabArt2Imp[i]);
|
||||
_elencoCartellini[i] = obj;
|
||||
}
|
||||
#endif
|
||||
}
|
||||
/// <summary>
|
||||
/// Elenco UDC
|
||||
/// </summary>
|
||||
public UDC[] elencoUDC
|
||||
public Cartellino[] elencoCartellini
|
||||
{
|
||||
get
|
||||
{
|
||||
return _elencoUDC;
|
||||
return _elencoCartellini;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+35
-18
@@ -46,6 +46,7 @@ namespace GMW.WS
|
||||
gestEl.caricaCompanySito(DataProxy.obj.taAnagCS.GetData());
|
||||
return gestEl.elencoCompanySito;
|
||||
}
|
||||
#if false
|
||||
/// <summary>
|
||||
/// fornisce l'anagrafica articoli
|
||||
/// </summary>
|
||||
@@ -55,7 +56,8 @@ namespace GMW.WS
|
||||
|
||||
gestEl.caricaArticoli(DataProxy.obj.taAnagArt.GetData());
|
||||
return gestEl.elencoArticoli;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
/// <summary>
|
||||
/// Fornisce l'elenco dei tipi di dichiarazione ammessi
|
||||
/// </summary>
|
||||
@@ -90,7 +92,7 @@ namespace GMW.WS
|
||||
/// </summary>
|
||||
/// <param name="CodCS">Codice company/sito</param>
|
||||
/// <returns></returns>
|
||||
[WebMethod(Description = "Elenco anagrafica impianti dati codice company e sito (no dataset)")]
|
||||
[WebMethod(Description = "Elenco anagrafica impianti dati codice company/sito (no dataset)")]
|
||||
public GMW.Type.Impianto[] ElencoImpiantiByCompanySito(string CodCS)
|
||||
{
|
||||
gestEl.caricaImpianti(DataProxy.obj.taAnagImp.stp_getByCodCS(CodCS));
|
||||
@@ -106,15 +108,20 @@ namespace GMW.WS
|
||||
gestEl.caricaBilance(DataProxy.obj.taAnagBil.GetData());
|
||||
return gestEl.elencoBilance;
|
||||
}
|
||||
#if false
|
||||
/// <summary>
|
||||
/// fornisce l'anagrafica bilance dati codice company e sito
|
||||
/// </summary>
|
||||
/// <param name="CodCS">Codice company/sito</param>
|
||||
/// <returns></returns>
|
||||
[WebMethod(Description = "Elenco anagrafico Bilance dati codice company e sito")]
|
||||
public GMW.Type.Bilancia[] ElencoBilanceByCompanySito(string CodCompany, string CodSito)
|
||||
public GMW.Type.Bilancia[] ElencoBilanceByCompanySito(string CodCS)
|
||||
{
|
||||
gestEl.caricaBilance(DataProxy.obj.taAnagBil.getByCompanySito(CodCompany, CodSito));
|
||||
return gestEl.elencoBilance;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
#if false
|
||||
/// <summary>
|
||||
/// fornisce l'elenco di impianti ed articoli attualmente in produzione (per codice anagrafico)
|
||||
/// </summary>
|
||||
@@ -124,13 +131,13 @@ namespace GMW.WS
|
||||
gestEl.caricaArtInProd(DataProxy.obj.taArtInProd.GetData());
|
||||
return gestEl.elencoArtInProd;
|
||||
}
|
||||
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
#endregion
|
||||
|
||||
#region area gestione stati & UDC
|
||||
|
||||
#region gestione UDC: metodi di controllo (info)
|
||||
|
||||
/// <summary>
|
||||
/// Richiede la tara per l'UDC indicato
|
||||
@@ -149,6 +156,7 @@ namespace GMW.WS
|
||||
{ }
|
||||
return answ;
|
||||
}
|
||||
#if false
|
||||
/// <summary>
|
||||
/// Restituisce l'elenco degli UDC parent di quello specificato
|
||||
/// </summary>
|
||||
@@ -186,7 +194,9 @@ namespace GMW.WS
|
||||
GMW.Type.UDC answ = new GMW.Type.UDC();
|
||||
// caricare dati!!!
|
||||
return answ;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
#if false
|
||||
/// <summary>
|
||||
/// Controlla che il codice imballo inviato sia valido (pre creazione TARA)
|
||||
/// </summary>
|
||||
@@ -221,7 +231,12 @@ namespace GMW.WS
|
||||
DateTime dataRif = dataRic.Date.AddHours(oreTurno);
|
||||
gestEl.caricaArtInProd(DataProxy.obj.taArtInProd.stp_byImpData(CodImpianto, dataRif));
|
||||
return gestEl.elencoArtInProd;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
#endregion
|
||||
|
||||
#region gestione UDC: creazione ed editing
|
||||
|
||||
/// <summary>
|
||||
/// Fornisce un nuovo codice UDC tipo TARA a partire dalla richiesta e salva i dati
|
||||
@@ -236,31 +251,29 @@ namespace GMW.WS
|
||||
public string UdcCall_GetNew_Tara(string CodBilancia, double Tara, string CodImballo, string CodTipoDichiarazione, string CodOperatore)
|
||||
{
|
||||
// ricavo cod company...
|
||||
string CodCompany = "ND";
|
||||
string CodSito = "ND";
|
||||
string CodCS = "ND";
|
||||
string answ = "NA";
|
||||
try
|
||||
{
|
||||
CodCompany = DataProxy.obj.taAnagBil.getByCod(CodBilancia)[0].CodCompany;
|
||||
CodSito = DataProxy.obj.taAnagBil.getByCod(CodBilancia)[0].CodSito;
|
||||
CodCS = DataProxy.obj.taAnagBil.stp_getByCodBilancia(CodBilancia)[0].CodCS;
|
||||
}
|
||||
catch
|
||||
{
|
||||
CodCompany = DataProxy.obj.taAnagBil.GetData()[0].CodCompany;
|
||||
CodSito = DataProxy.obj.taAnagBil.GetData()[0].CodSito;
|
||||
CodCS = memLayer.ML.confReadString("CodCS");
|
||||
}
|
||||
// inserico riga generando il codice
|
||||
DS_Applicazione.TabCartelliniDataTable tabUdc = DataProxy.obj.taCartellini.stp_insNew(CodCompany, CodSito, CodBilancia, string.Format("{0:yy}", DateTime.Now), Tara, CodImballo, CodTipoDichiarazione, CodOperatore, "UDC_TARA"); // ATTENZIONE: "UDC_TARA" è "hard coded" nel db... !!!
|
||||
DS_Applicazione.ElencoCartelliniDataTable tabCartellini = DataProxy.obj.taCartellini.stp_insNew(CodCS, CodBilancia, string.Format("{0:yy}", DateTime.Now), Tara, CodImballo, CodTipoDichiarazione, CodOperatore, "UDC_TARA"); // ATTENZIONE: "UDC_TARA" è "hard coded" nel db... !!!
|
||||
// leggo la riga
|
||||
try
|
||||
{
|
||||
answ = tabUdc[0].UDC;
|
||||
answ = tabCartellini[0].UDC;
|
||||
}
|
||||
catch
|
||||
{ }
|
||||
// output risultato
|
||||
return answ;
|
||||
}
|
||||
#if false
|
||||
|
||||
/// <summary>
|
||||
/// Fornisce un nuovo codice UDC tipo completo (con pezzi) a partire dalla richiesta e salva i dati
|
||||
@@ -354,9 +367,12 @@ namespace GMW.WS
|
||||
}
|
||||
return answ;
|
||||
}
|
||||
|
||||
#endif
|
||||
#endregion
|
||||
|
||||
|
||||
|
||||
#if false
|
||||
#region area stampe
|
||||
|
||||
/// <summary>
|
||||
@@ -386,5 +402,6 @@ namespace GMW.WS
|
||||
}
|
||||
|
||||
#endregion
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
@@ -84,6 +84,7 @@
|
||||
<add key="_logLevel" value="6"/>
|
||||
<add key="_logMaxMb" value="30"/>
|
||||
<add key="passkey" value="pi=314"/>
|
||||
<add key="CodCS" value="MA"/>
|
||||
<add key="GMWConnectionString" value="Data Source=localhost\sql2008;Initial Catalog=GMW;Persist Security Info=True;User ID=sa;Password=keyhammer"/>
|
||||
</appSettings>
|
||||
<connectionStrings>
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Generated
+2671
-2029
File diff suppressed because it is too large
Load Diff
+378
-294
File diff suppressed because it is too large
Load Diff
@@ -4,24 +4,24 @@
|
||||
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="147" ViewPortY="-45" 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="212" ViewPortY="-47" xmlns:ex="urn:schemas-microsoft-com:xml-msdatasource-layout-extended" xmlns="urn:schemas-microsoft-com:xml-msdatasource-layout">
|
||||
<Shapes>
|
||||
<Shape ID="DesignTable:AnagBilance" ZOrder="20" X="1169" Y="336" Height="191" Width="234" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="102" />
|
||||
<Shape ID="DesignTable:AnagStati" ZOrder="21" X="867" Y="533" Height="115" Width="201" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
|
||||
<Shape ID="DesignTable:AnagTipoDichiaraz" ZOrder="11" X="1110" Y="696" Height="115" Width="254" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
|
||||
<Shape ID="DesignTable:AnagStatiProdotto" ZOrder="19" X="99" Y="722" Height="115" Width="254" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
|
||||
<Shape ID="DesignTable:AnagImballi" ZOrder="18" X="118" Y="575" Height="134" Width="242" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
|
||||
<Shape ID="DesignTable:AnagArticoli" ZOrder="17" X="168" Y="43" Height="153" Width="217" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="102" />
|
||||
<Shape ID="DesignTable:Impianti2Articoli" ZOrder="16" X="489" Y="35" Height="248" Width="271" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="159" />
|
||||
<Shape ID="DesignTable:v_ArtInProd" ZOrder="14" X="1187" Y="608" Height="267" Width="271" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="197" />
|
||||
<Shape ID="DesignTable:StoricoEventi" ZOrder="13" X="855" Y="777" Height="305" Width="221" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
|
||||
<Shape ID="DesignTable:RelazUDC" ZOrder="10" X="0" Y="0" Height="90" Width="158" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="0" />
|
||||
<Shape ID="DesignTable:AnagImpianti" ZOrder="7" X="853" Y="19" Height="191" Width="224" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="121" />
|
||||
<Shape ID="DesignTable:AnagCompanySito" ZOrder="6" X="1156" Y="-8" Height="172" Width="253" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="121" />
|
||||
<Shape ID="DesignTable:TabCartellini" ZOrder="1" X="439" Y="494" Height="400" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
|
||||
<Shape ID="DesignTable:AnagStati" ZOrder="19" X="867" Y="533" Height="115" Width="201" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
|
||||
<Shape ID="DesignTable:AnagTipoDichiaraz" ZOrder="10" X="1110" Y="696" Height="115" Width="254" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
|
||||
<Shape ID="DesignTable:AnagStatiProdotto" ZOrder="18" X="99" Y="722" Height="115" Width="254" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
|
||||
<Shape ID="DesignTable:AnagImballi" ZOrder="17" X="118" Y="575" Height="134" Width="242" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
|
||||
<Shape ID="DesignTable:AnagArticoli" ZOrder="16" X="168" Y="43" Height="153" Width="217" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="102" />
|
||||
<Shape ID="DesignTable:Impianti2Articoli" ZOrder="15" X="489" Y="35" Height="248" Width="271" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="159" />
|
||||
<Shape ID="DesignTable:v_ArtInProd" ZOrder="13" X="1187" Y="608" Height="267" Width="271" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="197" />
|
||||
<Shape ID="DesignTable:StoricoEventi" ZOrder="12" X="855" Y="777" Height="305" Width="221" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
|
||||
<Shape ID="DesignTable:RelazUDC" ZOrder="9" X="0" Y="42" Height="130" Width="158" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
|
||||
<Shape ID="DesignTable:AnagImpianti" ZOrder="6" X="853" Y="19" Height="191" Width="224" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="121" />
|
||||
<Shape ID="DesignTable:AnagCompanySito" ZOrder="5" X="1156" Y="-8" Height="172" Width="253" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="121" />
|
||||
<Shape ID="DesignTable:AnagBilance" ZOrder="4" X="1261" Y="306" Height="172" Width="244" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="83" />
|
||||
<Shape ID="DesignTable:ElencoCartellini" ZOrder="1" X="462" Y="346" Height="457" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="311" />
|
||||
</Shapes>
|
||||
<Connectors>
|
||||
<Connector ID="DesignRelation:FK_Impianti2Articoli_AnagArticoli1" ZOrder="15" LineWidth="11">
|
||||
<Connector ID="DesignRelation:FK_Impianti2Articoli_AnagArticoli1" ZOrder="14" LineWidth="11">
|
||||
<RoutePoints>
|
||||
<Point>
|
||||
<X>385</X>
|
||||
@@ -33,7 +33,7 @@
|
||||
</Point>
|
||||
</RoutePoints>
|
||||
</Connector>
|
||||
<Connector ID="DesignRelation:FK_StoricoEventi_AnagTipoDichiaraz" ZOrder="12" LineWidth="11">
|
||||
<Connector ID="DesignRelation:FK_StoricoEventi_AnagTipoDichiaraz" ZOrder="11" LineWidth="11">
|
||||
<RoutePoints>
|
||||
<Point>
|
||||
<X>1185</X>
|
||||
@@ -49,7 +49,7 @@
|
||||
</Point>
|
||||
</RoutePoints>
|
||||
</Connector>
|
||||
<Connector ID="DesignRelation:FK_Impianti2Articoli_AnagImpianti" ZOrder="9" LineWidth="11">
|
||||
<Connector ID="DesignRelation:FK_Impianti2Articoli_AnagImpianti" ZOrder="8" LineWidth="11">
|
||||
<RoutePoints>
|
||||
<Point>
|
||||
<X>853</X>
|
||||
@@ -61,7 +61,7 @@
|
||||
</Point>
|
||||
</RoutePoints>
|
||||
</Connector>
|
||||
<Connector ID="DesignRelation:FK_AnagImpianti_AnagCompanySito" ZOrder="8" LineWidth="11">
|
||||
<Connector ID="DesignRelation:FK_AnagImpianti_AnagCompanySito" ZOrder="7" LineWidth="11">
|
||||
<RoutePoints>
|
||||
<Point>
|
||||
<X>1156</X>
|
||||
@@ -73,55 +73,35 @@
|
||||
</Point>
|
||||
</RoutePoints>
|
||||
</Connector>
|
||||
<Connector ID="DesignRelation:FK_TabStatoOdpUdc_AnagArticoli1" ZOrder="5" LineWidth="11">
|
||||
<Connector ID="DesignRelation:FK_ElencoCartellini_AnagCompanySito" ZOrder="3" LineWidth="11">
|
||||
<RoutePoints>
|
||||
<Point>
|
||||
<X>360</X>
|
||||
<Y>196</Y>
|
||||
<X>1173</X>
|
||||
<Y>164</Y>
|
||||
</Point>
|
||||
<Point>
|
||||
<X>360</X>
|
||||
<Y>511</Y>
|
||||
<X>1173</X>
|
||||
<Y>415</Y>
|
||||
</Point>
|
||||
<Point>
|
||||
<X>439</X>
|
||||
<Y>511</Y>
|
||||
<X>762</X>
|
||||
<Y>415</Y>
|
||||
</Point>
|
||||
</RoutePoints>
|
||||
</Connector>
|
||||
<Connector ID="DesignRelation:FK_TabStatoOdpUdc_AnagImballi1" ZOrder="3" LineWidth="11">
|
||||
<Connector ID="DesignRelation:FK_ElencoCartellini_AnagStatiProdotto" ZOrder="2" LineWidth="11">
|
||||
<RoutePoints>
|
||||
<Point>
|
||||
<X>360</X>
|
||||
<Y>627</Y>
|
||||
<X>336</X>
|
||||
<Y>722</Y>
|
||||
</Point>
|
||||
<Point>
|
||||
<X>439</X>
|
||||
<Y>627</Y>
|
||||
</Point>
|
||||
</RoutePoints>
|
||||
</Connector>
|
||||
<Connector ID="DesignRelation:FK_TabStatoOdpUdc_AnagStati1" ZOrder="4" LineWidth="11">
|
||||
<RoutePoints>
|
||||
<Point>
|
||||
<X>867</X>
|
||||
<Y>590</Y>
|
||||
<X>336</X>
|
||||
<Y>471</Y>
|
||||
</Point>
|
||||
<Point>
|
||||
<X>739</X>
|
||||
<Y>590</Y>
|
||||
</Point>
|
||||
</RoutePoints>
|
||||
</Connector>
|
||||
<Connector ID="DesignRelation:FK_TabStatoOdpUdc_AnagStatiProdotto1" ZOrder="2" LineWidth="11">
|
||||
<RoutePoints>
|
||||
<Point>
|
||||
<X>353</X>
|
||||
<Y>768</Y>
|
||||
</Point>
|
||||
<Point>
|
||||
<X>439</X>
|
||||
<Y>768</Y>
|
||||
<X>462</X>
|
||||
<Y>471</Y>
|
||||
</Point>
|
||||
</RoutePoints>
|
||||
</Connector>
|
||||
|
||||
@@ -17,7 +17,7 @@ namespace GMW_data
|
||||
public DS_ApplicazioneTableAdapters.AnagImpiantiTableAdapter taAnagImp;
|
||||
public DS_ApplicazioneTableAdapters.AnagBilanceTableAdapter taAnagBil;
|
||||
public DS_ApplicazioneTableAdapters.Impianti2ArticoliTableAdapter taImp2Art;
|
||||
public DS_ApplicazioneTableAdapters.TabCartelliniTableAdapter taCartellini;
|
||||
public DS_ApplicazioneTableAdapters.ElencoCartelliniTableAdapter taCartellini;
|
||||
public DS_ApplicazioneTableAdapters.AnagTipoDichiarazTableAdapter taTipoDich;
|
||||
public DS_ApplicazioneTableAdapters.AnagStatiProdottoTableAdapter taStatiProd;
|
||||
public DS_ApplicazioneTableAdapters.AnagImballiTableAdapter taAnagImballi;
|
||||
@@ -35,7 +35,7 @@ namespace GMW_data
|
||||
taAnagBil = new GMW_data.DS_ApplicazioneTableAdapters.AnagBilanceTableAdapter();
|
||||
taTipoDich = new GMW_data.DS_ApplicazioneTableAdapters.AnagTipoDichiarazTableAdapter();
|
||||
taImp2Art = new GMW_data.DS_ApplicazioneTableAdapters.Impianti2ArticoliTableAdapter();
|
||||
taCartellini = new GMW_data.DS_ApplicazioneTableAdapters.TabCartelliniTableAdapter();
|
||||
taCartellini = new GMW_data.DS_ApplicazioneTableAdapters.ElencoCartelliniTableAdapter();
|
||||
taStatiProd = new GMW_data.DS_ApplicazioneTableAdapters.AnagStatiProdottoTableAdapter();
|
||||
taAnagImballi = new GMW_data.DS_ApplicazioneTableAdapters.AnagImballiTableAdapter();
|
||||
taArtInProd = new GMW_data.DS_ApplicazioneTableAdapters.v_ArtInProdTableAdapter();
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user