|
@@ -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; }
|