This commit is contained in:
CHIEFSOFT\ameye
2026-01-08 11:54:47 -05:00
parent 5a45449636
commit b291f75679
3 changed files with 34 additions and 2 deletions
+30
View File
@@ -277,6 +277,36 @@ def merms_report_topics():
return response
@api.route("/panel/report/item/payment", methods=["POST"])
@jwt_required()
def merms_report_topics_payment():
data = request.get_json()
response = ReportService.process_report_topic_request(data)
return response
@api.route("/panel/report/item/system", methods=["POST"])
@jwt_required()
def merms_report_topics_system():
data = request.get_json()
response = ReportService.process_report_topic_request(data)
return response
@api.route("/panel/report/item/product", methods=["POST"])
@jwt_required()
def merms_report_topics_product():
data = request.get_json()
response = ReportService.process_report_topic_request(data)
return response
# @api.route("/panel/report/topics", methods=["POST"])
# @jwt_required()
# def merms_report_topics():
# data = request.get_json()
# response = ReportService.process_report_topic_request(data)
# return response
@api.route("/panel/account/products/color-styles", methods=["POST"])