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 83f7f41f
authored
Jul 07, 2024
by
Owo Sugiana
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Rumus Kota Bekasi
1 parent
5616f4b1
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
26 additions
and
5 deletions
CHANGES.txt
setup.py
sismiop/scripts/available_invoice.py
sismiop/services/base.py
sismiop/services/bekasi_kota.py
CHANGES.txt
View file @
83f7f41
0.3.10 2024-07-07
-----------------
- Rumus Kota Bekasi
0.3.9 2024-05-31
0.3.9 2024-05-31
----------------
----------------
- Kota Tangerang berbasis bulan dalam menghitung denda, tidak lagi tanggal.
- Kota Tangerang berbasis bulan dalam menghitung denda, tidak lagi tanggal.
...
...
setup.py
View file @
83f7f41
...
@@ -15,7 +15,7 @@ line = CHANGES.splitlines()[0]
...
@@ -15,7 +15,7 @@ line = CHANGES.splitlines()[0]
version
=
line
.
split
()[
0
]
version
=
line
.
split
()[
0
]
requires
=
[
requires
=
[
'sqlalchemy
< 2
'
,
'sqlalchemy'
,
'transaction'
,
'transaction'
,
'zope.sqlalchemy'
,
'zope.sqlalchemy'
,
'psycopg2-binary'
,
'psycopg2-binary'
,
...
...
sismiop/scripts/available_invoice.py
View file @
83f7f41
...
@@ -14,6 +14,7 @@ def get_option(argv):
...
@@ -14,6 +14,7 @@ def get_option(argv):
pars
.
add_argument
(
'--tahun'
)
pars
.
add_argument
(
'--tahun'
)
pars
.
add_argument
(
'--min-nominal'
,
type
=
int
)
pars
.
add_argument
(
'--min-nominal'
,
type
=
int
)
pars
.
add_argument
(
'--max-nominal'
,
type
=
int
)
pars
.
add_argument
(
'--max-nominal'
,
type
=
int
)
pars
.
add_argument
(
'--faktor-pengurang'
,
action
=
'store_true'
)
pars
.
add_argument
(
pars
.
add_argument
(
'--count'
,
type
=
int
,
default
=
default_count
,
help
=
help_count
)
'--count'
,
type
=
int
,
default
=
default_count
,
help
=
help_count
)
return
pars
.
parse_args
(
argv
)
return
pars
.
parse_args
(
argv
)
...
...
sismiop/services/base.py
View file @
83f7f41
...
@@ -395,6 +395,8 @@ class AvailableInvoice(Query):
...
@@ -395,6 +395,8 @@ class AvailableInvoice(Query):
q
=
q
.
filter
(
q
=
q
.
filter
(
Invoice
.
pbb_yg_harus_dibayar_sppt
<=
Invoice
.
pbb_yg_harus_dibayar_sppt
<=
self
.
option
.
max_nominal
)
self
.
option
.
max_nominal
)
if
self
.
option
.
faktor_pengurang
:
q
=
q
.
filter
(
Invoice
.
faktor_pengurang_sppt
>
0
)
return
q
return
q
def
show
(
self
):
def
show
(
self
):
...
...
sismiop/services/bekasi_kota.py
View file @
83f7f41
...
@@ -22,8 +22,12 @@ from .binjai import (
...
@@ -22,8 +22,12 @@ from .binjai import (
)
)
AWAL_DISC_DENDA
=
date
(
2023
,
12
,
4
)
DISC_POKOK
=
[
AKHIR_DISC_DENDA
=
date
(
2023
,
12
,
26
)
(
date
(
2024
,
7
,
8
),
date
(
2024
,
8
,
18
),
0.1
),
(
date
(
2024
,
8
,
19
),
date
(
2024
,
9
,
30
),
0.05
),
]
AWAL_DISC_DENDA
=
date
(
2024
,
7
,
8
)
AKHIR_DISC_DENDA
=
date
(
2024
,
9
,
30
)
def
hitung_denda
(
tagihan
,
jatuh_tempo
,
tgl_hitung
):
def
hitung_denda
(
tagihan
,
jatuh_tempo
,
tgl_hitung
):
...
@@ -58,9 +62,19 @@ class Inquiry(BaseInquiry):
...
@@ -58,9 +62,19 @@ class Inquiry(BaseInquiry):
self
.
denda
=
round_up
(
denda
)
self
.
denda
=
round_up
(
denda
)
def
hitung_discount
(
self
):
# Override
def
hitung_discount
(
self
):
# Override
if
self
.
tgl_bayar
.
year
!=
2024
:
return
self
.
discount_denda
=
self
.
discount_pokok
=
0
self
.
discount_denda
=
self
.
discount_pokok
=
0
if
AWAL_DISC_DENDA
<=
self
.
tgl_bayar
<=
AKHIR_DISC_DENDA
:
if
self
.
invoice
.
thn_pajak_sppt
==
'2024'
:
self
.
discount_denda
=
self
.
denda
if
not
self
.
invoice
.
faktor_pengurang_sppt
:
for
awal
,
akhir
,
potongan
in
DISC_POKOK
:
if
awal
<=
self
.
tgl_bayar
<=
akhir
:
self
.
discount_pokok
=
potongan
*
self
.
tagihan
self
.
discount_pokok
=
int
(
self
.
discount_pokok
)
break
elif
self
.
invoice
.
thn_pajak_sppt
<
'2024'
:
if
AWAL_DISC_DENDA
<=
self
.
tgl_bayar
<=
AKHIR_DISC_DENDA
:
self
.
discount_denda
=
self
.
denda
self
.
discount
=
self
.
discount_denda
+
self
.
discount_pokok
self
.
discount
=
self
.
discount_denda
+
self
.
discount_pokok
def
before_save
(
self
,
payment
):
# Override
def
before_save
(
self
,
payment
):
# Override
...
...
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