소스 검색

Fixed DoChanged not being called on BillLine grid edit action button

Kenric Nugteren 1 년 전
부모
커밋
6823870b58
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      prs.desktop/Panels/Suppliers/Bills/SupplierBillLineGrid.cs

+ 1 - 0
prs.desktop/Panels/Suppliers/Bills/SupplierBillLineGrid.cs

@@ -102,6 +102,7 @@ public class SupplierBillLineGrid : DynamicOneToManyGrid<Bill, BillLine>
         if (EditItems(new BillLine[] { item }))
         {
             SaveItem(item);
+            DoChanged();
             return true;
         }
         return false;