feat(aftersale): per-line refund/return flow with ledger-backed completion (add-aftersale-refunds)

This commit is contained in:
Chengdong Zhang
2026-09-23 16:56:30 +08:00
parent 93e5a05d48
commit 2c2b54c21c
43 changed files with 4889 additions and 32 deletions
+2
View File
@@ -1,4 +1,5 @@
pub mod account;
pub mod aftersale;
pub mod address;
pub mod billing;
pub mod brand;
@@ -25,6 +26,7 @@ use crate::state::AppState;
pub fn api_router() -> Router<AppState> {
Router::new()
.merge(health::router())
.merge(aftersale::router())
.merge(account::router())
.merge(address::router())
.merge(identity::router())