massive draft for payment process (UNCOMPLETE)

This commit is contained in:
mr
2024-12-12 16:25:47 +01:00
parent fbbce7817b
commit 02d1e93c78
55 changed files with 3018 additions and 1177 deletions

View File

@@ -20,6 +20,8 @@ const (
BOOKING
WORKFLOW_HISTORY
WORKSPACE_HISTORY
ORDER
BUYING_STATUS
)
var NOAPI = ""
@@ -48,6 +50,8 @@ var DefaultAPI = [...]string{
DATACENTERAPI,
NOAPI,
NOAPI,
NOAPI,
NOAPI,
}
// Bind the standard data name to the data type
@@ -68,6 +72,8 @@ var Str = [...]string{
"booking",
"workflow_history",
"workspace_history",
"order",
"buying_status",
}
func FromInt(i int) string {