|
@@ -672,7 +672,7 @@ namespace PRSDesktop
|
|
|
item.Dimensions.Length = treatment.Parameter == 0.0F ? 1.0F : treatment.Parameter;
|
|
|
|
|
|
var jobprice = supprods.FirstOrDefault(x => x.Job.ID.Equals(item.Job.ID));
|
|
|
- item.Cost = jobprice != null ? jobprice.CostPrice : stdcost;
|
|
|
+ item.Cost = (jobprice != null ? jobprice.CostPrice : stdcost) * treatment.Parameter;
|
|
|
|
|
|
var description = new List<string>();
|
|
|
description.Add(string.Format("{0} x {1} - {2}", packet.BarcodeQty, packet.Serial, packet.Title));
|