next billing date

This commit is contained in:
CHIEFSOFT\ameye
2025-08-30 07:16:44 -04:00
parent 57c5e8afc5
commit 9d8aab3585
4 changed files with 77 additions and 25 deletions
+2 -2
View File
@@ -111,14 +111,14 @@ def merms_account():
@jwt_required()
def merms_account_bar():
data = request.get_json()
response = AccountService.process_bar_request(data)
response = AccountService.process_bar_data(data)
return response
@api.route("/panel/account/bar", methods=["POST"])
@jwt_required()
def merms_account_bar2():
data = request.get_json()
response = AccountService.process_bar_request(data)
response = AccountService.process_bar_data(data)
return response
@api.route("/panel/account/actions", methods=["POST"])