|
@@ -309,6 +309,7 @@ public class Module
|
|
|
.Add(x => x.PurchaseOrderLink.PONumber)
|
|
|
.Add(x => x.Job.JobNumber)
|
|
|
.Add(x => x.Qty)
|
|
|
+ .Add(x => x.Description)
|
|
|
.Add(x => x.Cost)
|
|
|
.Add(x => x.PostedReference)
|
|
|
);
|
|
@@ -417,6 +418,7 @@ public class Module
|
|
|
}
|
|
|
apdf.Units = poItem.Qty;
|
|
|
apdf.UnitCost = poItem.Cost;
|
|
|
+ apdf.Description = poItem.Description.NotWhiteSpaceOr(apdf.Description);
|
|
|
}
|
|
|
else
|
|
|
{
|