diff --git a/client b/client index 75221c3a..7027c474 160000 --- a/client +++ b/client @@ -1 +1 @@ -Subproject commit 75221c3adb22e3c6d8da59f9a93d5797d49bf7df +Subproject commit 7027c47443088a7e0be1013f96b75fc04ff587b3 diff --git a/common/proto/tables_data.proto b/common/proto/tables_data.proto index a27afb5f..5009fca0 100644 --- a/common/proto/tables_data.proto +++ b/common/proto/tables_data.proto @@ -386,6 +386,10 @@ message GetTableDataResponse { // The generation returned by this response. Zero is never returned. int64 row_version = 5; + + // Active journal containing this row's automatic accounting line, when the + // table is ACCOUNTING-enabled and the row has been posted. + optional int64 journal_id = 6; } // Count non-deleted rows. diff --git a/common/src/proto/descriptor.bin b/common/src/proto/descriptor.bin index d840f0b6..9269e9c2 100644 Binary files a/common/src/proto/descriptor.bin and b/common/src/proto/descriptor.bin differ diff --git a/common/src/proto/komp_ac.tables_data.rs b/common/src/proto/komp_ac.tables_data.rs index 7a924291..3b8b3c78 100644 --- a/common/src/proto/komp_ac.tables_data.rs +++ b/common/src/proto/komp_ac.tables_data.rs @@ -350,6 +350,10 @@ pub struct GetTableDataResponse { /// The generation returned by this response. Zero is never returned. #[prost(int64, tag = "5")] pub row_version: i64, + /// Active journal containing this row's automatic accounting line, when the + /// table is ACCOUNTING-enabled and the row has been posted. + #[prost(int64, optional, tag = "6")] + pub journal_id: ::core::option::Option, } /// Count non-deleted rows. #[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] diff --git a/server b/server index f57088e5..e17f9278 160000 --- a/server +++ b/server @@ -1 +1 @@ -Subproject commit f57088e548dd3afb14f018697a12e82b13863b42 +Subproject commit e17f92785a816de2a0fff9d27eea5cb09ffb65a0