summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAzka Nathan <darizkyfaz@gmail.com>2024-09-18 11:02:51 +0700
committerAzka Nathan <darizkyfaz@gmail.com>2024-09-18 11:02:51 +0700
commitb34c5cc5d6cc3dc1e9ccf43cecc14a5a7a427992 (patch)
tree0c8ebe2d303e1d923464c8f6b9472d35ffe9f2a7
parentaabe85f0b4fe6e88a99d4bfa946599d220a9aa9f (diff)
change condition
-rw-r--r--indoteknik_custom/models/account_move.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/indoteknik_custom/models/account_move.py b/indoteknik_custom/models/account_move.py
index a7010bbe..725b3c2d 100644
--- a/indoteknik_custom/models/account_move.py
+++ b/indoteknik_custom/models/account_move.py
@@ -174,7 +174,7 @@ class AccountMove(models.Model):
def _compute_mark_upload_efaktur(self):
for move in self:
- if move.date_efaktur_exported or move.is_efaktur_exported or move.efaktur_document:
+ if move.efaktur_document:
move.mark_upload_efaktur = 'sudah_upload'
else:
move.mark_upload_efaktur = 'belum_upload'