all tests works...

This commit is contained in:
samantha42
2026-03-21 18:14:23 +01:00
parent c55e7d6774
commit 6c5b4bae67
6 changed files with 239 additions and 150 deletions

View File

@@ -49,6 +49,14 @@ type SetDepartmentActivity struct {
CostCenter *string `json:"cost_center"`
}
type DeleteDepartmentRequest struct {
ID int `json:"id"`
}
type DeleteGLAccountRequest struct {
ID int `json:"id"`
}
type GLAccount struct {
ID int `json:"id"`
Code string `json:"code"`