Pārlūkot izejas kodu

Fixed BillLineStore SQL logic error

Kenric Nugteren 2 gadi atpakaļ
vecāks
revīzija
559ded9318
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  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,