Browse Source

Changed a comment

Kenric Nugteren 7 months ago
parent
commit
a5a59a0337
1 changed files with 7 additions and 4 deletions
  1. 7 4
      prs.classes/Entities/Requisition/RequisitionItem.cs

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

@@ -92,14 +92,17 @@ namespace Comal.Classes
         [RequiredColumn]
         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]
         [RequiredColumn]
         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)]
         [RequiredColumn]
         public JobRequisitionItemLink JobRequisitionItem { get; set; }