Commit 10b96aac by Owo Sugiana

Bug fixed available invoice Cilegon

1 parent 92d343fb
......@@ -4,7 +4,7 @@ from datetime import date
from .default import (
Inquiry as BaseInquiry,
Reversal as BaseReversal,
AvailableInvoice,
AvailableInvoice as BaseAvailableInvoice,
)
from ..models.cilegon import PembayaranSppt
......@@ -41,3 +41,8 @@ class Reversal(BaseReversal):
def before_save(self): # Override
self.payment.denda_sblm_diskon = self.payment.discount = 0
class AvailableInvoice(BaseAvailableInvoice):
def get_inquiry_class(self):
return Inquiry
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!