moving from one profile to another profile

This commit is contained in:
Priec
2026-08-04 00:42:20 +02:00
parent 00121874a7
commit f248a60b07
4 changed files with 8 additions and 4 deletions

View File

@@ -122,7 +122,9 @@ message PostJournalRequest {
message JournalLineInput {
JournalSide side = 1;
string account_code = 2;
// Parsed account path segments. The client owns presentation parsing; the
// server accepts no delimiter-encoded account string.
repeated string account_segments = 2;
string amount = 3;
string description = 4;
}

Binary file not shown.

View File

@@ -40,8 +40,10 @@ pub struct PostJournalRequest {
pub struct JournalLineInput {
#[prost(enumeration = "JournalSide", tag = "1")]
pub side: i32,
#[prost(string, tag = "2")]
pub account_code: ::prost::alloc::string::String,
/// Parsed account path segments. The client owns presentation parsing; the
/// server accepts no delimiter-encoded account string.
#[prost(string, repeated, tag = "2")]
pub account_segments: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
#[prost(string, tag = "3")]
pub amount: ::prost::alloc::string::String,
#[prost(string, tag = "4")]

2
server

Submodule server updated: c637ba7883...4204f74373