Browse Source

Changed a comment

Kenric Nugteren 7 tháng trước cách đây
mục cha
commit
a5a59a0337

+ 7 - 4
prs.classes/Entities/Requisition/RequisitionItem.cs

@@ -92,14 +92,17 @@ namespace Comal.Classes
         [RequiredColumn]
         [RequiredColumn]
         public double Cost { get; set; }
         public double Cost { get; set; }
         
         
-        // This one is for the Source Requisition Item (if generated from a JRI)
-        // This can't be changed
+        /// <summary>
+        /// This is the JRI that the stock for the Requisition is sourced from, filled if generated <i>from</i> a JRI. This can't be changed.
+        /// </summary>
         [NullEditor]
         [NullEditor]
         [RequiredColumn]
         [RequiredColumn]
         public JobRequisitionItemLink SourceJRI { get; set; }
         public JobRequisitionItemLink SourceJRI { get; set; }
         
         
-        // This one is for the holding JRI allocation
-        // This will be set when selecting holdings for this line
+        /// <summary>
+        /// This is the JobRequisitionItem that the stock movements will be issued from; the holding JRI allocation. That is, it is the "target" JRI.<br/>
+        /// This will be set when selecting holdings for this line
+        /// </summary>
         [EditorSequence(9)]
         [EditorSequence(9)]
         [RequiredColumn]
         [RequiredColumn]
         public JobRequisitionItemLink JobRequisitionItem { get; set; }
         public JobRequisitionItemLink JobRequisitionItem { get; set; }