Browse Source

Fixed BillLineStore SQL logic error

Kenric Nugteren 1 năm trước cách đây
mục cha
commit
559ded9318
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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,