feat: Implement Cancel Order functionality with command, handler, and validation

This commit is contained in:
masoodafar-web
2025-12-04 19:53:21 +03:30
parent 82319285bc
commit 67b43fea7a
12 changed files with 245 additions and 1 deletions

View File

@@ -254,6 +254,7 @@ message GetWithdrawalRequestsRequest
google.protobuf.StringValue week_number = 3;
int32 page_index = 4;
int32 page_size = 5;
string iban_number = 6;
}
message GetWithdrawalRequestsResponse
@@ -277,6 +278,9 @@ message WithdrawalRequestModel
string processed_by = 11;
string reason = 12;
google.protobuf.Timestamp created = 13;
string bank_reference_id = 14;
string bank_tracking_code = 15;
string payment_failure_reason = 16;
}
// ============ Worker Control APIs ============