Просмотр исходного кода

Fixed BillLineStore SQL logic error

Kenric Nugteren 2 лет назад
Родитель
Сommit
559ded9318
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      prs.stores/BillLineStore.cs

+ 1 - 1
prs.stores/BillLineStore.cs

@@ -14,7 +14,7 @@ namespace Comal.Stores
                 new Columns<PurchaseOrderItem>(
                     x => x.ID,
                     x => x.ExTax,
-                    x => x.TaxCode,
+                    x => x.TaxCode.ID,
                     x => x.TaxRate,
                     x => x.IncTax,
                     x => x.Balance,