Ver Fonte

Das "Bestellschein-Nr."-Feld ist jetzt alphanumerisch!

Arne Diekmann há 8 anos atrás
pai
commit
07a5090c3b

+ 1 - 1
GreenTree.Nachtragsmanagement.Core/Domain/Appendix/Appendix.cs

@@ -80,7 +80,7 @@ namespace GreenTree.Nachtragsmanagement.Core.Domain.Appendix
         /// <summary>
         /// Number of the corresponding order
         /// </summary>
-        public int? OrderNumber { get; set; }
+        public string OrderNumber { get; set; }
 
         /// <summary>
         /// Date of the corresponding order

+ 1 - 1
GreenTree.Nachtragsmanagement.Web/Models/Appendix/AppendixDataModel.cs

@@ -22,7 +22,7 @@ namespace GreenTree.Nachtragsmanagement.Web.Models.Appendix
         public decimal? NegotiationValue { get; set; }
         public decimal? RelationOfferingToNegotiation { get; set; }
         public bool ProtocolExists { get; set; }
-        public int? OrderNumber { get; set; }
+        public string OrderNumber { get; set; }
         public DateTime? OrderDate { get; set; }
         public bool OrderInvoiceCreated { get; set; }
         public string OrderInvoiceCreatedDescription { get; set; }