Merge branch 'release/UpdateIcoelComments'
This commit is contained in:
@@ -112,7 +112,7 @@ namespace EgwProxy.Icoel.Compac
|
||||
/// Elenco dei layout attivi della varietà
|
||||
/// </summary>
|
||||
/// <param name="VarietyId">Guid della varietà</param>
|
||||
/// <returns></returns>
|
||||
/// <returns>Oggetto Lyout attivo</returns>
|
||||
internal Layout GetActiveLayout(Guid VarietyId)
|
||||
{
|
||||
return SSClient.GetActiveLayout(VarietyId);
|
||||
@@ -121,7 +121,7 @@ namespace EgwProxy.Icoel.Compac
|
||||
/// <summary>
|
||||
/// Elenco varietà attive
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
/// <returns>Array Variety attive</returns>
|
||||
internal Variety[] GetActiveVarieties()
|
||||
{
|
||||
return SSClient.GetActiveVarieties();
|
||||
@@ -139,7 +139,7 @@ namespace EgwProxy.Icoel.Compac
|
||||
/// <summary>
|
||||
/// Recupera il batch corrente (se monolinea)
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
/// <returns>Batch corrente (singolo)</returns>
|
||||
internal Batch GetCurrentBatch()
|
||||
{
|
||||
return SSClient.GetCurrentBatch();
|
||||
@@ -149,7 +149,7 @@ namespace EgwProxy.Icoel.Compac
|
||||
/// Recupera il batch corrente data la linea
|
||||
/// </summary>
|
||||
/// <param name="lineNum">Numero della linea 1=sx/2=dx</param>
|
||||
/// <returns></returns>
|
||||
/// <returns>Batch della linea selezionata</returns>
|
||||
internal Batch GetCurrentBatchByLane(int lineNum)
|
||||
{
|
||||
return SSClient.GetCurrentBatchByLane(lineNum);
|
||||
@@ -159,7 +159,7 @@ namespace EgwProxy.Icoel.Compac
|
||||
/// Elenco dei layout della varietà
|
||||
/// </summary>
|
||||
/// <param name="VarietyId">Guid della varietà</param>
|
||||
/// <returns></returns>
|
||||
/// <returns>Layout della Variety</returns>
|
||||
internal Layout[] GetLayouts(Guid VarietyId)
|
||||
{
|
||||
return SSClient.GetLayouts(VarietyId);
|
||||
|
||||
+11
-12
@@ -15,8 +15,8 @@ namespace EgwProxy.Icoel
|
||||
/// <summary>
|
||||
/// Inizializazzione classe con salvataggio ip/porta del webservice del sizer
|
||||
/// </summary>
|
||||
/// <param name="ipAddress"></param>
|
||||
/// <param name="tcpPort"></param>
|
||||
/// <param name="ipAddress">Indirizzo IP del sizer</param>
|
||||
/// <param name="tcpPort">POrta del sizer (default 8001)</param>
|
||||
public Connector(string ipAddress, string tcpPort)
|
||||
{
|
||||
this.ipAddress = ipAddress;
|
||||
@@ -30,7 +30,7 @@ namespace EgwProxy.Icoel
|
||||
/// <summary>
|
||||
/// Verifica il fornitore e se non ci fosse crea
|
||||
/// </summary>
|
||||
/// <param name="GrowerData"></param>
|
||||
/// <param name="GrowerData">Struttura GrowerInfo del fornitore</param>
|
||||
public void CheckGrower(GrowerInfo GrowerData)
|
||||
{
|
||||
using (var Client = new ComClient(ipAddress, tcpPort))
|
||||
@@ -54,9 +54,9 @@ namespace EgwProxy.Icoel
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Recupera elenco dei Batch correnti (su L1 SX e L2 DX)
|
||||
/// Recupera elenco dei Batch correnti
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
/// <returns>Dizionario dei batch sulle due linee (1=SX, 2=DX)</returns>
|
||||
public Dictionary<int, Batch> GetCurrentBatch()
|
||||
{
|
||||
Dictionary<int, Batch> outVal = new Dictionary<int, Batch>();
|
||||
@@ -75,8 +75,7 @@ namespace EgwProxy.Icoel
|
||||
/// <summary>
|
||||
/// Restituisce un dictionary di varietà e relativi layout
|
||||
/// </summary>
|
||||
/// <param name="varietiesList"></param>
|
||||
/// <returns></returns>
|
||||
/// <returns>Dizionario: key=Variety, value=Layout[] associati</returns>
|
||||
public Dictionary<Variety, Layout[]> GetLayoutAndVariety()
|
||||
{
|
||||
Dictionary<Variety, Layout[]> outVal = new Dictionary<Variety, Layout[]>();
|
||||
@@ -98,7 +97,7 @@ namespace EgwProxy.Icoel
|
||||
/// Restituisce un array di Layout validi data Guid della Variety
|
||||
/// </summary>
|
||||
/// <param name="varietiesList"></param>
|
||||
/// <returns></returns>
|
||||
/// <returns>Array di Layout della varietà dato suo Guid</returns>
|
||||
public Layout[] GetLayoutForVariety(Guid varGuid)
|
||||
{
|
||||
Layout[] outVal = new Layout[1];
|
||||
@@ -115,8 +114,8 @@ namespace EgwProxy.Icoel
|
||||
/// <summary>
|
||||
/// Restituisce un dictionary di layout validi x un array di varietà fornito
|
||||
/// </summary>
|
||||
/// <param name="varietiesList"></param>
|
||||
/// <returns></returns>
|
||||
/// <param name="varietiesList">Array varietà di cui ottenere i layout</param>
|
||||
/// <returns>Dizionario: key=Variety, value=Layout[] associati</returns>
|
||||
public Dictionary<Variety, Layout[]> GetLayoutForVarietyList(Variety[] varietiesList)
|
||||
{
|
||||
Dictionary<Variety, Layout[]> outVal = new Dictionary<Variety, Layout[]>();
|
||||
@@ -137,7 +136,7 @@ namespace EgwProxy.Icoel
|
||||
/// Restituisce elenco delle Variety
|
||||
/// </summary>
|
||||
/// <param name="onlyActive">Solo attive (true) o tutte (false)</param>
|
||||
/// <returns></returns>
|
||||
/// <returns>Elenco delel Variety trovate</returns>
|
||||
public Variety[] GetVarietyList(bool onlyActive = true)
|
||||
{
|
||||
Variety[] varietiesList;
|
||||
@@ -180,7 +179,7 @@ namespace EgwProxy.Icoel
|
||||
/// <param name="VarietyId"></param>
|
||||
/// <param name="LayoutId"></param>
|
||||
/// <param name="SizingProfileName"></param>
|
||||
/// <returns></returns>
|
||||
/// <returns>Oggetto Batch creato</returns>
|
||||
private Batch CreateBatch(GrowerInfo GrowerData, Guid VarietyId, Guid LayoutId, string SizingProfileName)
|
||||
{
|
||||
var batch = new Batch();
|
||||
|
||||
@@ -10,7 +10,7 @@ namespace EgwProxy.Icoel
|
||||
#region Public Properties
|
||||
|
||||
/// <summary>
|
||||
/// Riga commento 01
|
||||
/// Lista di commenti
|
||||
/// </summary>
|
||||
public List<string> Comments { get; set; } = new List<string>() { "Commento 01", "Commento 02", "Commento 01" };
|
||||
|
||||
|
||||
Reference in New Issue
Block a user