Selaa lähdekoodia

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

# Conflicts:
#	prs.classes/Entities/Requisition/RequisitionItem.cs
frankvandenbos 7 kuukautta sitten
vanhempi
commit
f7bd78c7d7
1 muutettua tiedostoa jossa 8 lisäystä ja 4 poistoa
  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; }