summaryrefslogtreecommitdiff
path: root/indoteknik_custom/models/account_move.py
diff options
context:
space:
mode:
authorAzka Nathan <darizkyfaz@gmail.com>2024-04-15 15:14:59 +0700
committerAzka Nathan <darizkyfaz@gmail.com>2024-04-15 15:14:59 +0700
commite016af1d1ab8df064cbb852965173ab2d53093dd (patch)
treece78679bec52cc2bee7da9b9aefec6436e223f87 /indoteknik_custom/models/account_move.py
parent28a268fde404c68706b903d4492f847310cc074e (diff)
fix bug automatic purchase and add already_paid on account move
Diffstat (limited to 'indoteknik_custom/models/account_move.py')
-rw-r--r--indoteknik_custom/models/account_move.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/indoteknik_custom/models/account_move.py b/indoteknik_custom/models/account_move.py
index f80cc109..94a1ab19 100644
--- a/indoteknik_custom/models/account_move.py
+++ b/indoteknik_custom/models/account_move.py
@@ -55,6 +55,7 @@ class AccountMove(models.Model):
bills_invoice_document = fields.Binary(string="Invoice", required=False)
is_invoice_uploaded = fields.Boolean(string="Is Invoice Uploaded", default=False)
is_efaktur_uploaded = fields.Boolean(string="Is eFaktur Uploaded", default=False)
+ already_paid = fields.Boolean(string="Sudah Dibayar?", default=False)
delivery_amt_text = fields.Char(string="Delivery Amt Terbilang", compute='compute_delivery_amt_text')
def compute_delivery_amt_text(self):