修复新建服务器时无法付款的问题

This commit is contained in:
jingrow 2025-10-02 18:04:30 +08:00
parent 95611089ed
commit 49adef8da3

View File

@ -1026,7 +1026,7 @@ def create_server_order(**kwargs):
"pagetype": "Order",
"order_id": order_id,
"order_type": "新建服务器",
"team": team,
"team": team.name,
"status": "待支付",
"total_amount": total_amount,
"title": f"{region_id}",
@ -1089,7 +1089,7 @@ def create_server_renew_order(**kwargs):
"pagetype": "Order",
"order_id": order_id,
"order_type": "服务器续费",
"team": team,
"team": team.name,
"status": "待支付",
"total_amount": total_amount,
"title": server_pg.instance_id,