Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
Owo Sugiana
/
sismiop-models
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit ccdfb330
authored
May 17, 2023
by
Owo Sugiana
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Tambah struktur tabel Kabupaten Ciamis
1 parent
fe38fe53
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
54 additions
and
0 deletions
CHANGES.txt
sismiop/models/ciamis.py
CHANGES.txt
View file @
ccdfb33
0.2.3 2023-05-17
----------------
- Tambah Kabupaten Ciamis, hanya struktur tabel saja
0.2.2 2023-05-08
0.2.2 2023-05-08
----------------
----------------
- Tambah Kota Banjar bila diarahkan ke Oracle. Kalau ke Postgres cukup pakai
- Tambah Kota Banjar bila diarahkan ke Oracle. Kalau ke Postgres cukup pakai
...
...
sismiop/models/ciamis.py
0 → 100644
View file @
ccdfb33
from
sqlalchemy
import
(
Column
,
BigInteger
,
String
,
)
from
sqlalchemy.ext.declarative
import
declarative_base
from
.objek_pajak
import
ObjekPajakMixin
from
.sppt
import
SpptMixin
from
.pembayaran_sppt
import
BasePembayaranSpptMixin
from
.kelurahan
import
KelurahanMixin
from
.kecamatan
import
KecamatanMixin
from
.propinsi
import
PropinsiMixin
from
.tempat_pembayaran
import
TempatPembayaranMixin
Base
=
declarative_base
()
class
ObjekPajak
(
Base
,
ObjekPajakMixin
):
pass
class
Sppt
(
Base
,
SpptMixin
):
pass
class
PembayaranSppt
(
Base
,
BasePembayaranSpptMixin
):
denda_sppt
=
Column
(
BigInteger
)
jml_sppt_yg_dibayar
=
Column
(
BigInteger
)
nip_rekam_byr_sppt
=
Column
(
String
(
18
))
kd_kanwil_bank
=
Column
(
String
(
2
),
nullable
=
False
)
kd_kppbb_bank
=
Column
(
String
(
2
),
nullable
=
False
)
kd_bank_tunggal
=
Column
(
String
(
2
),
nullable
=
False
)
kd_bank_persepsi
=
Column
(
String
(
2
),
nullable
=
False
)
class
Kelurahan
(
Base
,
KelurahanMixin
):
pass
class
Kecamatan
(
Base
,
KecamatanMixin
):
pass
class
Propinsi
(
Base
,
PropinsiMixin
):
pass
class
TempatPembayaran
(
Base
,
TempatPembayaranMixin
):
pass
Write
Preview
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment