ecb conversions with corrections2

This commit is contained in:
Priec
2026-08-13 11:41:28 +02:00
parent 8f8b5b4601
commit 774c9a3ce0
9 changed files with 569 additions and 112 deletions

View File

@@ -48,6 +48,15 @@ pub struct PostTableDataRequest {
::prost_types::Value,
>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct PostAccountingTableDataRequest {
#[prost(message, optional, tag = "1")]
pub row: ::core::option::Option<PostTableDataRequest>,
#[prost(message, optional, tag = "2")]
pub exchange_rate_selection: ::core::option::Option<
super::ecb::ExchangeRateSelection,
>,
}
/// Insert response.
#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]
pub struct PostTableDataResponse {
@@ -134,6 +143,21 @@ pub struct PutTableDataRequest {
pub expected_revision: i64,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct PutAccountingTableDataRequest {
#[prost(message, optional, tag = "1")]
pub update: ::core::option::Option<PutTableDataRequest>,
#[prost(message, optional, tag = "2")]
pub exchange_rate_selection: ::core::option::Option<
super::ecb::ExchangeRateSelection,
>,
#[prost(bool, tag = "3")]
pub confirmed: bool,
#[prost(string, repeated, tag = "4")]
pub expected_affected_profiles: ::prost::alloc::vec::Vec<
::prost::alloc::string::String,
>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct PutTableDataConfirmedRequest {
#[prost(message, optional, tag = "1")]
pub update: ::core::option::Option<PutTableDataRequest>,
@@ -517,6 +541,37 @@ pub mod tables_data_client {
);
self.inner.unary(req, path, codec).await
}
/// Insert an ACCOUNTING-enabled source row with an explicit exchange-rate
/// treatment for the journal line created from it.
pub async fn post_accounting_table_data(
&mut self,
request: impl tonic::IntoRequest<super::PostAccountingTableDataRequest>,
) -> std::result::Result<
tonic::Response<super::PostTableDataResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::unknown(
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic_prost::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/komp_ac.tables_data.TablesData/PostAccountingTableData",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"komp_ac.tables_data.TablesData",
"PostAccountingTableData",
),
);
self.inner.unary(req, path, codec).await
}
/// Insert multiple rows by applying PostTableData behavior to each row.
///
/// Behavior:
@@ -594,6 +649,35 @@ pub mod tables_data_client {
);
self.inner.unary(req, path, codec).await
}
pub async fn put_accounting_table_data(
&mut self,
request: impl tonic::IntoRequest<super::PutAccountingTableDataRequest>,
) -> std::result::Result<
tonic::Response<super::PutTableDataResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::unknown(
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic_prost::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/komp_ac.tables_data.TablesData/PutAccountingTableData",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"komp_ac.tables_data.TablesData",
"PutAccountingTableData",
),
);
self.inner.unary(req, path, codec).await
}
/// Performs a PUT after the user explicitly accepted changing a referenced version.
pub async fn put_table_data_confirmed(
&mut self,
@@ -888,6 +972,15 @@ pub mod tables_data_server {
tonic::Response<super::PostTableDataResponse>,
tonic::Status,
>;
/// Insert an ACCOUNTING-enabled source row with an explicit exchange-rate
/// treatment for the journal line created from it.
async fn post_accounting_table_data(
&self,
request: tonic::Request<super::PostAccountingTableDataRequest>,
) -> std::result::Result<
tonic::Response<super::PostTableDataResponse>,
tonic::Status,
>;
/// Insert multiple rows by applying PostTableData behavior to each row.
///
/// Behavior:
@@ -924,6 +1017,13 @@ pub mod tables_data_server {
tonic::Response<super::PutTableDataResponse>,
tonic::Status,
>;
async fn put_accounting_table_data(
&self,
request: tonic::Request<super::PutAccountingTableDataRequest>,
) -> std::result::Result<
tonic::Response<super::PutTableDataResponse>,
tonic::Status,
>;
/// Performs a PUT after the user explicitly accepted changing a referenced version.
async fn put_table_data_confirmed(
&self,
@@ -1145,6 +1245,57 @@ pub mod tables_data_server {
};
Box::pin(fut)
}
"/komp_ac.tables_data.TablesData/PostAccountingTableData" => {
#[allow(non_camel_case_types)]
struct PostAccountingTableDataSvc<T: TablesData>(pub Arc<T>);
impl<
T: TablesData,
> tonic::server::UnaryService<super::PostAccountingTableDataRequest>
for PostAccountingTableDataSvc<T> {
type Response = super::PostTableDataResponse;
type Future = BoxFuture<
tonic::Response<Self::Response>,
tonic::Status,
>;
fn call(
&mut self,
request: tonic::Request<
super::PostAccountingTableDataRequest,
>,
) -> Self::Future {
let inner = Arc::clone(&self.0);
let fut = async move {
<T as TablesData>::post_accounting_table_data(
&inner,
request,
)
.await
};
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let max_decoding_message_size = self.max_decoding_message_size;
let max_encoding_message_size = self.max_encoding_message_size;
let inner = self.inner.clone();
let fut = async move {
let method = PostAccountingTableDataSvc(inner);
let codec = tonic_prost::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec)
.apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
)
.apply_max_message_size_config(
max_decoding_message_size,
max_encoding_message_size,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/komp_ac.tables_data.TablesData/PostTableDataBulk" => {
#[allow(non_camel_case_types)]
struct PostTableDataBulkSvc<T: TablesData>(pub Arc<T>);
@@ -1236,6 +1387,55 @@ pub mod tables_data_server {
};
Box::pin(fut)
}
"/komp_ac.tables_data.TablesData/PutAccountingTableData" => {
#[allow(non_camel_case_types)]
struct PutAccountingTableDataSvc<T: TablesData>(pub Arc<T>);
impl<
T: TablesData,
> tonic::server::UnaryService<super::PutAccountingTableDataRequest>
for PutAccountingTableDataSvc<T> {
type Response = super::PutTableDataResponse;
type Future = BoxFuture<
tonic::Response<Self::Response>,
tonic::Status,
>;
fn call(
&mut self,
request: tonic::Request<super::PutAccountingTableDataRequest>,
) -> Self::Future {
let inner = Arc::clone(&self.0);
let fut = async move {
<T as TablesData>::put_accounting_table_data(
&inner,
request,
)
.await
};
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let max_decoding_message_size = self.max_decoding_message_size;
let max_encoding_message_size = self.max_encoding_message_size;
let inner = self.inner.clone();
let fut = async move {
let method = PutAccountingTableDataSvc(inner);
let codec = tonic_prost::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec)
.apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
)
.apply_max_message_size_config(
max_decoding_message_size,
max_encoding_message_size,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/komp_ac.tables_data.TablesData/PutTableDataConfirmed" => {
#[allow(non_camel_case_types)]
struct PutTableDataConfirmedSvc<T: TablesData>(pub Arc<T>);