conversion stuff is now handled by the module

This commit is contained in:
Priec
2026-09-07 20:12:52 +02:00
parent 44dc6cc572
commit d8663d946f
8 changed files with 33 additions and 16 deletions

View File

@@ -3,7 +3,6 @@ syntax = "proto3";
package komp_ac.tables_data;
import "common.proto";
import "exchange_rates.proto";
import "google/protobuf/struct.proto";
// Read and write row data for user-defined tables inside profiles (schemas).
@@ -166,7 +165,7 @@ map<string, google.protobuf.Value> data = 3;
message PostAccountingTableDataRequest {
PostTableDataRequest row = 1;
komp_ac.exchange_rates.ExchangeRateSelection exchange_rate_selection = 2;
komp_ac.common.CurrencyConversionOptions conversion_options = 2;
}
// Insert response.
@@ -272,7 +271,7 @@ message PutTableDataRequest {
message PutAccountingTableDataRequest {
PutTableDataRequest update = 1;
komp_ac.exchange_rates.ExchangeRateSelection exchange_rate_selection = 2;
komp_ac.common.CurrencyConversionOptions conversion_options = 2;
bool confirmed = 3;
repeated string expected_affected_profiles = 4;
}