Fix Kadaluwarsa

This commit is contained in:
aditya.siregar 2024-09-02 12:50:16 +07:00
parent 3e0f88cc85
commit 572828cf73

View File

@ -146,6 +146,10 @@ func (h *HistoryOrder) GetPaymentStatus() string {
return "MENUNGGU PEMBAYARAN" return "MENUNGGU PEMBAYARAN"
} }
if h.Status == "EXPIRED" {
return "KADALUWARSA"
}
return "" return ""
} }