Merge branch 'feature-payment-management' into feature-1553-1598

This commit is contained in:
Jissin Mathew
2026-05-25 12:11:20 +05:30
11 changed files with 395 additions and 16 deletions
@@ -13,7 +13,8 @@ namespace util
enum class PaymentMode
{
ONLINE,
OFFLINE
OFFLINE,
NOTSET
};
enum class PaymentStatus
@@ -74,6 +75,8 @@ namespace util
return "ONLINE";
case PaymentMode::OFFLINE:
return "OFFLINE";
case PaymentMode::NOTSET:
return "NOTSET";
}
throw std::invalid_argument("Invalid PaymentMode");
}