__init__.py
1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
from sqlalchemy.orm import relationship, backref
from sqlalchemy import Column, String, Integer, Text, ForeignKey
from opensipkd.models import (
DBSession, Base, CommonModel, DefaultModel, NamaModel, StandarModel)
import logging
PAD_TABLE_ARGS = {"schema": "pad"}
PUBLIC_TABLE_ARGS = {"schema": "public"}
_logging = logging.getLogger(__name__)
def includeme(config):
_logging.info('include pjdl.models')
from .rekening import PjdlRekening
from .kecamatan import *
from .kelurahan import PjdlKelurahan
from .usaha import PjdlUsaha
from .pajak import PjdlPajak, PjdlPajakTarif
from .spt_type import PjdlSptType
from .tblpemda import PjdlPemda
from .tp import PjdlTp
from .airtanah import *
from .reklame import *
from .pejabat import PjdlPejabat
from .customer import PjdlWp
from .customer_usaha import PjdlOp, PjdlOpHotel
from .registrasi import *
from .spt_invoice import PjdlInvoice
from .sspd_payment import PjdlPayment
from .stpd import PjdlStpd
from .kohir import *
from .reklame_hitung import PjdlReklameHitung
from .reports import PjdlReports, PjdlReportItems, REPORT_CATEGORY, REPORT_DICT
from .spt_tegur import PjdlSptTegur
from .uptd import *
from .spt_air import *
from .spt_reklame import *