Преглед на файлове

Merge remote-tracking branch 'origin/kenric' into frank

# Conflicts:
#	prs.classes/Entities/Requisition/RequisitionItem.cs
frankvandenbos преди 7 месеца
родител
ревизия
f7bd78c7d7
променени са 1 файла, в които са добавени 8 реда и са изтрити 4 реда
  1. 8 4
      prs.classes/Entities/Requisition/RequisitionItem.cs

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

@@ -92,13 +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>
         [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; }