diff options
author | rtk0c <[email protected]> | 2021-05-08 21:10:36 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2021-05-08 21:10:36 -0700 |
commit | 850067a6db2443c1ff1ced793135796ef7ac490f (patch) | |
tree | ddef664def68b9868d2d04655654cd9854c5d825 /core/src/Model/TransactionsModel.hpp | |
parent | 1fd1e4b5f2418e3ac2909658993bfedb615537ec (diff) |
Deliveries table working, item column
Diffstat (limited to 'core/src/Model/TransactionsModel.hpp')
-rw-r--r-- | core/src/Model/TransactionsModel.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/src/Model/TransactionsModel.hpp b/core/src/Model/TransactionsModel.hpp index 86611cf..cd19241 100644 --- a/core/src/Model/TransactionsModel.hpp +++ b/core/src/Model/TransactionsModel.hpp @@ -11,6 +11,7 @@ class SalesTable public: SQLite::Statement GetRowCount; SQLite::Statement GetRows; + SQLite::Statement GetItems; public: SalesTable(TransactionModel& db); @@ -21,6 +22,7 @@ class PurchasesTable public: SQLite::Statement GetRowCount; SQLite::Statement GetRows; + SQLite::Statement GetItems; public: PurchasesTable(TransactionModel& db); @@ -30,6 +32,7 @@ class DeliveryTable { public: SQLite::Statement FilterByTypeAndId; + SQLite::Statement GetItems; public: DeliveryTable(TransactionModel& db); |