inizio modifica x pezzi confermati vs ordinati

This commit is contained in:
Samuele E. Locatelli
2021-01-13 12:16:34 +01:00
parent e00b47ffe5
commit c05e542e5b
3 changed files with 29 additions and 4 deletions
+9 -1
View File
@@ -118,10 +118,11 @@ namespace MagData
/// <param name="CliCod"></param>
/// <param name="CliDescr"></param>
/// <param name="OrdRifExt"></param>
/// <param name="QtaConf"></param>
/// <param name="QtaOdl"></param>
/// <param name="Lotto"></param>
/// <param name="CodPost"></param>
public prodPrintData(int MatrOpr, int IdxOdl, string IdxMacchina, int QtaUdc, bool isProdFinito, string ArtCod, string ArtDesc, string CliCod, string CliDescr, string OrdRifExt, int QtaOdl, string Lotto, string CodPost)
public prodPrintData(int MatrOpr, int IdxOdl, string IdxMacchina, int QtaUdc, bool isProdFinito, string ArtCod, string ArtDesc, string CliCod, string CliDescr, string OrdRifExt, int QtaConf, int QtaOdl, string Lotto, string CodPost)
{
this.ArtCod = ArtCod;
this.ArtDesc = ArtDesc;
@@ -134,6 +135,7 @@ namespace MagData
this.Lotto = Lotto;
this.MatrOpr = MatrOpr;
this.OrdRifExt = OrdRifExt;
this.QtaConf = QtaConf;
this.QtaOdl = QtaOdl;
this.QtaUdc = QtaUdc;
}
@@ -151,6 +153,7 @@ namespace MagData
this.Lotto = "";
this.MatrOpr = 0;
this.OrdRifExt = "";
this.QtaConf = 0;
this.QtaOdl = 1;
this.QtaUdc = 1;
}
@@ -219,6 +222,11 @@ namespace MagData
/// </summary>
public string PrintQueue { get; set; } = "";
/// <summary>
/// Quantità Prodotta/confermata x ODL
/// </summary>
public int QtaConf { get; set; } = 0;
/// <summary>
/// Quantità ordinata ODL
/// </summary>