Completta gestione DL / DC in terminalino (salvo verifica vere stored...)
This commit is contained in:
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.
Binary file not shown.
Binary file not shown.
@@ -5,23 +5,18 @@
|
||||
<%@ Register Src="mod_detail_NC.ascx" TagPrefix="uc1" TagName="mod_detail_NC" %>
|
||||
<%@ Register Src="mod_detail_DL.ascx" TagPrefix="uc1" TagName="mod_detail_DL" %>
|
||||
|
||||
|
||||
<asp:HiddenField runat="server" ID="hfUdc" />
|
||||
<div class="quadro_wide" runat="server" id="divOperazioni">
|
||||
<h4>DELIBERA LOGISTICA</h4>
|
||||
<div class="quadro1">
|
||||
<asp:LinkButton ID="btnReset" runat="server" OnClick="btnResetCtrl_Click" CssClass="styleBtnComposito" Height="20" Width="80px">
|
||||
<img src="images/cancel_m.png" style="border-style: none; margin-right: 0.2em;" width="13px" height="13px" />
|
||||
<asp:Label ID="lblReset" runat="server" />
|
||||
</asp:LinkButton>
|
||||
</div>
|
||||
<div class="quadro2" runat="server" id="divDelibera">
|
||||
</asp:LinkButton></div><div class="quadro2" runat="server" id="divDelibera">
|
||||
<asp:LinkButton ID="btnDelibera" runat="server" OnClick="btnDelibera_Click" CssClass="styleBtnComposito" Height="20" Width="80px">
|
||||
<img src="images/apply_m.png" style="border-style: none; margin-right: 0.2em;" width="13px" height="13px" />
|
||||
<asp:Label ID="lblDelibera" runat="server" />
|
||||
</asp:LinkButton>
|
||||
</div>
|
||||
</div>
|
||||
<div class="quadro_wide" runat="server" id="divDettagli">
|
||||
</asp:LinkButton></div></div><div class="quadro_wide" runat="server" id="divDettagli">
|
||||
<div runat="server" id="divDetailDelib">
|
||||
<div class="quadro1">
|
||||
<uc1:mod_detail_DL runat="server" ID="mod_detail_DL1" />
|
||||
|
||||
@@ -5,6 +5,7 @@ using System.Web;
|
||||
using System.Web.UI;
|
||||
using System.Web.UI.WebControls;
|
||||
using SteamWare;
|
||||
using GMW_data;
|
||||
|
||||
namespace GMW_Term.WebUserControls
|
||||
{
|
||||
@@ -43,18 +44,32 @@ namespace GMW_Term.WebUserControls
|
||||
/// </summary>
|
||||
public void showUdcDetail(string UDC)
|
||||
{
|
||||
UDC_sel = UDC;
|
||||
memLayer.ML.setSessionVal("UDC4det_sel", UDC);
|
||||
memLayer.ML.setSessionVal("CodCS", memLayer.ML.confReadString("CodCS"));
|
||||
divDetailUdc.Visible = true;
|
||||
btnReset.Visible = true;
|
||||
// calcolo se devo fare delibera...
|
||||
bool showNC = false;
|
||||
try
|
||||
{
|
||||
showNC = MagClass.magazzino.taCartellini.getSenzaDC(UDC).Rows.Count > 0;
|
||||
}
|
||||
catch
|
||||
{ }
|
||||
bool showDL = false;
|
||||
try
|
||||
{
|
||||
showDL = MagClass.magazzino.taCartellini.getSenzaDeliberaPM(UDC).Rows.Count > 0;
|
||||
}
|
||||
catch
|
||||
{ }
|
||||
// se ho da deliberare mostro pannello
|
||||
if(true)
|
||||
if (showNC || showNC)
|
||||
{
|
||||
// verifico se ho da deliberare PM o NC
|
||||
bool showNC = true;
|
||||
bool showDL = true;
|
||||
divDetailDelib.Visible = (showNC || showDL);
|
||||
btnDelibera.Visible = (showNC || showDL);
|
||||
divDetailDelib.Visible = true;
|
||||
btnDelibera.Visible = true;
|
||||
mod_detail_NC1.Visible = showNC;
|
||||
mod_detail_DL1.Visible = showDL;
|
||||
}
|
||||
@@ -76,10 +91,29 @@ namespace GMW_Term.WebUserControls
|
||||
/// <param name="e"></param>
|
||||
protected void btnDelibera_Click(object sender, EventArgs e)
|
||||
{
|
||||
if (UDC_sel != "")
|
||||
{
|
||||
MagClass.magazzino.taCartellini.setDL_DC(UDC_sel);
|
||||
}
|
||||
showUdcDetail(UDC_sel);
|
||||
#if false
|
||||
memLayer.ML.emptySessionVal("UDC4det_sel");
|
||||
Response.Redirect("~/delibLog.aspx");
|
||||
Response.Redirect("~/delibLog.aspx");
|
||||
#endif
|
||||
}
|
||||
/// <summary>
|
||||
/// UDC impostato
|
||||
/// </summary>
|
||||
public string UDC_sel
|
||||
{
|
||||
get
|
||||
{
|
||||
return hfUdc.Value;
|
||||
}
|
||||
set
|
||||
{
|
||||
hfUdc.Value = value;
|
||||
mod_detail_NC1.UDC_sel = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -12,6 +12,15 @@ namespace GMW_Term.WebUserControls {
|
||||
|
||||
public partial class mod_delibLog {
|
||||
|
||||
/// <summary>
|
||||
/// hfUdc control.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.HiddenField hfUdc;
|
||||
|
||||
/// <summary>
|
||||
/// divOperazioni control.
|
||||
/// </summary>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_detail_DL.ascx.cs" Inherits="GMW_Term.WebUserControls.mod_detail_DL" %>
|
||||
<div style="background-color: #FF9999;">
|
||||
MANCANZA PM
|
||||
MANCA PM
|
||||
</div>
|
||||
|
||||
@@ -1,4 +1,27 @@
|
||||
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_detail_NC.ascx.cs" Inherits="GMW_Term.WebUserControls.mod_detail_NC" %>
|
||||
<div style="background-color: #FFCC99;">
|
||||
ELENCO NC
|
||||
</div>
|
||||
<asp:GridView ID="grView" runat="server" AutoGenerateColumns="False" DataKeyNames="UDC" DataSourceID="ods" EnableModelValidation="True" Width="100%">
|
||||
<RowStyle CssClass="btnGrigioHalf" />
|
||||
<SelectedRowStyle CssClass="btnAzzurroHalf" />
|
||||
<Columns>
|
||||
<%--<asp:BoundField DataField="UDC" HeaderText="UDC" ReadOnly="True" SortExpression="UDC" />
|
||||
<asp:BoundField DataField="Particolare" HeaderText="Particolare" SortExpression="Particolare" />
|
||||
<asp:BoundField DataField="DescParticolare" HeaderText="DescParticolare" SortExpression="DescParticolare" />
|
||||
<asp:BoundField DataField="DataFus" HeaderText="DataFus" SortExpression="DataFus" />
|
||||
<asp:BoundField DataField="Qta" HeaderText="Qta" SortExpression="Qta" />
|
||||
<asp:BoundField DataField="CodStato" HeaderText="CodStato" SortExpression="CodStato" />
|
||||
<asp:BoundField DataField="Note" HeaderText="Note" SortExpression="Note" />
|
||||
<asp:BoundField DataField="DecodPosizione" HeaderText="POS" SortExpression="DecodPosizione" />--%>
|
||||
<asp:BoundField DataField="NC" HeaderText="Elenco NC" ReadOnly="True" SortExpression="NC" />
|
||||
<%--<asp:BoundField DataField="IsSelected" HeaderText="IsSelected" ReadOnly="True" SortExpression="IsSelected" />--%>
|
||||
</Columns>
|
||||
</asp:GridView>
|
||||
<asp:ObjectDataSource ID="ods" runat="server" OldValuesParameterFormatString="original_{0}" SelectMethod="getNcPending" TypeName="GMW_data.DS_ApplicazioneTableAdapters.UDC_NCTableAdapter">
|
||||
<SelectParameters>
|
||||
<asp:ControlParameter ControlID="hfUdc" DefaultValue="U" Name="UDC" PropertyName="Value" Type="String" />
|
||||
<asp:Parameter DefaultValue="DC" Name="attrRes" Type="String" />
|
||||
<asp:Parameter DefaultValue="NC" Name="attr2chk" Type="String" />
|
||||
</SelectParameters>
|
||||
</asp:ObjectDataSource>
|
||||
<asp:HiddenField runat="server" ID="hfUdc" />
|
||||
</div>
|
||||
|
||||
@@ -13,5 +13,19 @@ namespace GMW_Term.WebUserControls
|
||||
{
|
||||
|
||||
}
|
||||
/// <summary>
|
||||
/// UDC impostato
|
||||
/// </summary>
|
||||
public string UDC_sel
|
||||
{
|
||||
get
|
||||
{
|
||||
return hfUdc.Value;
|
||||
}
|
||||
set
|
||||
{
|
||||
hfUdc.Value = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
+32
-7
@@ -3,15 +3,40 @@
|
||||
// This code was generated by a tool.
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace GMW_Term.WebUserControls
|
||||
{
|
||||
|
||||
|
||||
public partial class mod_detail_NC
|
||||
{
|
||||
namespace GMW_Term.WebUserControls {
|
||||
|
||||
|
||||
public partial class mod_detail_NC {
|
||||
|
||||
/// <summary>
|
||||
/// grView control.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.GridView grView;
|
||||
|
||||
/// <summary>
|
||||
/// ods control.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.ObjectDataSource ods;
|
||||
|
||||
/// <summary>
|
||||
/// hfUdc control.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.HiddenField hfUdc;
|
||||
}
|
||||
}
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
+415
-278
@@ -55,6 +55,11 @@
|
||||
tipo id controllo con classi di base comune da cui derivare gli *.asmx
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.ApplicationUserControl.TipoAnagControllo">
|
||||
<summary>
|
||||
imposto il tipo di anagrafica del controlloS
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:SteamWare.ApplicationUserControl._paginaCorrente">
|
||||
<summary>
|
||||
nome della pagina correntemente caricata
|
||||
@@ -424,6 +429,32 @@
|
||||
<param name="_valParam"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="P:SteamWare.ApplicationUserControl.SortField2">
|
||||
<summary>
|
||||
variabile salvata in view state x la stringa di sorting - dg 2
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.ApplicationUserControl.SortField">
|
||||
<summary>
|
||||
variabile salvata in view state x la stringa di sorting - dg 2
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.ApplicationUserControl.FiltString">
|
||||
<summary>
|
||||
legge e scrive in viewState la stringa di filtraggio...
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.ApplicationUserControl.SortAscending">
|
||||
<summary>
|
||||
variabile salvata in viewstate x la direzione del sorting
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.ApplicationUserControl.elencoCdC">
|
||||
<summary>
|
||||
genera la stringa filtro x i cdc autorizzati x l'user
|
||||
</summary>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.ApplicationUserControl.recuperaCdC_daFiltro(System.String,System.String@,System.String@,System.String@)">
|
||||
<summary>
|
||||
esegue la ricerca dei cdc nelle posizioni indicate dal filtro e restituisce elenco distinct degli stessi
|
||||
@@ -499,6 +530,11 @@
|
||||
<param name="cosa"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="P:SteamWare.ApplicationUserControl.vistaModulo">
|
||||
<summary>
|
||||
tipo di vista del modulo
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.ApplicationUserControl.registraEventi">
|
||||
<summary>
|
||||
effettua la registrazione degli eventi
|
||||
@@ -549,42 +585,6 @@
|
||||
<param name="tipo">The tipo.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="P:SteamWare.ApplicationUserControl.TipoAnagControllo">
|
||||
<summary>
|
||||
imposto il tipo di anagrafica del controlloS
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.ApplicationUserControl.SortField2">
|
||||
<summary>
|
||||
variabile salvata in view state x la stringa di sorting - dg 2
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.ApplicationUserControl.SortField">
|
||||
<summary>
|
||||
variabile salvata in view state x la stringa di sorting - dg 2
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.ApplicationUserControl.FiltString">
|
||||
<summary>
|
||||
legge e scrive in viewState la stringa di filtraggio...
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.ApplicationUserControl.SortAscending">
|
||||
<summary>
|
||||
variabile salvata in viewstate x la direzione del sorting
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.ApplicationUserControl.elencoCdC">
|
||||
<summary>
|
||||
genera la stringa filtro x i cdc autorizzati x l'user
|
||||
</summary>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="P:SteamWare.ApplicationUserControl.vistaModulo">
|
||||
<summary>
|
||||
tipo di vista del modulo
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.authProxy">
|
||||
<summary>
|
||||
classe gestione auth
|
||||
@@ -735,21 +735,6 @@
|
||||
inizializzazione classe
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.confrontoValori.doDiff">
|
||||
<summary>
|
||||
valorizza i diff dei valori old e new
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.confrontoValori.calcOldVal">
|
||||
<summary>
|
||||
calcola solo il vettore dei valori old (x delete)
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:SteamWare.confrontoValori.obj">
|
||||
<summary>
|
||||
oggetto statico per il confronto valori
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.confrontoValori.valOld">
|
||||
<summary>
|
||||
stringa diff dei valori originali modificati
|
||||
@@ -760,6 +745,16 @@
|
||||
stringa diff dei valori nuovi modificati
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.confrontoValori.doDiff">
|
||||
<summary>
|
||||
valorizza i diff dei valori old e new
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.confrontoValori.calcOldVal">
|
||||
<summary>
|
||||
calcola solo il vettore dei valori old (x delete)
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.confrontoValori.paramOld">
|
||||
<summary>
|
||||
dictionary dei parametri old
|
||||
@@ -770,6 +765,11 @@
|
||||
dictionary dei parametri new
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:SteamWare.confrontoValori.obj">
|
||||
<summary>
|
||||
oggetto statico per il confronto valori
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.CsvParser">
|
||||
<summary>
|
||||
classe di gestione lettura
|
||||
@@ -1258,16 +1258,16 @@
|
||||
<param name="lemma"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="F:SteamWare.DataWrap.DW">
|
||||
<summary>
|
||||
classe singleton x la gestione dei tableadapters
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.DataWrap.lingue">
|
||||
<summary>
|
||||
elenco lingue ammesse da vocabolario...
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:SteamWare.DataWrap.DW">
|
||||
<summary>
|
||||
classe singleton x la gestione dei tableadapters
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.dbUpdateManager">
|
||||
<summary>
|
||||
classe di gestione dei db x creazione/update alla versione richiesta
|
||||
@@ -1389,7 +1389,15 @@
|
||||
<returns></returns>
|
||||
</member>
|
||||
<!-- Badly formed XML comment ignored for member "M:SteamWare.devicesAuthProxy.reqResetAuthKey(System.String,System.String)" -->
|
||||
<member name="M:SteamWare.devicesAuthProxy.sendEmailAuthKey(System.String,System.String)">
|
||||
<member name="M:SteamWare.devicesAuthProxy.sendEmailResetHashPassword(System.String,System.String,System.String)">
|
||||
<summary>
|
||||
invia email ad utente con url x reset hash password
|
||||
</summary>
|
||||
<param name="email">destinatario</param>
|
||||
<param name="hashPasswd">hashPasswd ATTUALE (in chiaro)</param>
|
||||
<param name="webAppName"></param>
|
||||
</member>
|
||||
<member name="M:SteamWare.devicesAuthProxy.sendEmailAuthKey(System.String,System.String,System.String)">
|
||||
<summary>
|
||||
invia email ad utente con url x enroll
|
||||
</summary>
|
||||
@@ -1407,6 +1415,11 @@
|
||||
<param name="email"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="P:SteamWare.devicesAuthProxy.AuthCookieName">
|
||||
<summary>
|
||||
restituisce nome cookie di auth (o default...)
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.devicesAuthProxy.passphrase(System.String,System.String)">
|
||||
<summary>
|
||||
genera la passphrase utente a partire dai parametri richiesti
|
||||
@@ -1428,59 +1441,6 @@
|
||||
cancella da session l'utente
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.devicesAuthProxy.isPageEnabled(System.String)">
|
||||
<summary>
|
||||
conta il numero di permessi utente per la pagina attuale e restituisce true se ne trova almeno 1
|
||||
</summary>
|
||||
<param name="pagina"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.devicesAuthProxy.isPageWriteEnabled(System.String)">
|
||||
<summary>
|
||||
verifica se il permesso utente per la pagina attuale sia write per almeno 1 diritto assegnato (restituisce true se ne trova almeno 1 con permessi2funzione.readwrite='S')
|
||||
</summary>
|
||||
<param name="pagina"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.devicesAuthProxy.startUpUtente(System.String)">
|
||||
<summary>
|
||||
Procedura da chiamare DOPO aver messo in session i dati utente/email x caricare gli altri dati
|
||||
</summary>
|
||||
<param name="_username"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.devicesAuthProxy.setupRiga">
|
||||
<summary>
|
||||
carica la riga dati utente
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.devicesAuthProxy.setupDirittiPermessi">
|
||||
<summary>
|
||||
Carica la tabella diritti dell'utente da db e salva in session
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.devicesAuthProxy.setPermessiDaDiritti">
|
||||
<summary>
|
||||
Effettua setup dei permessi una volta salvati i diritti
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.devicesAuthProxy.userHasRight(System.String)">
|
||||
<summary>
|
||||
verifica nella tab diritti se l'utente abbia il right richiesto e fornisce bool in risposta
|
||||
</summary>
|
||||
<param name="diritto"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.devicesAuthProxy.getPage(System.Uri)">
|
||||
<summary>
|
||||
restituisce il nome della pagina corrente
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.devicesAuthProxy.AuthCookieName">
|
||||
<summary>
|
||||
restituisce nome cookie di auth (o default...)
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.devicesAuthProxy.diritti">
|
||||
<summary>
|
||||
restituisce la tabella diritti da session
|
||||
@@ -1531,6 +1491,59 @@
|
||||
è un boolean che indica se in session ci siano user/email e DeviceSecret (cookie) e quindi utente autenticato in precedenza...
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.devicesAuthProxy.isPageEnabled(System.String)">
|
||||
<summary>
|
||||
conta il numero di permessi utente per la pagina attuale e restituisce true se ne trova almeno 1
|
||||
</summary>
|
||||
<param name="pagina"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.devicesAuthProxy.isPageWriteEnabled(System.String)">
|
||||
<summary>
|
||||
verifica se il permesso utente per la pagina attuale sia write per almeno 1 diritto assegnato (restituisce true se ne trova almeno 1 con permessi2funzione.readwrite='S')
|
||||
</summary>
|
||||
<param name="pagina"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.devicesAuthProxy.startUpUtente(System.String)">
|
||||
<summary>
|
||||
Procedura da chiamare DOPO aver messo in session i dati utente/email x caricare gli altri dati
|
||||
</summary>
|
||||
<param name="_username"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.devicesAuthProxy.setupRiga">
|
||||
<summary>
|
||||
carica la riga dati utente
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.devicesAuthProxy.setupDirittiPermessi">
|
||||
<summary>
|
||||
Carica la tabella diritti dell'utente da db e salva in session
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.devicesAuthProxy.setPermessiDaDiritti">
|
||||
<summary>
|
||||
Effettua setup dei permessi una volta salvati i diritti
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.devicesAuthProxy.userHasRight(System.String)">
|
||||
<summary>
|
||||
verifica nella tab diritti se l'utente abbia il right richiesto e fornisce bool in risposta
|
||||
</summary>
|
||||
<param name="diritto"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.devicesAuthProxy.setupLingua">
|
||||
<summary>
|
||||
imposta la lingua utente dal valore della riga DB
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.devicesAuthProxy.lingua">
|
||||
<summary>
|
||||
oggetto lingua utente con metodi get/set
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.devicesAuthProxy.pagCorrente">
|
||||
<summary>
|
||||
pagina correntemente visualizzata (URL in sessione)
|
||||
@@ -1541,6 +1554,11 @@
|
||||
pagina precedentemente visualizzata (URL in sessione)
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.devicesAuthProxy.getPage(System.Uri)">
|
||||
<summary>
|
||||
restituisce il nome della pagina corrente
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.devInfoParam">
|
||||
<summary>
|
||||
classe gestione parametri deviceper stampa
|
||||
@@ -1606,36 +1624,17 @@
|
||||
helper x raccolta dati di diagnostica
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.Diagnostica.uptime">
|
||||
<summary>
|
||||
uptime macchina (formattato)
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.Diagnostica.GetUptime">
|
||||
<summary>
|
||||
calcolo uptime in formato timespan
|
||||
</summary>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.Diagnostica.GetUSBDevices">
|
||||
<summary>
|
||||
elenco devices USB
|
||||
</summary>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.Diagnostica.pingIp(System.String)">
|
||||
<summary>
|
||||
registra esito ping ad un dato IP/hostname
|
||||
</summary>
|
||||
<param name="target">IPaddress / host name.</param>
|
||||
</member>
|
||||
<member name="M:SteamWare.Diagnostica.getPageContent(System.String)">
|
||||
<summary>
|
||||
restituisce contenuto di una pagina web (per testing)
|
||||
</summary>
|
||||
<param name="targetUrl"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="P:SteamWare.Diagnostica.uptime">
|
||||
<summary>
|
||||
uptime macchina (formattato)
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.Diagnostica.diskUsage">
|
||||
<summary>
|
||||
restituisce elenco dischi con utilizzo (formattato)
|
||||
@@ -1653,11 +1652,30 @@
|
||||
</summary>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.Diagnostica.GetUSBDevices">
|
||||
<summary>
|
||||
elenco devices USB
|
||||
</summary>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="P:SteamWare.Diagnostica.serialPorts">
|
||||
<summary>
|
||||
elenco porte seriali
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.Diagnostica.pingIp(System.String)">
|
||||
<summary>
|
||||
registra esito ping ad un dato IP/hostname
|
||||
</summary>
|
||||
<param name="target">IPaddress / host name.</param>
|
||||
</member>
|
||||
<member name="M:SteamWare.Diagnostica.getPageContent(System.String)">
|
||||
<summary>
|
||||
restituisce contenuto di una pagina web (per testing)
|
||||
</summary>
|
||||
<param name="targetUrl"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="T:SteamWare.USBDeviceInfo">
|
||||
<summary>
|
||||
classe definizione info oggetti USB
|
||||
@@ -2332,12 +2350,26 @@
|
||||
<param name="_nomeFile">The _nome file.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.fileMover.getFileInfoByName(System.String,System.String,System.Boolean)">
|
||||
<summary>
|
||||
cerca di caricare il fileinfo o da httpcontext-application re-position o direttamente come workpath + nomefile
|
||||
</summary>
|
||||
<param name="_path">The _path.</param>
|
||||
<param name="_nomeFile">The _nome file.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.fileMover.getDirectoryInfo">
|
||||
<summary>
|
||||
cerca di caricare la directoryInfo o da httpcontext-application re-position o direttamente come workpath
|
||||
</summary>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.fileMover.getDirectoryInfo(System.String,System.Boolean)">
|
||||
<summary>
|
||||
imposta la directory richiesta...
|
||||
</summary>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.fileMover.ReadFully(System.IO.Stream,System.Int32)">
|
||||
<summary>
|
||||
Legge i dati da uno stream fino a quando arriva alla fine.
|
||||
@@ -2405,6 +2437,14 @@
|
||||
<param name="_nomeFile"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.fileMover.fileExist(System.String,System.String)">
|
||||
<summary>
|
||||
verifica se il file indicato esista in _path
|
||||
</summary>
|
||||
<param name="_path"></param>
|
||||
<param name="_nomeFile"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.fileMover.eliminaFile(System.String)">
|
||||
<summary>
|
||||
elimina il file indicato dalla directory di lavoro
|
||||
@@ -2921,6 +2961,11 @@
|
||||
avvio del logger nella dir desiderata
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.logger.logLevel">
|
||||
<summary>
|
||||
livello di log applicazione (da web.config, chiave '_logLevel')
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.logger.#ctor(System.String)">
|
||||
<summary>
|
||||
avvio del logger nella dir desiderata
|
||||
@@ -2984,11 +3029,6 @@
|
||||
<param name="_di"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="P:SteamWare.logger.logLevel">
|
||||
<summary>
|
||||
livello di log applicazione (da web.config, chiave '_logLevel')
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.tipoLog">
|
||||
<summary>
|
||||
tipo di log ammesso
|
||||
@@ -3101,6 +3141,34 @@
|
||||
<param name="nomeParam"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.memLayer.QSS(System.String)">
|
||||
<summary>
|
||||
recupera valore querystring STRING
|
||||
</summary>
|
||||
<param name="nome"></param>
|
||||
<returns>valore string</returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.memLayer.QSI(System.String)">
|
||||
<summary>
|
||||
recupera valore querystring INT
|
||||
</summary>
|
||||
<param name="nome"></param>
|
||||
<returns>valore INT</returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.memLayer.QSB(System.String)">
|
||||
<summary>
|
||||
recupera valore querystring BOOL
|
||||
</summary>
|
||||
<param name="nome"></param>
|
||||
<returns>valore string</returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.memLayer.QSD(System.String)">
|
||||
<summary>
|
||||
recupera valore querystring DATE
|
||||
</summary>
|
||||
<param name="nome"></param>
|
||||
<returns>valore DATE</returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.memLayer.objSessionObj(System.String)">
|
||||
<summary>
|
||||
carica dalla sessione un dato di tipo object generico
|
||||
@@ -3165,6 +3233,13 @@
|
||||
<param name="nomeVar"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.memLayer.hasCookieVal(System.String)">
|
||||
<summary>
|
||||
restituisco se ci sia un dato cookie
|
||||
</summary>
|
||||
<param name="nome"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.memLayer.getCookieVal(System.String)">
|
||||
<summary>
|
||||
restituisco un valore da cookie
|
||||
@@ -3245,12 +3320,22 @@
|
||||
<param name="nomeVar"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="P:SteamWare.memLayer.tabelleInCache">
|
||||
<summary>
|
||||
elenco dictionary delle tab in cache da aggiornare con update svuotando da cache...
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.memLayer.addTabInCache(System.String)">
|
||||
<summary>
|
||||
aggiunge la stringa corrente nel dictionary delle tabelle messe in cache e da aggiornare su comando update
|
||||
</summary>
|
||||
<param name="nuovaTab"></param>
|
||||
</member>
|
||||
<member name="P:SteamWare.memLayer.valSess2SurvUpd">
|
||||
<summary>
|
||||
elenco dictionary dei valori in session da NON aggiornare con update...
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.memLayer.addValInSession(System.String,System.String)">
|
||||
<summary>
|
||||
aggiunge la stringa corrente nel dictionary delle tabelle messe in session che vanno preservate da comando update (es: oggetto selezionato...)
|
||||
@@ -3263,15 +3348,48 @@
|
||||
forza lo svuotamento delel tabelle indicate come in cache...
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.memLayer.tabelleInCache">
|
||||
<member name="T:SteamWare.PasswordHash">
|
||||
<summary>
|
||||
elenco dictionary delle tab in cache da aggiornare con update svuotando da cache...
|
||||
Salted password hashing with PBKDF2-SHA1.
|
||||
Author: havoc AT defuse.ca
|
||||
www: http://crackstation.net/hashing-security.htm
|
||||
Compatibility: .NET 3.0 and later.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.memLayer.valSess2SurvUpd">
|
||||
<member name="M:SteamWare.PasswordHash.CreateHash(System.String)">
|
||||
<summary>
|
||||
elenco dictionary dei valori in session da NON aggiornare con update...
|
||||
Creates a salted PBKDF2 hash of the password.
|
||||
</summary>
|
||||
<param name="password">The password to hash.</param>
|
||||
<returns>The hash of the password.</returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.PasswordHash.ValidatePassword(System.String,System.String)">
|
||||
<summary>
|
||||
Validates a password given a hash of the correct one.
|
||||
</summary>
|
||||
<param name="password">The password to check.</param>
|
||||
<param name="goodHash">A hash of the correct password.</param>
|
||||
<returns>True if the password is correct. False otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.PasswordHash.SlowEquals(System.Byte[],System.Byte[])">
|
||||
<summary>
|
||||
Compares two byte arrays in length-constant time. This comparison
|
||||
method is used so that password hashes cannot be extracted from
|
||||
on-line systems using a timing attack and then attacked off-line.
|
||||
</summary>
|
||||
<param name="a">The first byte array.</param>
|
||||
<param name="b">The second byte array.</param>
|
||||
<returns>True if both byte arrays are equal. False otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.PasswordHash.PBKDF2(System.String,System.Byte[],System.Int32,System.Int32)">
|
||||
<summary>
|
||||
Computes the PBKDF2-SHA1 hash of a password.
|
||||
</summary>
|
||||
<param name="password">The password to hash.</param>
|
||||
<param name="salt">The salt.</param>
|
||||
<param name="iterations">The PBKDF2 iteration count.</param>
|
||||
<param name="outputBytes">The length of the hash to generate, in bytes.</param>
|
||||
<returns>A hash of the password.</returns>
|
||||
</member>
|
||||
<member name="T:SteamWare.UserPage">
|
||||
<summary>
|
||||
@@ -3327,6 +3445,11 @@
|
||||
web control che disegna un grafico a torta
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.pieChart.Tipo">
|
||||
<summary>
|
||||
tipo di grafico (2D/3D)
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:SteamWare.pieChart._height">
|
||||
<summary>
|
||||
altezza di default
|
||||
@@ -3352,6 +3475,41 @@
|
||||
soglia minima 5% per mostrare il dato
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.pieChart.width">
|
||||
<summary>
|
||||
ampiezza del grafico
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.pieChart.height">
|
||||
<summary>
|
||||
altezza del grafico
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.pieChart.padding">
|
||||
<summary>
|
||||
padding grafico/container
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.pieChart.showLegend">
|
||||
<summary>
|
||||
boolean se si debba mostrale la legenda
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.pieChart.minPercent">
|
||||
<summary>
|
||||
percentuale minima da mostrare
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.pieChart.serie">
|
||||
<summary>
|
||||
serie di dati (tipizzata) ma mostrare
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.pieChart.Text">
|
||||
<summary>
|
||||
testo associato al controllo
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.pieChart.RenderContents(System.Web.UI.HtmlTextWriter)">
|
||||
<summary>
|
||||
renderizza il contenuto
|
||||
@@ -3397,46 +3555,6 @@
|
||||
<param name="hexString"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="P:SteamWare.pieChart.Tipo">
|
||||
<summary>
|
||||
tipo di grafico (2D/3D)
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.pieChart.width">
|
||||
<summary>
|
||||
ampiezza del grafico
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.pieChart.height">
|
||||
<summary>
|
||||
altezza del grafico
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.pieChart.padding">
|
||||
<summary>
|
||||
padding grafico/container
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.pieChart.showLegend">
|
||||
<summary>
|
||||
boolean se si debba mostrale la legenda
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.pieChart.minPercent">
|
||||
<summary>
|
||||
percentuale minima da mostrare
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.pieChart.serie">
|
||||
<summary>
|
||||
serie di dati (tipizzata) ma mostrare
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.pieChart.Text">
|
||||
<summary>
|
||||
testo associato al controllo
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.selDataVoc">
|
||||
<summary>
|
||||
Classe gestione metodi di accesso ai dati embeddati
|
||||
@@ -3675,11 +3793,71 @@
|
||||
<param name="url"></param>
|
||||
<param name="tipoNodo"></param>
|
||||
</member>
|
||||
<member name="P:SteamWare.user_std.diritti">
|
||||
<summary>
|
||||
restituisce la tabella diritti da session
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.user_std.permessi">
|
||||
<summary>
|
||||
tabella dei permessi utente
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.user_std.permessiWrite">
|
||||
<summary>
|
||||
tabella dei permessi utente di tipo "WRITE" enabled
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.user_std.#ctor">
|
||||
<summary>
|
||||
inizializza la gestione utente...
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.user_std.userNameAD">
|
||||
<summary>
|
||||
retituisce username AD
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.user_std.utente">
|
||||
<summary>
|
||||
oggetto utente con metodi get/set
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.user_std.passwd">
|
||||
<summary>
|
||||
oggetto password con metodi get/set
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.user_std.dominio">
|
||||
<summary>
|
||||
oggetto dominio con metodi get/set
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.user_std.modulo">
|
||||
<summary>
|
||||
oggetto modulo (applicazione) con metodi get/set
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.user_std.lingua">
|
||||
<summary>
|
||||
oggetto lingua utente con metodi get/set
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.user_std.currRunMode">
|
||||
<summary>
|
||||
oggetto runMode corrente
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.user_std.isForcedUser">
|
||||
<summary>
|
||||
restituisce true se utente forzato da forceUser.aspx
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.user_std.rigaUtente">
|
||||
<summary>
|
||||
restituisce i valori della riga utente da db
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.user_std.rigaUtenteDaMatricola(System.String)">
|
||||
<summary>
|
||||
restituisce riga utente data la matricola...
|
||||
@@ -3687,6 +3865,31 @@
|
||||
<param name="matricola">matricola</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="P:SteamWare.user_std.CognomeNomeMatr">
|
||||
<summary>
|
||||
restituisce una stringa formattata con cognome, nome e matricola
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.user_std.sigla">
|
||||
<summary>
|
||||
restituisce una stringa della sigla dell'utente
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.user_std.CognomeNome">
|
||||
<summary>
|
||||
restituisce una stringa formattata con cognome e nome
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.user_std.cognome">
|
||||
<summary>
|
||||
restituisce una stringa formattata con cognome
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.user_std.nome">
|
||||
<summary>
|
||||
restituisce una stringa formattata con nome
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.user_std.Traduci(System.String)">
|
||||
<summary>
|
||||
traduce il lemma nella lingua dell'user corrente
|
||||
@@ -3716,6 +3919,11 @@
|
||||
<param name="lemma"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="P:SteamWare.user_std.mappaSito">
|
||||
<summary>
|
||||
fornisce un file XML della mappa del sito abilitato per l'utente...
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.user_std.logOffUtente">
|
||||
<summary>
|
||||
LogOff utente con reset dati
|
||||
@@ -3775,6 +3983,11 @@
|
||||
<param name="username"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="P:SteamWare.user_std.isAuth">
|
||||
<summary>
|
||||
è un boolean che indica se in session ci siano user/dominio e quindi utente autenticato in rpecedenza...
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.user_std.isPageEnabled(System.String)">
|
||||
<summary>
|
||||
conta il numero di permessi utente per la pagina attuale e restituisce true se ne trova almeno 1
|
||||
@@ -3914,101 +4127,6 @@
|
||||
versione statica della classe utente come singleton UtenTeSignletoN
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.user_std.diritti">
|
||||
<summary>
|
||||
restituisce la tabella diritti da session
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.user_std.permessi">
|
||||
<summary>
|
||||
tabella dei permessi utente
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.user_std.permessiWrite">
|
||||
<summary>
|
||||
tabella dei permessi utente di tipo "WRITE" enabled
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.user_std.userNameAD">
|
||||
<summary>
|
||||
retituisce username AD
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.user_std.utente">
|
||||
<summary>
|
||||
oggetto utente con metodi get/set
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.user_std.passwd">
|
||||
<summary>
|
||||
oggetto password con metodi get/set
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.user_std.dominio">
|
||||
<summary>
|
||||
oggetto dominio con metodi get/set
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.user_std.modulo">
|
||||
<summary>
|
||||
oggetto modulo (applicazione) con metodi get/set
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.user_std.lingua">
|
||||
<summary>
|
||||
oggetto lingua utente con metodi get/set
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.user_std.currRunMode">
|
||||
<summary>
|
||||
oggetto runMode corrente
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.user_std.isForcedUser">
|
||||
<summary>
|
||||
restituisce true se utente forzato da forceUser.aspx
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.user_std.rigaUtente">
|
||||
<summary>
|
||||
restituisce i valori della riga utente da db
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.user_std.CognomeNomeMatr">
|
||||
<summary>
|
||||
restituisce una stringa formattata con cognome, nome e matricola
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.user_std.sigla">
|
||||
<summary>
|
||||
restituisce una stringa della sigla dell'utente
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.user_std.CognomeNome">
|
||||
<summary>
|
||||
restituisce una stringa formattata con cognome e nome
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.user_std.cognome">
|
||||
<summary>
|
||||
restituisce una stringa formattata con cognome
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.user_std.nome">
|
||||
<summary>
|
||||
restituisce una stringa formattata con nome
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.user_std.mappaSito">
|
||||
<summary>
|
||||
fornisce un file XML della mappa del sito abilitato per l'utente...
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.user_std.isAuth">
|
||||
<summary>
|
||||
è un boolean che indica se in session ci siano user/dominio e quindi utente autenticato in rpecedenza...
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:SteamWare.user_std.pagCorrente">
|
||||
<summary>
|
||||
pagina correntemente visualizzata (URL in sessione)
|
||||
@@ -4523,5 +4641,24 @@
|
||||
<param name="Passphrase"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="T:SteamWare.percentuali">
|
||||
<summary>
|
||||
classe gestione valori percentuali per semplificare edit utente (moltiplicati x 100 appunto)
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.percentuali.perc2num(System.String)">
|
||||
<summary>
|
||||
converte da percentuale a numero (es 5,3% --> 0.053)
|
||||
</summary>
|
||||
<param name="originalVal"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.percentuali.num2perc(System.String)">
|
||||
<summary>
|
||||
converte da numero a percentuale (es 0.053 --> 5,3%)
|
||||
</summary>
|
||||
<param name="originalVal"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
|
||||
Generated
+1
-1
@@ -1,7 +1,7 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.34014
|
||||
// Runtime Version:4.0.30319.42000
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
|
||||
Generated
+127
-47
@@ -23460,7 +23460,7 @@ SELECT UDC, CodCS, CodCliente, RagSociale, Particolare, DescParticolare, Disegno
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
private void InitCommandCollection() {
|
||||
this._commandCollection = new global::System.Data.SqlClient.SqlCommand[21];
|
||||
this._commandCollection = new global::System.Data.SqlClient.SqlCommand[24];
|
||||
this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
|
||||
this._commandCollection[0].Connection = this.Connection;
|
||||
this._commandCollection[0].CommandText = "SELECT *\r\nFROM dbo.ElencoCartellini";
|
||||
@@ -23555,78 +23555,96 @@ SELECT UDC, CodCS, CodCliente, RagSociale, Particolare, DescParticolare, Disegno
|
||||
this._commandCollection[12].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IdxPosizione", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[13] = new global::System.Data.SqlClient.SqlCommand();
|
||||
this._commandCollection[13].Connection = this.Connection;
|
||||
this._commandCollection[13].CommandText = "dbo.stp_getUDC_UnusedOlder";
|
||||
this._commandCollection[13].CommandText = "dbo.stp_UDC_getSenzaDC";
|
||||
this._commandCollection[13].CommandType = global::System.Data.CommandType.StoredProcedure;
|
||||
this._commandCollection[13].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[13].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodLista", global::System.Data.SqlDbType.VarChar, 12, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[13].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@UDC", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[14] = new global::System.Data.SqlClient.SqlCommand();
|
||||
this._commandCollection[14].Connection = this.Connection;
|
||||
this._commandCollection[14].CommandText = "dbo.stp_UDC_travasoQty";
|
||||
this._commandCollection[14].CommandText = "dbo.stp_UDC_getSenzaDeliberaPM";
|
||||
this._commandCollection[14].CommandType = global::System.Data.CommandType.StoredProcedure;
|
||||
this._commandCollection[14].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[14].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@UdcFrom", global::System.Data.SqlDbType.VarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[14].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@UdcDest", global::System.Data.SqlDbType.VarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[14].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodSoggetto", global::System.Data.SqlDbType.VarChar, 17, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[14].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodTipoDichiaraz", global::System.Data.SqlDbType.Char, 1, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[14].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodEvento", global::System.Data.SqlDbType.VarChar, 10, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[14].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Qta", global::System.Data.SqlDbType.Decimal, 9, global::System.Data.ParameterDirection.Input, 10, 2, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[14].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@UDC", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[15] = new global::System.Data.SqlClient.SqlCommand();
|
||||
this._commandCollection[15].Connection = this.Connection;
|
||||
this._commandCollection[15].CommandText = "dbo.stp_UDC_Liq_fullUpdate";
|
||||
this._commandCollection[15].CommandText = "dbo.stp_getUDC_UnusedOlder";
|
||||
this._commandCollection[15].CommandType = global::System.Data.CommandType.StoredProcedure;
|
||||
this._commandCollection[15].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[15].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@SourceAL", global::System.Data.SqlDbType.VarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[15].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@TipoAlAnc", global::System.Data.SqlDbType.Char, 1, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[15].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@UDC", global::System.Data.SqlDbType.VarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[15].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodImballo", global::System.Data.SqlDbType.VarChar, 15, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[15].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Note", global::System.Data.SqlDbType.VarChar, 500, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[15].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DataOra", global::System.Data.SqlDbType.DateTime, 8, global::System.Data.ParameterDirection.Input, 23, 3, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[15].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodSoggetto", global::System.Data.SqlDbType.NVarChar, 17, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[15].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodLista", global::System.Data.SqlDbType.VarChar, 12, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[16] = new global::System.Data.SqlClient.SqlCommand();
|
||||
this._commandCollection[16].Connection = this.Connection;
|
||||
this._commandCollection[16].CommandText = "dbo.stp_UDC_Liq_Ricarica";
|
||||
this._commandCollection[16].CommandText = "dbo.stp_UDC_setDL_DC";
|
||||
this._commandCollection[16].CommandType = global::System.Data.CommandType.StoredProcedure;
|
||||
this._commandCollection[16].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[16].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@UDC", global::System.Data.SqlDbType.VarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[16].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@idxCellaTo", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[16].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@tempAL", global::System.Data.SqlDbType.VarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[16].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DataOra", global::System.Data.SqlDbType.DateTime, 8, global::System.Data.ParameterDirection.Input, 23, 3, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[16].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodSoggetto", global::System.Data.SqlDbType.NVarChar, 17, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[16].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@UDC", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[17] = new global::System.Data.SqlClient.SqlCommand();
|
||||
this._commandCollection[17].Connection = this.Connection;
|
||||
this._commandCollection[17].CommandText = "dbo.stp_UDC_updateIdxPosizione";
|
||||
this._commandCollection[17].CommandText = "dbo.stp_UDC_travasoQty";
|
||||
this._commandCollection[17].CommandType = global::System.Data.CommandType.StoredProcedure;
|
||||
this._commandCollection[17].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[17].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@UDC", global::System.Data.SqlDbType.VarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[17].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IdxPosizione", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[17].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodSoggetto", global::System.Data.SqlDbType.NVarChar, 17, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[17].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@UdcFrom", global::System.Data.SqlDbType.VarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[17].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@UdcDest", global::System.Data.SqlDbType.VarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[17].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodSoggetto", global::System.Data.SqlDbType.VarChar, 17, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[17].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodTipoDichiaraz", global::System.Data.SqlDbType.Char, 1, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[17].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodEvento", global::System.Data.SqlDbType.VarChar, 10, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[17].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Qta", global::System.Data.SqlDbType.Decimal, 9, global::System.Data.ParameterDirection.Input, 10, 2, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[18] = new global::System.Data.SqlClient.SqlCommand();
|
||||
this._commandCollection[18].Connection = this.Connection;
|
||||
this._commandCollection[18].CommandText = "dbo.stp_UDC_updateNote";
|
||||
this._commandCollection[18].CommandText = "dbo.stp_UDC_Liq_fullUpdate";
|
||||
this._commandCollection[18].CommandType = global::System.Data.CommandType.StoredProcedure;
|
||||
this._commandCollection[18].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[18].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@UDC", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[18].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@note", global::System.Data.SqlDbType.NVarChar, 500, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[18].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@SourceAL", global::System.Data.SqlDbType.VarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[18].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@TipoAlAnc", global::System.Data.SqlDbType.Char, 1, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[18].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@UDC", global::System.Data.SqlDbType.VarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[18].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodImballo", global::System.Data.SqlDbType.VarChar, 15, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[18].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Note", global::System.Data.SqlDbType.VarChar, 500, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[18].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DataOra", global::System.Data.SqlDbType.DateTime, 8, global::System.Data.ParameterDirection.Input, 23, 3, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[18].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodSoggetto", global::System.Data.SqlDbType.NVarChar, 17, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[19] = new global::System.Data.SqlClient.SqlCommand();
|
||||
this._commandCollection[19].Connection = this.Connection;
|
||||
this._commandCollection[19].CommandText = "dbo.stp_UDC_updateNotePosizione";
|
||||
this._commandCollection[19].CommandText = "dbo.stp_UDC_Liq_Ricarica";
|
||||
this._commandCollection[19].CommandType = global::System.Data.CommandType.StoredProcedure;
|
||||
this._commandCollection[19].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[19].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@UDC", global::System.Data.SqlDbType.VarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[19].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IdxPosizione", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[19].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@note", global::System.Data.SqlDbType.NVarChar, 500, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[19].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@idxCellaTo", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[19].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@tempAL", global::System.Data.SqlDbType.VarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[19].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DataOra", global::System.Data.SqlDbType.DateTime, 8, global::System.Data.ParameterDirection.Input, 23, 3, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[19].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodSoggetto", global::System.Data.SqlDbType.NVarChar, 17, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[20] = new global::System.Data.SqlClient.SqlCommand();
|
||||
this._commandCollection[20].Connection = this.Connection;
|
||||
this._commandCollection[20].CommandText = "dbo.stp_UDC_updateQty";
|
||||
this._commandCollection[20].CommandText = "dbo.stp_UDC_updateIdxPosizione";
|
||||
this._commandCollection[20].CommandType = global::System.Data.CommandType.StoredProcedure;
|
||||
this._commandCollection[20].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[20].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@UDC", global::System.Data.SqlDbType.VarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[20].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodSoggetto", global::System.Data.SqlDbType.VarChar, 17, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[20].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodTipoDichiaraz", global::System.Data.SqlDbType.Char, 1, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[20].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodEvento", global::System.Data.SqlDbType.VarChar, 10, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[20].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Qta", global::System.Data.SqlDbType.Decimal, 9, global::System.Data.ParameterDirection.Input, 10, 2, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[20].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IdxPosizione", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[20].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodSoggetto", global::System.Data.SqlDbType.NVarChar, 17, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[21] = new global::System.Data.SqlClient.SqlCommand();
|
||||
this._commandCollection[21].Connection = this.Connection;
|
||||
this._commandCollection[21].CommandText = "dbo.stp_UDC_updateNote";
|
||||
this._commandCollection[21].CommandType = global::System.Data.CommandType.StoredProcedure;
|
||||
this._commandCollection[21].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[21].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@UDC", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[21].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@note", global::System.Data.SqlDbType.NVarChar, 500, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[21].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodSoggetto", global::System.Data.SqlDbType.NVarChar, 17, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[22] = new global::System.Data.SqlClient.SqlCommand();
|
||||
this._commandCollection[22].Connection = this.Connection;
|
||||
this._commandCollection[22].CommandText = "dbo.stp_UDC_updateNotePosizione";
|
||||
this._commandCollection[22].CommandType = global::System.Data.CommandType.StoredProcedure;
|
||||
this._commandCollection[22].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[22].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@UDC", global::System.Data.SqlDbType.VarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[22].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IdxPosizione", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[22].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@note", global::System.Data.SqlDbType.NVarChar, 500, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[22].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodSoggetto", global::System.Data.SqlDbType.NVarChar, 17, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[23] = new global::System.Data.SqlClient.SqlCommand();
|
||||
this._commandCollection[23].Connection = this.Connection;
|
||||
this._commandCollection[23].CommandText = "dbo.stp_UDC_updateQty";
|
||||
this._commandCollection[23].CommandType = global::System.Data.CommandType.StoredProcedure;
|
||||
this._commandCollection[23].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[23].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@UDC", global::System.Data.SqlDbType.VarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[23].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodSoggetto", global::System.Data.SqlDbType.VarChar, 17, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[23].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodTipoDichiaraz", global::System.Data.SqlDbType.Char, 1, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[23].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodEvento", global::System.Data.SqlDbType.VarChar, 10, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[23].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Qta", global::System.Data.SqlDbType.Decimal, 9, global::System.Data.ParameterDirection.Input, 10, 2, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
@@ -23940,8 +23958,42 @@ SELECT UDC, CodCS, CodCliente, RagSociale, Particolare, DescParticolare, Disegno
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
|
||||
[global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, false)]
|
||||
public virtual DS_magazzino.ElencoCartelliniDataTable getUdcUnusedOlder(string CodLista) {
|
||||
public virtual DS_magazzino.ElencoCartelliniDataTable getSenzaDC(string UDC) {
|
||||
this.Adapter.SelectCommand = this.CommandCollection[13];
|
||||
if ((UDC == null)) {
|
||||
this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
|
||||
}
|
||||
else {
|
||||
this.Adapter.SelectCommand.Parameters[1].Value = ((string)(UDC));
|
||||
}
|
||||
DS_magazzino.ElencoCartelliniDataTable dataTable = new DS_magazzino.ElencoCartelliniDataTable();
|
||||
this.Adapter.Fill(dataTable);
|
||||
return dataTable;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
|
||||
[global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, false)]
|
||||
public virtual DS_magazzino.ElencoCartelliniDataTable getSenzaDeliberaPM(string UDC) {
|
||||
this.Adapter.SelectCommand = this.CommandCollection[14];
|
||||
if ((UDC == null)) {
|
||||
this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
|
||||
}
|
||||
else {
|
||||
this.Adapter.SelectCommand.Parameters[1].Value = ((string)(UDC));
|
||||
}
|
||||
DS_magazzino.ElencoCartelliniDataTable dataTable = new DS_magazzino.ElencoCartelliniDataTable();
|
||||
this.Adapter.Fill(dataTable);
|
||||
return dataTable;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
|
||||
[global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, false)]
|
||||
public virtual DS_magazzino.ElencoCartelliniDataTable getUdcUnusedOlder(string CodLista) {
|
||||
this.Adapter.SelectCommand = this.CommandCollection[15];
|
||||
if ((CodLista == null)) {
|
||||
this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
|
||||
}
|
||||
@@ -23958,7 +24010,7 @@ SELECT UDC, CodCS, CodCliente, RagSociale, Particolare, DescParticolare, Disegno
|
||||
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
|
||||
[global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, false)]
|
||||
public virtual DS_magazzino.ElencoCartelliniDataTable UdcLiqFullUpdate(string SourceAL, string TipoAlAnc, string UDC, string CodImballo, string Note, global::System.Nullable<global::System.DateTime> DataOra, string CodSoggetto) {
|
||||
this.Adapter.SelectCommand = this.CommandCollection[15];
|
||||
this.Adapter.SelectCommand = this.CommandCollection[18];
|
||||
if ((SourceAL == null)) {
|
||||
this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
|
||||
}
|
||||
@@ -24011,7 +24063,7 @@ SELECT UDC, CodCS, CodCliente, RagSociale, Particolare, DescParticolare, Disegno
|
||||
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
|
||||
[global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, false)]
|
||||
public virtual DS_magazzino.ElencoCartelliniDataTable UdcLiqRicarica(string UDC, global::System.Nullable<int> idxCellaTo, string tempAL, global::System.Nullable<global::System.DateTime> DataOra, string CodSoggetto) {
|
||||
this.Adapter.SelectCommand = this.CommandCollection[16];
|
||||
this.Adapter.SelectCommand = this.CommandCollection[19];
|
||||
if ((UDC == null)) {
|
||||
this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
|
||||
}
|
||||
@@ -24052,7 +24104,7 @@ SELECT UDC, CodCS, CodCliente, RagSociale, Particolare, DescParticolare, Disegno
|
||||
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
|
||||
[global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, false)]
|
||||
public virtual DS_magazzino.ElencoCartelliniDataTable updateIdxPosizione(string UDC, global::System.Nullable<int> IdxPosizione, string CodSoggetto) {
|
||||
this.Adapter.SelectCommand = this.CommandCollection[17];
|
||||
this.Adapter.SelectCommand = this.CommandCollection[20];
|
||||
if ((UDC == null)) {
|
||||
this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
|
||||
}
|
||||
@@ -24081,7 +24133,7 @@ SELECT UDC, CodCS, CodCliente, RagSociale, Particolare, DescParticolare, Disegno
|
||||
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
|
||||
[global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, false)]
|
||||
public virtual DS_magazzino.ElencoCartelliniDataTable updateNotePosizione(string UDC, global::System.Nullable<int> IdxPosizione, string note, string CodSoggetto) {
|
||||
this.Adapter.SelectCommand = this.CommandCollection[19];
|
||||
this.Adapter.SelectCommand = this.CommandCollection[22];
|
||||
if ((UDC == null)) {
|
||||
this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
|
||||
}
|
||||
@@ -24116,7 +24168,7 @@ SELECT UDC, CodCS, CodCliente, RagSociale, Particolare, DescParticolare, Disegno
|
||||
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
|
||||
[global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, false)]
|
||||
public virtual DS_magazzino.ElencoCartelliniDataTable updateQty(string UDC, string CodSoggetto, string CodTipoDichiaraz, string CodEvento, global::System.Nullable<decimal> Qta) {
|
||||
this.Adapter.SelectCommand = this.CommandCollection[20];
|
||||
this.Adapter.SelectCommand = this.CommandCollection[23];
|
||||
if ((UDC == null)) {
|
||||
this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
|
||||
}
|
||||
@@ -25159,11 +25211,39 @@ SELECT UDC, CodCS, CodCliente, RagSociale, Particolare, DescParticolare, Disegno
|
||||
return returnValue;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
|
||||
public virtual int setDL_DC(string UDC) {
|
||||
global::System.Data.SqlClient.SqlCommand command = this.CommandCollection[16];
|
||||
if ((UDC == null)) {
|
||||
command.Parameters[1].Value = global::System.DBNull.Value;
|
||||
}
|
||||
else {
|
||||
command.Parameters[1].Value = ((string)(UDC));
|
||||
}
|
||||
global::System.Data.ConnectionState previousConnectionState = command.Connection.State;
|
||||
if (((command.Connection.State & global::System.Data.ConnectionState.Open)
|
||||
!= global::System.Data.ConnectionState.Open)) {
|
||||
command.Connection.Open();
|
||||
}
|
||||
int returnValue;
|
||||
try {
|
||||
returnValue = command.ExecuteNonQuery();
|
||||
}
|
||||
finally {
|
||||
if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
|
||||
command.Connection.Close();
|
||||
}
|
||||
}
|
||||
return returnValue;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
|
||||
public virtual int travasoQty(string UdcFrom, string UdcDest, string CodSoggetto, string CodTipoDichiaraz, string CodEvento, global::System.Nullable<decimal> Qta) {
|
||||
global::System.Data.SqlClient.SqlCommand command = this.CommandCollection[14];
|
||||
global::System.Data.SqlClient.SqlCommand command = this.CommandCollection[17];
|
||||
if ((UdcFrom == null)) {
|
||||
command.Parameters[1].Value = global::System.DBNull.Value;
|
||||
}
|
||||
@@ -25221,7 +25301,7 @@ SELECT UDC, CodCS, CodCliente, RagSociale, Particolare, DescParticolare, Disegno
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
|
||||
public virtual int updateNote(string UDC, string note, string CodSoggetto) {
|
||||
global::System.Data.SqlClient.SqlCommand command = this.CommandCollection[18];
|
||||
global::System.Data.SqlClient.SqlCommand command = this.CommandCollection[21];
|
||||
if ((UDC == null)) {
|
||||
command.Parameters[1].Value = global::System.DBNull.Value;
|
||||
}
|
||||
|
||||
+59
-26
@@ -373,6 +373,28 @@ SELECT UDC, CodCS, CodCliente, RagSociale, Particolare, DescParticolare, Disegno
|
||||
</DbCommand>
|
||||
</SelectCommand>
|
||||
</DbSource>
|
||||
<DbSource ConnectionRef="GMWConnectionString (Settings)" DbObjectName="TK_GMW.dbo.stp_UDC_getSenzaDC" DbObjectType="StoredProcedure" GenerateMethods="Get" GenerateShortCommands="true" GeneratorGetMethodName="getSenzaDC" GetMethodModifier="Public" GetMethodName="getSenzaDC" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="getSenzaDC" UserSourceName="getSenzaDC">
|
||||
<SelectCommand>
|
||||
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
|
||||
<CommandText>dbo.stp_UDC_getSenzaDC</CommandText>
|
||||
<Parameters>
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="ReturnValue" ParameterName="@RETURN_VALUE" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@UDC" Precision="0" ProviderType="NVarChar" Scale="0" Size="50" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
</Parameters>
|
||||
</DbCommand>
|
||||
</SelectCommand>
|
||||
</DbSource>
|
||||
<DbSource ConnectionRef="GMWConnectionString (Settings)" DbObjectName="TK_GMW.dbo.stp_UDC_getSenzaDeliberaPM" DbObjectType="StoredProcedure" GenerateMethods="Get" GenerateShortCommands="true" GeneratorGetMethodName="getSenzaDeliberaPM" GetMethodModifier="Public" GetMethodName="getSenzaDeliberaPM" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="getSenzaDeliberaPM" UserSourceName="getSenzaDeliberaPM">
|
||||
<SelectCommand>
|
||||
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
|
||||
<CommandText>dbo.stp_UDC_getSenzaDeliberaPM</CommandText>
|
||||
<Parameters>
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="ReturnValue" ParameterName="@RETURN_VALUE" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@UDC" Precision="0" ProviderType="NVarChar" Scale="0" Size="50" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
</Parameters>
|
||||
</DbCommand>
|
||||
</SelectCommand>
|
||||
</DbSource>
|
||||
<DbSource ConnectionRef="GMWConnectionString (Settings)" DbObjectName="GMW.dbo.stp_getUDC_UnusedOlder" DbObjectType="StoredProcedure" GenerateMethods="Get" GenerateShortCommands="true" GeneratorGetMethodName="getUdcUnusedOlder" GetMethodModifier="Public" GetMethodName="getUdcUnusedOlder" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="getUdcUnusedOlder" UserSourceName="getUdcUnusedOlder">
|
||||
<SelectCommand>
|
||||
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
|
||||
@@ -384,6 +406,17 @@ SELECT UDC, CodCS, CodCliente, RagSociale, Particolare, DescParticolare, Disegno
|
||||
</DbCommand>
|
||||
</SelectCommand>
|
||||
</DbSource>
|
||||
<DbSource ConnectionRef="GMWConnectionString (Settings)" DbObjectName="TK_GMW.dbo.stp_UDC_setDL_DC" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="setDL_DC" Modifier="Public" Name="setDL_DC" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy3" UserSourceName="setDL_DC">
|
||||
<SelectCommand>
|
||||
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
|
||||
<CommandText>dbo.stp_UDC_setDL_DC</CommandText>
|
||||
<Parameters>
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="ReturnValue" ParameterName="@RETURN_VALUE" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@UDC" Precision="0" ProviderType="NVarChar" Scale="0" Size="50" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
</Parameters>
|
||||
</DbCommand>
|
||||
</SelectCommand>
|
||||
</DbSource>
|
||||
<DbSource ConnectionRef="GMWConnectionString (Settings)" DbObjectName="GMW.dbo.stp_UDC_travasoQty" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="travasoQty" Modifier="Public" Name="travasoQty" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy1" UserSourceName="travasoQty">
|
||||
<SelectCommand>
|
||||
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
|
||||
@@ -5420,7 +5453,7 @@ SELECT Trattamento, AL, DataTrattEnd, Durezza, Punzone, DataDur, CodSoggettoDur,
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="StoricoAzioniOperatore" msprop:Generator_TableClassName="StoricoAzioniOperatoreDataTable" msprop:Generator_TableVarName="tableStoricoAzioniOperatore" msprop:Generator_RowChangedName="StoricoAzioniOperatoreRowChanged" msprop:Generator_TablePropName="StoricoAzioniOperatore" msprop:Generator_RowDeletingName="StoricoAzioniOperatoreRowDeleting" msprop:Generator_RowChangingName="StoricoAzioniOperatoreRowChanging" msprop:Generator_RowEvHandlerName="StoricoAzioniOperatoreRowChangeEventHandler" msprop:Generator_RowDeletedName="StoricoAzioniOperatoreRowDeleted" msprop:Generator_RowClassName="StoricoAzioniOperatoreRow" msprop:Generator_UserTableName="StoricoAzioniOperatore" msprop:Generator_RowEvArgName="StoricoAzioniOperatoreRowChangeEvent">
|
||||
<xs:element name="StoricoAzioniOperatore" msprop:Generator_TableClassName="StoricoAzioniOperatoreDataTable" msprop:Generator_TableVarName="tableStoricoAzioniOperatore" msprop:Generator_TablePropName="StoricoAzioniOperatore" msprop:Generator_RowDeletingName="StoricoAzioniOperatoreRowDeleting" msprop:Generator_RowChangingName="StoricoAzioniOperatoreRowChanging" msprop:Generator_RowEvHandlerName="StoricoAzioniOperatoreRowChangeEventHandler" msprop:Generator_RowDeletedName="StoricoAzioniOperatoreRowDeleted" msprop:Generator_UserTableName="StoricoAzioniOperatore" msprop:Generator_RowChangedName="StoricoAzioniOperatoreRowChanged" msprop:Generator_RowEvArgName="StoricoAzioniOperatoreRowChangeEvent" msprop:Generator_RowClassName="StoricoAzioniOperatoreRow">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="idxEvento" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnidxEvento" msprop:Generator_ColumnPropNameInRow="idxEvento" msprop:Generator_ColumnPropNameInTable="idxEventoColumn" msprop:Generator_UserColumnName="idxEvento" type="xs:int" />
|
||||
@@ -5477,7 +5510,7 @@ SELECT Trattamento, AL, DataTrattEnd, Durezza, Punzone, DataDur, CodSoggettoDur,
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="stp_MagFifoByParticolare" msprop:Generator_TableClassName="stp_MagFifoByParticolareDataTable" msprop:Generator_TableVarName="tablestp_MagFifoByParticolare" msprop:Generator_TablePropName="stp_MagFifoByParticolare" msprop:Generator_RowDeletingName="stp_MagFifoByParticolareRowDeleting" msprop:Generator_RowChangingName="stp_MagFifoByParticolareRowChanging" msprop:Generator_RowEvHandlerName="stp_MagFifoByParticolareRowChangeEventHandler" msprop:Generator_RowDeletedName="stp_MagFifoByParticolareRowDeleted" msprop:Generator_UserTableName="stp_MagFifoByParticolare" msprop:Generator_RowChangedName="stp_MagFifoByParticolareRowChanged" msprop:Generator_RowEvArgName="stp_MagFifoByParticolareRowChangeEvent" msprop:Generator_RowClassName="stp_MagFifoByParticolareRow">
|
||||
<xs:element name="stp_MagFifoByParticolare" msprop:Generator_TableClassName="stp_MagFifoByParticolareDataTable" msprop:Generator_TableVarName="tablestp_MagFifoByParticolare" msprop:Generator_RowChangedName="stp_MagFifoByParticolareRowChanged" msprop:Generator_TablePropName="stp_MagFifoByParticolare" msprop:Generator_RowDeletingName="stp_MagFifoByParticolareRowDeleting" msprop:Generator_RowChangingName="stp_MagFifoByParticolareRowChanging" msprop:Generator_RowEvHandlerName="stp_MagFifoByParticolareRowChangeEventHandler" msprop:Generator_RowDeletedName="stp_MagFifoByParticolareRowDeleted" msprop:Generator_RowClassName="stp_MagFifoByParticolareRow" msprop:Generator_UserTableName="stp_MagFifoByParticolare" msprop:Generator_RowEvArgName="stp_MagFifoByParticolareRowChangeEvent">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="IdxBlocco" msprop:Generator_ColumnVarNameInTable="columnIdxBlocco" msprop:Generator_ColumnPropNameInRow="IdxBlocco" msprop:Generator_ColumnPropNameInTable="IdxBloccoColumn" msprop:Generator_UserColumnName="IdxBlocco" type="xs:int" />
|
||||
@@ -5509,7 +5542,7 @@ SELECT Trattamento, AL, DataTrattEnd, Durezza, Punzone, DataDur, CodSoggettoDur,
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="stp_UDC_FifoByParticolareBlocco" msprop:Generator_TableClassName="stp_UDC_FifoByParticolareBloccoDataTable" msprop:Generator_TableVarName="tablestp_UDC_FifoByParticolareBlocco" msprop:Generator_TablePropName="stp_UDC_FifoByParticolareBlocco" msprop:Generator_RowDeletingName="stp_UDC_FifoByParticolareBloccoRowDeleting" msprop:Generator_RowChangingName="stp_UDC_FifoByParticolareBloccoRowChanging" msprop:Generator_RowEvHandlerName="stp_UDC_FifoByParticolareBloccoRowChangeEventHandler" msprop:Generator_RowDeletedName="stp_UDC_FifoByParticolareBloccoRowDeleted" msprop:Generator_UserTableName="stp_UDC_FifoByParticolareBlocco" msprop:Generator_RowChangedName="stp_UDC_FifoByParticolareBloccoRowChanged" msprop:Generator_RowEvArgName="stp_UDC_FifoByParticolareBloccoRowChangeEvent" msprop:Generator_RowClassName="stp_UDC_FifoByParticolareBloccoRow">
|
||||
<xs:element name="stp_UDC_FifoByParticolareBlocco" msprop:Generator_TableClassName="stp_UDC_FifoByParticolareBloccoDataTable" msprop:Generator_TableVarName="tablestp_UDC_FifoByParticolareBlocco" msprop:Generator_RowChangedName="stp_UDC_FifoByParticolareBloccoRowChanged" msprop:Generator_TablePropName="stp_UDC_FifoByParticolareBlocco" msprop:Generator_RowDeletingName="stp_UDC_FifoByParticolareBloccoRowDeleting" msprop:Generator_RowChangingName="stp_UDC_FifoByParticolareBloccoRowChanging" msprop:Generator_RowEvHandlerName="stp_UDC_FifoByParticolareBloccoRowChangeEventHandler" msprop:Generator_RowDeletedName="stp_UDC_FifoByParticolareBloccoRowDeleted" msprop:Generator_RowClassName="stp_UDC_FifoByParticolareBloccoRow" msprop:Generator_UserTableName="stp_UDC_FifoByParticolareBlocco" msprop:Generator_RowEvArgName="stp_UDC_FifoByParticolareBloccoRowChangeEvent">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="UDC" msprop:Generator_ColumnVarNameInTable="columnUDC" msprop:Generator_ColumnPropNameInRow="UDC" msprop:Generator_ColumnPropNameInTable="UDCColumn" msprop:Generator_UserColumnName="UDC">
|
||||
@@ -5531,7 +5564,7 @@ SELECT Trattamento, AL, DataTrattEnd, Durezza, Punzone, DataDur, CodSoggettoDur,
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="ElencoPostazioni" msprop:Generator_TableClassName="ElencoPostazioniDataTable" msprop:Generator_TableVarName="tableElencoPostazioni" msprop:Generator_RowChangedName="ElencoPostazioniRowChanged" msprop:Generator_TablePropName="ElencoPostazioni" msprop:Generator_RowDeletingName="ElencoPostazioniRowDeleting" msprop:Generator_RowChangingName="ElencoPostazioniRowChanging" msprop:Generator_RowEvHandlerName="ElencoPostazioniRowChangeEventHandler" msprop:Generator_RowDeletedName="ElencoPostazioniRowDeleted" msprop:Generator_RowClassName="ElencoPostazioniRow" msprop:Generator_UserTableName="ElencoPostazioni" msprop:Generator_RowEvArgName="ElencoPostazioniRowChangeEvent">
|
||||
<xs:element name="ElencoPostazioni" msprop:Generator_TableClassName="ElencoPostazioniDataTable" msprop:Generator_TableVarName="tableElencoPostazioni" msprop:Generator_TablePropName="ElencoPostazioni" msprop:Generator_RowDeletingName="ElencoPostazioniRowDeleting" msprop:Generator_RowChangingName="ElencoPostazioniRowChanging" msprop:Generator_RowEvHandlerName="ElencoPostazioniRowChangeEventHandler" msprop:Generator_RowDeletedName="ElencoPostazioniRowDeleted" msprop:Generator_UserTableName="ElencoPostazioni" msprop:Generator_RowChangedName="ElencoPostazioniRowChanged" msprop:Generator_RowEvArgName="ElencoPostazioniRowChangeEvent" msprop:Generator_RowClassName="ElencoPostazioniRow">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="codPostazione" msprop:Generator_ColumnVarNameInTable="columncodPostazione" msprop:Generator_ColumnPropNameInRow="codPostazione" msprop:Generator_ColumnPropNameInTable="codPostazioneColumn" msprop:Generator_UserColumnName="codPostazione">
|
||||
@@ -5565,7 +5598,7 @@ SELECT Trattamento, AL, DataTrattEnd, Durezza, Punzone, DataDur, CodSoggettoDur,
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="AnagLinee" msprop:Generator_TableClassName="AnagLineeDataTable" msprop:Generator_TableVarName="tableAnagLinee" msprop:Generator_TablePropName="AnagLinee" msprop:Generator_RowDeletingName="AnagLineeRowDeleting" msprop:Generator_RowChangingName="AnagLineeRowChanging" msprop:Generator_RowEvHandlerName="AnagLineeRowChangeEventHandler" msprop:Generator_RowDeletedName="AnagLineeRowDeleted" msprop:Generator_UserTableName="AnagLinee" msprop:Generator_RowChangedName="AnagLineeRowChanged" msprop:Generator_RowEvArgName="AnagLineeRowChangeEvent" msprop:Generator_RowClassName="AnagLineeRow">
|
||||
<xs:element name="AnagLinee" msprop:Generator_TableClassName="AnagLineeDataTable" msprop:Generator_TableVarName="tableAnagLinee" msprop:Generator_RowChangedName="AnagLineeRowChanged" msprop:Generator_TablePropName="AnagLinee" msprop:Generator_RowDeletingName="AnagLineeRowDeleting" msprop:Generator_RowChangingName="AnagLineeRowChanging" msprop:Generator_RowEvHandlerName="AnagLineeRowChangeEventHandler" msprop:Generator_RowDeletedName="AnagLineeRowDeleted" msprop:Generator_RowClassName="AnagLineeRow" msprop:Generator_UserTableName="AnagLinee" msprop:Generator_RowEvArgName="AnagLineeRowChangeEvent">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="CodLinea" msprop:Generator_ColumnVarNameInTable="columnCodLinea" msprop:Generator_ColumnPropNameInRow="CodLinea" msprop:Generator_ColumnPropNameInTable="CodLineaColumn" msprop:Generator_UserColumnName="CodLinea">
|
||||
@@ -5621,14 +5654,14 @@ SELECT Trattamento, AL, DataTrattEnd, Durezza, Punzone, DataDur, CodSoggettoDur,
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="stp_ParticolareInOutOk" msprop:Generator_TableClassName="stp_ParticolareInOutOkDataTable" msprop:Generator_TableVarName="tablestp_ParticolareInOutOk" msprop:Generator_RowChangedName="stp_ParticolareInOutOkRowChanged" msprop:Generator_TablePropName="stp_ParticolareInOutOk" msprop:Generator_RowDeletingName="stp_ParticolareInOutOkRowDeleting" msprop:Generator_RowChangingName="stp_ParticolareInOutOkRowChanging" msprop:Generator_RowEvHandlerName="stp_ParticolareInOutOkRowChangeEventHandler" msprop:Generator_RowDeletedName="stp_ParticolareInOutOkRowDeleted" msprop:Generator_RowClassName="stp_ParticolareInOutOkRow" msprop:Generator_UserTableName="stp_ParticolareInOutOk" msprop:Generator_RowEvArgName="stp_ParticolareInOutOkRowChangeEvent">
|
||||
<xs:element name="stp_ParticolareInOutOk" msprop:Generator_TableClassName="stp_ParticolareInOutOkDataTable" msprop:Generator_TableVarName="tablestp_ParticolareInOutOk" msprop:Generator_TablePropName="stp_ParticolareInOutOk" msprop:Generator_RowDeletingName="stp_ParticolareInOutOkRowDeleting" msprop:Generator_RowChangingName="stp_ParticolareInOutOkRowChanging" msprop:Generator_RowEvHandlerName="stp_ParticolareInOutOkRowChangeEventHandler" msprop:Generator_RowDeletedName="stp_ParticolareInOutOkRowDeleted" msprop:Generator_UserTableName="stp_ParticolareInOutOk" msprop:Generator_RowChangedName="stp_ParticolareInOutOkRowChanged" msprop:Generator_RowEvArgName="stp_ParticolareInOutOkRowChangeEvent" msprop:Generator_RowClassName="stp_ParticolareInOutOkRow">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="Trovati" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnTrovati" msprop:Generator_ColumnPropNameInRow="Trovati" msprop:Generator_ColumnPropNameInTable="TrovatiColumn" msprop:Generator_UserColumnName="Trovati" type="xs:int" minOccurs="0" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="Attr2UDC" msprop:Generator_TableClassName="Attr2UDCDataTable" msprop:Generator_TableVarName="tableAttr2UDC" msprop:Generator_TablePropName="Attr2UDC" msprop:Generator_RowDeletingName="Attr2UDCRowDeleting" msprop:Generator_RowChangingName="Attr2UDCRowChanging" msprop:Generator_RowEvHandlerName="Attr2UDCRowChangeEventHandler" msprop:Generator_RowDeletedName="Attr2UDCRowDeleted" msprop:Generator_UserTableName="Attr2UDC" msprop:Generator_RowChangedName="Attr2UDCRowChanged" msprop:Generator_RowEvArgName="Attr2UDCRowChangeEvent" msprop:Generator_RowClassName="Attr2UDCRow">
|
||||
<xs:element name="Attr2UDC" msprop:Generator_TableClassName="Attr2UDCDataTable" msprop:Generator_TableVarName="tableAttr2UDC" msprop:Generator_RowChangedName="Attr2UDCRowChanged" msprop:Generator_TablePropName="Attr2UDC" msprop:Generator_RowDeletingName="Attr2UDCRowDeleting" msprop:Generator_RowChangingName="Attr2UDCRowChanging" msprop:Generator_RowEvHandlerName="Attr2UDCRowChangeEventHandler" msprop:Generator_RowDeletedName="Attr2UDCRowDeleted" msprop:Generator_RowClassName="Attr2UDCRow" msprop:Generator_UserTableName="Attr2UDC" msprop:Generator_RowEvArgName="Attr2UDCRowChangeEvent">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="idxAttr" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnidxAttr" msprop:Generator_ColumnPropNameInRow="idxAttr" msprop:Generator_ColumnPropNameInTable="idxAttrColumn" msprop:Generator_UserColumnName="idxAttr" type="xs:int" />
|
||||
@@ -5664,7 +5697,7 @@ SELECT Trattamento, AL, DataTrattEnd, Durezza, Punzone, DataDur, CodSoggettoDur,
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="ElencoAssiemi" msprop:Generator_TableClassName="ElencoAssiemiDataTable" msprop:Generator_TableVarName="tableElencoAssiemi" msprop:Generator_TablePropName="ElencoAssiemi" msprop:Generator_RowDeletingName="ElencoAssiemiRowDeleting" msprop:Generator_RowChangingName="ElencoAssiemiRowChanging" msprop:Generator_RowEvHandlerName="ElencoAssiemiRowChangeEventHandler" msprop:Generator_RowDeletedName="ElencoAssiemiRowDeleted" msprop:Generator_UserTableName="ElencoAssiemi" msprop:Generator_RowChangedName="ElencoAssiemiRowChanged" msprop:Generator_RowEvArgName="ElencoAssiemiRowChangeEvent" msprop:Generator_RowClassName="ElencoAssiemiRow">
|
||||
<xs:element name="ElencoAssiemi" msprop:Generator_TableClassName="ElencoAssiemiDataTable" msprop:Generator_TableVarName="tableElencoAssiemi" msprop:Generator_RowChangedName="ElencoAssiemiRowChanged" msprop:Generator_TablePropName="ElencoAssiemi" msprop:Generator_RowDeletingName="ElencoAssiemiRowDeleting" msprop:Generator_RowChangingName="ElencoAssiemiRowChanging" msprop:Generator_RowEvHandlerName="ElencoAssiemiRowChangeEventHandler" msprop:Generator_RowDeletedName="ElencoAssiemiRowDeleted" msprop:Generator_RowClassName="ElencoAssiemiRow" msprop:Generator_UserTableName="ElencoAssiemi" msprop:Generator_RowEvArgName="ElencoAssiemiRowChangeEvent">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="AL" msprop:Generator_ColumnVarNameInTable="columnAL" msprop:Generator_ColumnPropNameInRow="AL" msprop:Generator_ColumnPropNameInTable="ALColumn" msprop:Generator_UserColumnName="AL">
|
||||
@@ -5721,7 +5754,7 @@ SELECT Trattamento, AL, DataTrattEnd, Durezza, Punzone, DataDur, CodSoggettoDur,
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="AL2UDC" msprop:Generator_TableClassName="AL2UDCDataTable" msprop:Generator_TableVarName="tableAL2UDC" msprop:Generator_TablePropName="AL2UDC" msprop:Generator_RowDeletingName="AL2UDCRowDeleting" msprop:Generator_RowChangingName="AL2UDCRowChanging" msprop:Generator_RowEvHandlerName="AL2UDCRowChangeEventHandler" msprop:Generator_RowDeletedName="AL2UDCRowDeleted" msprop:Generator_UserTableName="AL2UDC" msprop:Generator_RowChangedName="AL2UDCRowChanged" msprop:Generator_RowEvArgName="AL2UDCRowChangeEvent" msprop:Generator_RowClassName="AL2UDCRow">
|
||||
<xs:element name="AL2UDC" msprop:Generator_TableClassName="AL2UDCDataTable" msprop:Generator_TableVarName="tableAL2UDC" msprop:Generator_RowChangedName="AL2UDCRowChanged" msprop:Generator_TablePropName="AL2UDC" msprop:Generator_RowDeletingName="AL2UDCRowDeleting" msprop:Generator_RowChangingName="AL2UDCRowChanging" msprop:Generator_RowEvHandlerName="AL2UDCRowChangeEventHandler" msprop:Generator_RowDeletedName="AL2UDCRowDeleted" msprop:Generator_RowClassName="AL2UDCRow" msprop:Generator_UserTableName="AL2UDC" msprop:Generator_RowEvArgName="AL2UDCRowChangeEvent">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="AL" msprop:Generator_ColumnVarNameInTable="columnAL" msprop:Generator_ColumnPropNameInRow="AL" msprop:Generator_ColumnPropNameInTable="ALColumn" msprop:Generator_UserColumnName="AL">
|
||||
@@ -5749,7 +5782,7 @@ SELECT Trattamento, AL, DataTrattEnd, Durezza, Punzone, DataDur, CodSoggettoDur,
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="ElencoTrattamenti" msprop:Generator_TableClassName="ElencoTrattamentiDataTable" msprop:Generator_TableVarName="tableElencoTrattamenti" msprop:Generator_RowChangedName="ElencoTrattamentiRowChanged" msprop:Generator_TablePropName="ElencoTrattamenti" msprop:Generator_RowDeletingName="ElencoTrattamentiRowDeleting" msprop:Generator_RowChangingName="ElencoTrattamentiRowChanging" msprop:Generator_RowEvHandlerName="ElencoTrattamentiRowChangeEventHandler" msprop:Generator_RowDeletedName="ElencoTrattamentiRowDeleted" msprop:Generator_RowClassName="ElencoTrattamentiRow" msprop:Generator_UserTableName="ElencoTrattamenti" msprop:Generator_RowEvArgName="ElencoTrattamentiRowChangeEvent">
|
||||
<xs:element name="ElencoTrattamenti" msprop:Generator_TableClassName="ElencoTrattamentiDataTable" msprop:Generator_TableVarName="tableElencoTrattamenti" msprop:Generator_TablePropName="ElencoTrattamenti" msprop:Generator_RowDeletingName="ElencoTrattamentiRowDeleting" msprop:Generator_RowChangingName="ElencoTrattamentiRowChanging" msprop:Generator_RowEvHandlerName="ElencoTrattamentiRowChangeEventHandler" msprop:Generator_RowDeletedName="ElencoTrattamentiRowDeleted" msprop:Generator_UserTableName="ElencoTrattamenti" msprop:Generator_RowChangedName="ElencoTrattamentiRowChanged" msprop:Generator_RowEvArgName="ElencoTrattamentiRowChangeEvent" msprop:Generator_RowClassName="ElencoTrattamentiRow">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="Trattamento" msprop:Generator_ColumnVarNameInTable="columnTrattamento" msprop:Generator_ColumnPropNameInRow="Trattamento" msprop:Generator_ColumnPropNameInTable="TrattamentoColumn" msprop:Generator_UserColumnName="Trattamento">
|
||||
@@ -5796,7 +5829,7 @@ SELECT Trattamento, AL, DataTrattEnd, Durezza, Punzone, DataDur, CodSoggettoDur,
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="v_A2U2D" msprop:Generator_TableClassName="v_A2U2DDataTable" msprop:Generator_TableVarName="tablev_A2U2D" msprop:Generator_RowChangedName="v_A2U2DRowChanged" msprop:Generator_TablePropName="v_A2U2D" msprop:Generator_RowDeletingName="v_A2U2DRowDeleting" msprop:Generator_RowChangingName="v_A2U2DRowChanging" msprop:Generator_RowEvHandlerName="v_A2U2DRowChangeEventHandler" msprop:Generator_RowDeletedName="v_A2U2DRowDeleted" msprop:Generator_RowClassName="v_A2U2DRow" msprop:Generator_UserTableName="v_A2U2D" msprop:Generator_RowEvArgName="v_A2U2DRowChangeEvent">
|
||||
<xs:element name="v_A2U2D" msprop:Generator_TableClassName="v_A2U2DDataTable" msprop:Generator_TableVarName="tablev_A2U2D" msprop:Generator_TablePropName="v_A2U2D" msprop:Generator_RowDeletingName="v_A2U2DRowDeleting" msprop:Generator_RowChangingName="v_A2U2DRowChanging" msprop:Generator_RowEvHandlerName="v_A2U2DRowChangeEventHandler" msprop:Generator_RowDeletedName="v_A2U2DRowDeleted" msprop:Generator_UserTableName="v_A2U2D" msprop:Generator_RowChangedName="v_A2U2DRowChanged" msprop:Generator_RowEvArgName="v_A2U2DRowChangeEvent" msprop:Generator_RowClassName="v_A2U2DRow">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="AL" msprop:Generator_ColumnVarNameInTable="columnAL" msprop:Generator_ColumnPropNameInRow="AL" msprop:Generator_ColumnPropNameInTable="ALColumn" msprop:Generator_UserColumnName="AL">
|
||||
@@ -5990,21 +6023,21 @@ SELECT Trattamento, AL, DataTrattEnd, Durezza, Punzone, DataDur, CodSoggettoDur,
|
||||
</xs:element>
|
||||
<xs:annotation>
|
||||
<xs:appinfo>
|
||||
<msdata:Relationship name="FK_PosizioneUdcCorrente_ElencoCartellini" msdata:parent="ElencoCartellini" msdata:child="PosizioneUdcCorrente" msdata:parentkey="UDC" msdata:childkey="UDC" msprop:Generator_UserChildTable="PosizioneUdcCorrente" msprop:Generator_ChildPropName="GetPosizioneUdcCorrenteRows" msprop:Generator_UserRelationName="FK_PosizioneUdcCorrente_ElencoCartellini" msprop:Generator_RelationVarName="relationFK_PosizioneUdcCorrente_ElencoCartellini" msprop:Generator_UserParentTable="ElencoCartellini" msprop:Generator_ParentPropName="ElencoCartelliniRow" />
|
||||
<msdata:Relationship name="FK_PosizioneUdcStorico_ElencoCartellini" msdata:parent="ElencoCartellini" msdata:child="PosizioneUdcStorico" msdata:parentkey="UDC" msdata:childkey="UDC" msprop:Generator_UserChildTable="PosizioneUdcStorico" msprop:Generator_ChildPropName="GetPosizioneUdcStoricoRows" msprop:Generator_UserRelationName="FK_PosizioneUdcStorico_ElencoCartellini" msprop:Generator_RelationVarName="relationFK_PosizioneUdcStorico_ElencoCartellini" msprop:Generator_UserParentTable="ElencoCartellini" msprop:Generator_ParentPropName="ElencoCartelliniRow" />
|
||||
<msdata:Relationship name="FK_Blocchi_AnagMag" msdata:parent="AnagMag" msdata:child="Blocchi" msdata:parentkey="CodMag CodCS" msdata:childkey="CodMag CodCS" msprop:Generator_UserChildTable="Blocchi" msprop:Generator_ChildPropName="GetBlocchiRows" msprop:Generator_UserRelationName="FK_Blocchi_AnagMag" msprop:Generator_RelationVarName="relationFK_Blocchi_AnagMag" msprop:Generator_UserParentTable="AnagMag" msprop:Generator_ParentPropName="AnagMagRowParent" />
|
||||
<msdata:Relationship name="FK_PosizioneUdcCorrente_Celle" msdata:parent="Celle" msdata:child="PosizioneUdcCorrente" msdata:parentkey="IdxCella" msdata:childkey="IdxCella" msprop:Generator_UserChildTable="PosizioneUdcCorrente" msprop:Generator_ChildPropName="GetPosizioneUdcCorrenteRows" msprop:Generator_UserRelationName="FK_PosizioneUdcCorrente_Celle" msprop:Generator_RelationVarName="relationFK_PosizioneUdcCorrente_Celle" msprop:Generator_UserParentTable="Celle" msprop:Generator_ParentPropName="CelleRow" />
|
||||
<msdata:Relationship name="FK_Celle_Blocchi1" msdata:parent="Blocchi" msdata:child="Celle" msdata:parentkey="IdxBlocco" msdata:childkey="IdxBlocco" msprop:Generator_UserChildTable="Celle" msprop:Generator_ChildPropName="GetCelleRows" msprop:Generator_UserRelationName="FK_Celle_Blocchi1" msprop:Generator_RelationVarName="relationFK_Celle_Blocchi1" msprop:Generator_UserParentTable="Blocchi" msprop:Generator_ParentPropName="BlocchiRow" />
|
||||
<msdata:Relationship name="FK_TipoCella_AnagMag" msdata:parent="AnagMag" msdata:child="TipoCella" msdata:parentkey="CodMag CodCS" msdata:childkey="CodMag CodCS" msprop:Generator_UserChildTable="TipoCella" msprop:Generator_ChildPropName="GetTipoCellaRows" msprop:Generator_UserRelationName="FK_TipoCella_AnagMag" msprop:Generator_RelationVarName="relationFK_TipoCella_AnagMag" msprop:Generator_UserParentTable="AnagMag" msprop:Generator_ParentPropName="AnagMagRowParent" />
|
||||
<msdata:Relationship name="FK_RigheListePrelievo_ElencoCartellini" msdata:parent="ElencoCartellini" msdata:child="RigheListePrelievo" msdata:parentkey="UDC" msdata:childkey="UDC" msprop:Generator_UserChildTable="RigheListePrelievo" msprop:Generator_ChildPropName="GetRigheListePrelievoRows" msprop:Generator_UserRelationName="FK_RigheListePrelievo_ElencoCartellini" msprop:Generator_RelationVarName="relationFK_RigheListePrelievo_ElencoCartellini" msprop:Generator_UserParentTable="ElencoCartellini" msprop:Generator_ParentPropName="ElencoCartelliniRow" />
|
||||
<msdata:Relationship name="FK_RigheListePrelievo_ElencoListePrelievo11" msdata:parent="ElencoListePrelievo" msdata:child="RigheListePrelievo" msdata:parentkey="CodLista" msdata:childkey="CodLista" msprop:Generator_UserChildTable="RigheListePrelievo" msprop:Generator_ChildPropName="GetRigheListePrelievoRows" msprop:Generator_UserRelationName="FK_RigheListePrelievo_ElencoListePrelievo11" msprop:Generator_RelationVarName="relationFK_RigheListePrelievo_ElencoListePrelievo11" msprop:Generator_UserParentTable="ElencoListePrelievo" msprop:Generator_ParentPropName="_ElencoListePrelievoRow" />
|
||||
<msdata:Relationship name="FK_ElencoListePrelievo_TipoListaPrelievo11" msdata:parent="TipoListaPrelievo" msdata:child="ElencoListePrelievo" msdata:parentkey="CodTipoLista" msdata:childkey="CodTipoLista" msprop:Generator_UserChildTable="ElencoListePrelievo" msprop:Generator_ChildPropName="_GetElencoListePrelievoRows" msprop:Generator_UserRelationName="FK_ElencoListePrelievo_TipoListaPrelievo11" msprop:Generator_RelationVarName="relationFK_ElencoListePrelievo_TipoListaPrelievo11" msprop:Generator_UserParentTable="TipoListaPrelievo" msprop:Generator_ParentPropName="TipoListaPrelievoRow" />
|
||||
<msdata:Relationship name="FK_ElencoCartellini_AnagPosizioni" msdata:parent="AnagPosizioni" msdata:child="ElencoCartellini" msdata:parentkey="IdxPosizione" msdata:childkey="IdxPosizione" msprop:Generator_UserChildTable="ElencoCartellini" msprop:Generator_ChildPropName="GetElencoCartelliniRows" msprop:Generator_UserRelationName="FK_ElencoCartellini_AnagPosizioni" msprop:Generator_RelationVarName="relationFK_ElencoCartellini_AnagPosizioni" msprop:Generator_UserParentTable="AnagPosizioni" msprop:Generator_ParentPropName="AnagPosizioniRow" />
|
||||
<msdata:Relationship name="FK_Celle_TipoCella" msdata:parent="TipoCella" msdata:child="Celle" msdata:parentkey="IdxTipoCella" msdata:childkey="IdxTipoCella" msprop:Generator_UserChildTable="Celle" msprop:Generator_ChildPropName="GetCelleRows" msprop:Generator_UserRelationName="FK_Celle_TipoCella" msprop:Generator_RelationVarName="relationFK_Celle_TipoCella" msprop:Generator_UserParentTable="TipoCella" msprop:Generator_ParentPropName="TipoCellaRow" />
|
||||
<msdata:Relationship name="FK_Attr2UDC_ElencoCartellini" msdata:parent="ElencoCartellini" msdata:child="Attr2UDC" msdata:parentkey="UDC" msdata:childkey="UDC" msprop:Generator_UserChildTable="Attr2UDC" msprop:Generator_ChildPropName="GetAttr2UDCRows" msprop:Generator_UserRelationName="FK_Attr2UDC_ElencoCartellini" msprop:Generator_ParentPropName="ElencoCartelliniRow" msprop:Generator_RelationVarName="relationFK_Attr2UDC_ElencoCartellini" msprop:Generator_UserParentTable="ElencoCartellini" />
|
||||
<msdata:Relationship name="FK_AL2UDC_ElencoAssiemi" msdata:parent="ElencoAssiemi" msdata:child="AL2UDC" msdata:parentkey="AL" msdata:childkey="AL" msprop:Generator_UserChildTable="AL2UDC" msprop:Generator_ChildPropName="GetAL2UDCRows" msprop:Generator_UserRelationName="FK_AL2UDC_ElencoAssiemi" msprop:Generator_ParentPropName="ElencoAssiemiRow" msprop:Generator_RelationVarName="relationFK_AL2UDC_ElencoAssiemi" msprop:Generator_UserParentTable="ElencoAssiemi" />
|
||||
<msdata:Relationship name="FK_AL2UDC_ElencoCartellini" msdata:parent="ElencoCartellini" msdata:child="AL2UDC" msdata:parentkey="UDC" msdata:childkey="UDC" msprop:Generator_UserChildTable="AL2UDC" msprop:Generator_ChildPropName="GetAL2UDCRows" msprop:Generator_UserRelationName="FK_AL2UDC_ElencoCartellini" msprop:Generator_ParentPropName="ElencoCartelliniRow" msprop:Generator_RelationVarName="relationFK_AL2UDC_ElencoCartellini" msprop:Generator_UserParentTable="ElencoCartellini" />
|
||||
<msdata:Relationship name="FK_ElencoTrattamenti_ElencoAssiemi" msdata:parent="ElencoAssiemi" msdata:child="ElencoTrattamenti" msdata:parentkey="AL" msdata:childkey="AL" msprop:Generator_UserChildTable="ElencoTrattamenti" msprop:Generator_ChildPropName="GetElencoTrattamentiRows" msprop:Generator_UserRelationName="FK_ElencoTrattamenti_ElencoAssiemi" msprop:Generator_ParentPropName="ElencoAssiemiRow" msprop:Generator_RelationVarName="relationFK_ElencoTrattamenti_ElencoAssiemi" msprop:Generator_UserParentTable="ElencoAssiemi" />
|
||||
<msdata:Relationship name="FK_PosizioneUdcCorrente_ElencoCartellini" msdata:parent="ElencoCartellini" msdata:child="PosizioneUdcCorrente" msdata:parentkey="UDC" msdata:childkey="UDC" msprop:Generator_UserChildTable="PosizioneUdcCorrente" msprop:Generator_ChildPropName="GetPosizioneUdcCorrenteRows" msprop:Generator_UserRelationName="FK_PosizioneUdcCorrente_ElencoCartellini" msprop:Generator_ParentPropName="ElencoCartelliniRow" msprop:Generator_RelationVarName="relationFK_PosizioneUdcCorrente_ElencoCartellini" msprop:Generator_UserParentTable="ElencoCartellini" />
|
||||
<msdata:Relationship name="FK_PosizioneUdcStorico_ElencoCartellini" msdata:parent="ElencoCartellini" msdata:child="PosizioneUdcStorico" msdata:parentkey="UDC" msdata:childkey="UDC" msprop:Generator_UserChildTable="PosizioneUdcStorico" msprop:Generator_ChildPropName="GetPosizioneUdcStoricoRows" msprop:Generator_UserRelationName="FK_PosizioneUdcStorico_ElencoCartellini" msprop:Generator_ParentPropName="ElencoCartelliniRow" msprop:Generator_RelationVarName="relationFK_PosizioneUdcStorico_ElencoCartellini" msprop:Generator_UserParentTable="ElencoCartellini" />
|
||||
<msdata:Relationship name="FK_Blocchi_AnagMag" msdata:parent="AnagMag" msdata:child="Blocchi" msdata:parentkey="CodMag CodCS" msdata:childkey="CodMag CodCS" msprop:Generator_UserChildTable="Blocchi" msprop:Generator_ChildPropName="GetBlocchiRows" msprop:Generator_UserRelationName="FK_Blocchi_AnagMag" msprop:Generator_ParentPropName="AnagMagRowParent" msprop:Generator_RelationVarName="relationFK_Blocchi_AnagMag" msprop:Generator_UserParentTable="AnagMag" />
|
||||
<msdata:Relationship name="FK_PosizioneUdcCorrente_Celle" msdata:parent="Celle" msdata:child="PosizioneUdcCorrente" msdata:parentkey="IdxCella" msdata:childkey="IdxCella" msprop:Generator_UserChildTable="PosizioneUdcCorrente" msprop:Generator_ChildPropName="GetPosizioneUdcCorrenteRows" msprop:Generator_UserRelationName="FK_PosizioneUdcCorrente_Celle" msprop:Generator_ParentPropName="CelleRow" msprop:Generator_RelationVarName="relationFK_PosizioneUdcCorrente_Celle" msprop:Generator_UserParentTable="Celle" />
|
||||
<msdata:Relationship name="FK_Celle_Blocchi1" msdata:parent="Blocchi" msdata:child="Celle" msdata:parentkey="IdxBlocco" msdata:childkey="IdxBlocco" msprop:Generator_UserChildTable="Celle" msprop:Generator_ChildPropName="GetCelleRows" msprop:Generator_UserRelationName="FK_Celle_Blocchi1" msprop:Generator_ParentPropName="BlocchiRow" msprop:Generator_RelationVarName="relationFK_Celle_Blocchi1" msprop:Generator_UserParentTable="Blocchi" />
|
||||
<msdata:Relationship name="FK_TipoCella_AnagMag" msdata:parent="AnagMag" msdata:child="TipoCella" msdata:parentkey="CodMag CodCS" msdata:childkey="CodMag CodCS" msprop:Generator_UserChildTable="TipoCella" msprop:Generator_ChildPropName="GetTipoCellaRows" msprop:Generator_UserRelationName="FK_TipoCella_AnagMag" msprop:Generator_ParentPropName="AnagMagRowParent" msprop:Generator_RelationVarName="relationFK_TipoCella_AnagMag" msprop:Generator_UserParentTable="AnagMag" />
|
||||
<msdata:Relationship name="FK_RigheListePrelievo_ElencoCartellini" msdata:parent="ElencoCartellini" msdata:child="RigheListePrelievo" msdata:parentkey="UDC" msdata:childkey="UDC" msprop:Generator_UserChildTable="RigheListePrelievo" msprop:Generator_ChildPropName="GetRigheListePrelievoRows" msprop:Generator_UserRelationName="FK_RigheListePrelievo_ElencoCartellini" msprop:Generator_ParentPropName="ElencoCartelliniRow" msprop:Generator_RelationVarName="relationFK_RigheListePrelievo_ElencoCartellini" msprop:Generator_UserParentTable="ElencoCartellini" />
|
||||
<msdata:Relationship name="FK_RigheListePrelievo_ElencoListePrelievo11" msdata:parent="ElencoListePrelievo" msdata:child="RigheListePrelievo" msdata:parentkey="CodLista" msdata:childkey="CodLista" msprop:Generator_UserChildTable="RigheListePrelievo" msprop:Generator_ChildPropName="GetRigheListePrelievoRows" msprop:Generator_UserRelationName="FK_RigheListePrelievo_ElencoListePrelievo11" msprop:Generator_ParentPropName="_ElencoListePrelievoRow" msprop:Generator_RelationVarName="relationFK_RigheListePrelievo_ElencoListePrelievo11" msprop:Generator_UserParentTable="ElencoListePrelievo" />
|
||||
<msdata:Relationship name="FK_ElencoListePrelievo_TipoListaPrelievo11" msdata:parent="TipoListaPrelievo" msdata:child="ElencoListePrelievo" msdata:parentkey="CodTipoLista" msdata:childkey="CodTipoLista" msprop:Generator_UserChildTable="ElencoListePrelievo" msprop:Generator_ChildPropName="_GetElencoListePrelievoRows" msprop:Generator_UserRelationName="FK_ElencoListePrelievo_TipoListaPrelievo11" msprop:Generator_ParentPropName="TipoListaPrelievoRow" msprop:Generator_RelationVarName="relationFK_ElencoListePrelievo_TipoListaPrelievo11" msprop:Generator_UserParentTable="TipoListaPrelievo" />
|
||||
<msdata:Relationship name="FK_ElencoCartellini_AnagPosizioni" msdata:parent="AnagPosizioni" msdata:child="ElencoCartellini" msdata:parentkey="IdxPosizione" msdata:childkey="IdxPosizione" msprop:Generator_UserChildTable="ElencoCartellini" msprop:Generator_ChildPropName="GetElencoCartelliniRows" msprop:Generator_UserRelationName="FK_ElencoCartellini_AnagPosizioni" msprop:Generator_ParentPropName="AnagPosizioniRow" msprop:Generator_RelationVarName="relationFK_ElencoCartellini_AnagPosizioni" msprop:Generator_UserParentTable="AnagPosizioni" />
|
||||
<msdata:Relationship name="FK_Celle_TipoCella" msdata:parent="TipoCella" msdata:child="Celle" msdata:parentkey="IdxTipoCella" msdata:childkey="IdxTipoCella" msprop:Generator_UserChildTable="Celle" msprop:Generator_ChildPropName="GetCelleRows" msprop:Generator_UserRelationName="FK_Celle_TipoCella" msprop:Generator_ParentPropName="TipoCellaRow" msprop:Generator_RelationVarName="relationFK_Celle_TipoCella" msprop:Generator_UserParentTable="TipoCella" />
|
||||
<msdata:Relationship name="FK_Attr2UDC_ElencoCartellini" msdata:parent="ElencoCartellini" msdata:child="Attr2UDC" msdata:parentkey="UDC" msdata:childkey="UDC" msprop:Generator_UserChildTable="Attr2UDC" msprop:Generator_ChildPropName="GetAttr2UDCRows" msprop:Generator_UserRelationName="FK_Attr2UDC_ElencoCartellini" msprop:Generator_RelationVarName="relationFK_Attr2UDC_ElencoCartellini" msprop:Generator_UserParentTable="ElencoCartellini" msprop:Generator_ParentPropName="ElencoCartelliniRow" />
|
||||
<msdata:Relationship name="FK_AL2UDC_ElencoAssiemi" msdata:parent="ElencoAssiemi" msdata:child="AL2UDC" msdata:parentkey="AL" msdata:childkey="AL" msprop:Generator_UserChildTable="AL2UDC" msprop:Generator_ChildPropName="GetAL2UDCRows" msprop:Generator_UserRelationName="FK_AL2UDC_ElencoAssiemi" msprop:Generator_RelationVarName="relationFK_AL2UDC_ElencoAssiemi" msprop:Generator_UserParentTable="ElencoAssiemi" msprop:Generator_ParentPropName="ElencoAssiemiRow" />
|
||||
<msdata:Relationship name="FK_AL2UDC_ElencoCartellini" msdata:parent="ElencoCartellini" msdata:child="AL2UDC" msdata:parentkey="UDC" msdata:childkey="UDC" msprop:Generator_UserChildTable="AL2UDC" msprop:Generator_ChildPropName="GetAL2UDCRows" msprop:Generator_UserRelationName="FK_AL2UDC_ElencoCartellini" msprop:Generator_RelationVarName="relationFK_AL2UDC_ElencoCartellini" msprop:Generator_UserParentTable="ElencoCartellini" msprop:Generator_ParentPropName="ElencoCartelliniRow" />
|
||||
<msdata:Relationship name="FK_ElencoTrattamenti_ElencoAssiemi" msdata:parent="ElencoAssiemi" msdata:child="ElencoTrattamenti" msdata:parentkey="AL" msdata:childkey="AL" msprop:Generator_UserChildTable="ElencoTrattamenti" msprop:Generator_ChildPropName="GetElencoTrattamentiRows" msprop:Generator_UserRelationName="FK_ElencoTrattamenti_ElencoAssiemi" msprop:Generator_RelationVarName="relationFK_ElencoTrattamenti_ElencoAssiemi" msprop:Generator_UserParentTable="ElencoAssiemi" msprop:Generator_ParentPropName="ElencoAssiemiRow" />
|
||||
</xs:appinfo>
|
||||
</xs:annotation>
|
||||
</xs:schema>
|
||||
@@ -4,7 +4,7 @@
|
||||
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="392" 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="-153" ViewPortY="-49" xmlns:ex="urn:schemas-microsoft-com:xml-msdatasource-layout-extended" xmlns="urn:schemas-microsoft-com:xml-msdatasource-layout">
|
||||
<Shapes>
|
||||
<Shape ID="DesignTable:ElencoCartellini" ZOrder="10" X="87" Y="230" Height="495" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="368" />
|
||||
<Shape ID="DesignTable:AnagMag" ZOrder="28" X="1047" Y="389" Height="229" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="102" />
|
||||
|
||||
Reference in New Issue
Block a user