Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
deee4e5
refactor: replace GrayQuest API Log with Integration Request and sani…
badal8381 Feb 12, 2026
de4cdac
refactor: improve API credential validation and sanitize name fields …
badal8381 Feb 20, 2026
3764581
fix: set is_emi_payment on form submission and remove discount
SamarthPansare Feb 20, 2026
668063b
Merge pull request #18 from UnityAppSuite/fix/defer-emi-discount-removal
badal8381 Feb 20, 2026
aab97dd
fix: handle EMI payment redirect without processing payment
badal8381 Mar 2, 2026
4c7f9a3
refactor: update student details retrieval and EMI payment handling
SamarthPansare Mar 2, 2026
83e70e4
refactor: enhance student details retrieval with class ID in payload
badal8381 Mar 2, 2026
692f4a4
refactor: streamline student details retrieval and class ID assignment
SamarthPansare Mar 4, 2026
88c531a
fix: use fee program instead of student program for class_id in GrayQ…
SamarthPansare Mar 4, 2026
79c4057
fix: remove payment processing from success page and guard webhook lo…
SamarthPansare Mar 9, 2026
eb3b5de
fix: pass empty mobile number instead of hardcoded 9999999999 fallback
SamarthPansare Mar 12, 2026
b484515
refactor: support separate EMI and PG split amounts in fee headers
SamarthPansare Mar 27, 2026
d7f1fa5
fix: extend EMI event handling to include additional states
SamarthPansare Apr 23, 2026
1c311c3
Merge pull request #21 from UnityAppSuite/refactor/dual-mode-fee-headers
badal8381 Jun 10, 2026
50b2dce
fix: track EMI state per installment on Payment Schedule
sonalikadam-dot Aug 6, 2026
bcd331b
Merge pull request #26 from UnityAppSuite/hotfix/gq-emi-termwise
SamarthPansare Aug 17, 2026
531ea61
fix: keep the EMI marker on an installment EMI has settled
SamarthPansare Aug 18, 2026
af5ee00
fix: treat a disbursal as funding rather than as a terminal event
SamarthPansare Aug 18, 2026
784f1a3
Merge pull request #27 from UnityAppSuite/fix/gq-emi-funded-term-flag
SamarthPansare Aug 18, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions grayquest/grayquest/doctype/grayquest_api_log/__init__.py

This file was deleted.

192 changes: 0 additions & 192 deletions grayquest/grayquest/doctype/grayquest_api_log/grayquest_api_log.json

This file was deleted.

125 changes: 0 additions & 125 deletions grayquest/grayquest/doctype/grayquest_api_log/grayquest_api_log.py

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"engine": "InnoDB",
"field_order": [
"status",
"payment_term",
"column_break_aeep",
"timestamp"
],
Expand All @@ -18,6 +19,13 @@
"label": "Status",
"options": "Form Submitted\nApproved\nDownpayment Captured\nProcess Completed\nDisbursed\nInstallment Captured\nInstallment Overdue\nClosed\nBackout\nRejected"
},
{
"description": "Installment this EMI application was raised for (GrayQuest udf_3).",
"fieldname": "payment_term",
"fieldtype": "Data",
"in_list_view": 1,
"label": "Payment Term"
},
{
"fieldname": "column_break_aeep",
"fieldtype": "Column Break"
Expand All @@ -32,7 +40,7 @@
"index_web_pages_for_search": 1,
"istable": 1,
"links": [],
"modified": "2026-01-30 14:30:00.000000",
"modified": "2026-08-06 10:00:00.000000",
"modified_by": "Administrator",
"module": "GrayQuest",
"name": "GrayQuest EMI Status",
Expand Down
Loading