소스 검색

Fixed BillLineStore SQL logic error

Kenric Nugteren 2 년 전
부모
커밋
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,