Przeglądaj źródła

Fixed DoChanged not being called on BillLine grid edit action button

Kenric Nugteren 1 rok temu
rodzic
commit
6823870b58

+ 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;