|
@@ -549,7 +549,7 @@ public class SupplierBillLineGrid : DynamicOneToManyGrid<Bill, BillLine>
|
|
var description = row.Get<PurchaseOrderItem, String>(x => x.Description);
|
|
var description = row.Get<PurchaseOrderItem, String>(x => x.Description);
|
|
if (String.IsNullOrWhiteSpace(description))
|
|
if (String.IsNullOrWhiteSpace(description))
|
|
description = row.Get<PurchaseOrderItem, String>(x => x.Product.Name);
|
|
description = row.Get<PurchaseOrderItem, String>(x => x.Product.Name);
|
|
- line.Description = $"{row.Get<PurchaseOrderItem, double>(x => x.Qty):F2} x {description}";
|
|
|
|
|
|
+ line.Description = description; //$"{row.Get<PurchaseOrderItem, double>(x => x.Qty):F2} x {description}";
|
|
|
|
|
|
lines.Add(line);
|
|
lines.Add(line);
|
|
}
|
|
}
|