report dara

This commit is contained in:
CHIEFSOFT\ameye
2026-01-09 11:41:27 -05:00
parent b291f75679
commit b5e4203558
3 changed files with 67 additions and 3 deletions
+3 -3
View File
@@ -281,7 +281,7 @@ def merms_report_topics():
@jwt_required()
def merms_report_topics_payment():
data = request.get_json()
response = ReportService.process_report_topic_request(data)
response = ReportService.process_report_topic_item("PAYMENT", data)
return response
@@ -289,7 +289,7 @@ def merms_report_topics_payment():
@jwt_required()
def merms_report_topics_system():
data = request.get_json()
response = ReportService.process_report_topic_request(data)
response = ReportService.process_report_topic_item("SYSTEM",data)
return response
@@ -297,7 +297,7 @@ def merms_report_topics_system():
@jwt_required()
def merms_report_topics_product():
data = request.get_json()
response = ReportService.process_report_topic_request(data)
response = ReportService.process_report_topic_item("PRODUCT",data)
return response