| Bezeichnung L1 |
diff --git a/LaaProductionWeb/LaaProductionVFM/Omni.aspx.cs b/LaaProductionWeb/LaaProductionVFM/Omni.aspx.cs
index a6f1e401..748953f9 100644
--- a/LaaProductionWeb/LaaProductionVFM/Omni.aspx.cs
+++ b/LaaProductionWeb/LaaProductionVFM/Omni.aspx.cs
@@ -46,7 +46,32 @@
protected string SERIALNO { get; set; }
- protected string TITLE { get; set; }
+ ///
+ /// boxlabel
+ ///
+ protected string TITLE
+ {
+ get
+ {
+ return this.title.Value;
+ }
+ set
+ {
+ this.title.Value = value;
+ }
+ }
+
+ protected string TAGNO
+ {
+ get
+ {
+ return this.tagno.Value;
+ }
+ set
+ {
+ this.tagno.Value = value;
+ }
+ }
///
/// testlabel, boxlabel
@@ -325,6 +350,23 @@
return;
}
+ else if (custsn != this.TAGNO)
+ {
+ this.ViewState[Appsettings.ERROR_MSG] = "Eingegebene Deckel und Messeinsatz passen nicht zueinander.";
+
+ return;
+ }
+
+ this.ORDERNO = default(string);
+ this.POSNO = default(string);
+ this.CUSTSN = default(string);
+ this.REGSN = default(string);
+ this.PARTNO = default(string);
+ this.DESCRIPTIONL1 = default(string);
+ this.DESCRIPTIONL2 = default(string);
+ this.TITLE = default(string);
+ this.QUANTITY = default(string);
+ this.BOXNO = default(string);
using (var connection = new SqlConnection(Appsettings.SQLServer))
{
@@ -422,6 +464,15 @@
return;
}
+ this.QMINGPM = default(string);
+ this.QMINACC = default(string);
+ this.QMIDGPM = default(string);
+ this.QMIDACC = default(string);
+ this.QMAXGPM = default(string);
+ this.QMAXACC = default(string);
+ this.TESTDATE = default(string);
+ this.DESCRIPTION = default(string);
+
using (var connection = new SqlConnection(Appsettings.SQLServer))
{
connection.FireInfoMessageEventOnUserErrors = true;
|