Commit 36891ff1 by Owo Sugiana

Tambah Kabupaten Pangandaran

1 parent aa51e060
0.5 2024-01-03
--------------
- Tahun Terbit 2024 ke atas dendanya 1%
- Tambah Kabupaten Pangandaran
0.4.13 2023-09-05
-----------------
......
from .banjar import (
Inquiry as BaseInquiry,
Reversal as BaseReversal,
AvailableInvoice as BaseAvailableInvoice,
)
from ..models.ciamis import Kohir
class Inquiry(BaseInquiry):
# Cekal 2024, Pak Yasir, 3-1-2024
def is_available(self):
return super().is_available() and self.tahun_terbit < 2024
def get_kohir_model(self): # Override
return Kohir
class Reversal(BaseReversal):
def get_kohir_model(self): # Override
return Kohir
class AvailableInvoice(BaseAvailableInvoice):
def get_inquiry_class(self): # Override
return Inquiry
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!