Version erhöht, zurückgestellt zur Testversion, Sortierung Waste / WAS_RCPT angepasst
This commit is contained in:
parent
0b2893ecde
commit
85cfe5155f
@ -29,7 +29,7 @@
|
|||||||
<value>http://192.168.2.24/LockingService/LockingService.svc</value>
|
<value>http://192.168.2.24/LockingService/LockingService.svc</value>
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="ConnectionString" serializeAs="String">
|
<setting name="ConnectionString" serializeAs="String">
|
||||||
<value>Initial Catalog=nsw;Data Source=192.168.2.24\SQLEXPRESS;Uid=dfuser;pwd=dfpasswd;Persist Security Info=False;Connection Reset=false</value>
|
<value>Initial Catalog=nswtest;Data Source=192.168.2.24\SQLEXPRESS;Uid=dfuser;pwd=dfpasswd;Persist Security Info=False;Connection Reset=false</value>
|
||||||
</setting>
|
</setting>
|
||||||
</ENI2.Properties.Settings>
|
</ENI2.Properties.Settings>
|
||||||
</applicationSettings>
|
</applicationSettings>
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 39 KiB After Width: | Height: | Size: 41 KiB |
@ -2,6 +2,6 @@
|
|||||||
|
|
||||||
[assembly: AssemblyCompany("schick Informatik")]
|
[assembly: AssemblyCompany("schick Informatik")]
|
||||||
[assembly: AssemblyProduct("BSMD NSW interface")]
|
[assembly: AssemblyProduct("BSMD NSW interface")]
|
||||||
[assembly: AssemblyInformationalVersion("7.12.0")]
|
[assembly: AssemblyInformationalVersion("7.13.0")]
|
||||||
[assembly: AssemblyCopyright("Copyright © 2014-2023 schick Informatik")]
|
[assembly: AssemblyCopyright("Copyright © 2014-2023 schick Informatik")]
|
||||||
[assembly: AssemblyTrademark("")]
|
[assembly: AssemblyTrademark("")]
|
||||||
@ -1,4 +1,4 @@
|
|||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
|
|
||||||
[assembly: AssemblyVersion("7.12.0.*")]
|
[assembly: AssemblyVersion("7.13.0.*")]
|
||||||
|
|
||||||
|
|||||||
@ -12,11 +12,15 @@ namespace bsmd.database
|
|||||||
public class TreatmentFacilityProvider : DatabaseEntity, ISublistElement
|
public class TreatmentFacilityProvider : DatabaseEntity, ISublistElement
|
||||||
{
|
{
|
||||||
|
|
||||||
|
#region Construction
|
||||||
|
|
||||||
public TreatmentFacilityProvider()
|
public TreatmentFacilityProvider()
|
||||||
{
|
{
|
||||||
this.tablename = "[dbo].[TreatmentFacilityProvider]";
|
this.tablename = "[dbo].[TreatmentFacilityProvider]";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
#region Properties
|
#region Properties
|
||||||
|
|
||||||
[JsonIgnore]
|
[JsonIgnore]
|
||||||
@ -107,6 +111,8 @@ namespace bsmd.database
|
|||||||
if (this.Identifier == null) return 1;
|
if (this.Identifier == null) return 1;
|
||||||
if ((obj is null) || (((TreatmentFacilityProvider)obj).Identifier == null))
|
if ((obj is null) || (((TreatmentFacilityProvider)obj).Identifier == null))
|
||||||
return 1;
|
return 1;
|
||||||
|
if (Int32.TryParse(((TreatmentFacilityProvider)obj).Identifier, out int i1) && Int32.TryParse(this.Identifier, out int i2))
|
||||||
|
return i2.CompareTo(i1);
|
||||||
return this.Identifier.CompareTo(((TreatmentFacilityProvider)obj).Identifier);
|
return this.Identifier.CompareTo(((TreatmentFacilityProvider)obj).Identifier);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -424,6 +424,8 @@ namespace bsmd.database
|
|||||||
if (this.Identifier == null) return 1;
|
if (this.Identifier == null) return 1;
|
||||||
if ((obj is null) || (((WAS_RCPT)obj).Identifier == null))
|
if ((obj is null) || (((WAS_RCPT)obj).Identifier == null))
|
||||||
return 1;
|
return 1;
|
||||||
|
if (Int32.TryParse(((WAS_RCPT)obj).Identifier, out int i1) && Int32.TryParse(this.Identifier, out int i2))
|
||||||
|
return i2.CompareTo(i1);
|
||||||
return this.Identifier.CompareTo(((WAS_RCPT)obj).Identifier);
|
return this.Identifier.CompareTo(((WAS_RCPT)obj).Identifier);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -282,6 +282,8 @@ namespace bsmd.database
|
|||||||
if (this.Identifier == null) return 1;
|
if (this.Identifier == null) return 1;
|
||||||
if ((obj is null) || (((Waste)obj).Identifier == null))
|
if ((obj is null) || (((Waste)obj).Identifier == null))
|
||||||
return 1;
|
return 1;
|
||||||
|
if (Int32.TryParse(((Waste)obj).Identifier, out int i1) && Int32.TryParse(this.Identifier, out int i2))
|
||||||
|
return i2.CompareTo(i1);
|
||||||
return this.Identifier.CompareTo(((Waste)obj).Identifier);
|
return this.Identifier.CompareTo(((Waste)obj).Identifier);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -149,6 +149,8 @@ namespace bsmd.database
|
|||||||
if (this.Identifier == null) return 1;
|
if (this.Identifier == null) return 1;
|
||||||
if ((obj is null) || (((WasteReceived)obj).Identifier == null))
|
if ((obj is null) || (((WasteReceived)obj).Identifier == null))
|
||||||
return 1;
|
return 1;
|
||||||
|
if (Int32.TryParse(((WasteReceived)obj).Identifier, out int i1) && Int32.TryParse(this.Identifier, out int i2))
|
||||||
|
return i2.CompareTo(i1);
|
||||||
return this.Identifier.CompareTo(((WasteReceived)obj).Identifier);
|
return this.Identifier.CompareTo(((WasteReceived)obj).Identifier);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user