From a5522dfd19488f2b76ad40d3ba9750852f92da73 Mon Sep 17 00:00:00 2001 From: Azka Nathan Date: Wed, 15 Jan 2025 09:25:26 +0700 Subject: fix bug --- indoteknik_custom/models/account_move.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/indoteknik_custom/models/account_move.py b/indoteknik_custom/models/account_move.py index e681d96e..2810c594 100644 --- a/indoteknik_custom/models/account_move.py +++ b/indoteknik_custom/models/account_move.py @@ -253,6 +253,11 @@ class AccountMove(models.Model): line.date_maturity = entry.date return res + def button_draft(self): + res = super(AccountMove, self).button_draft() + if not self.env.user.is_accounting: + raise UserError("Hanya Finence yang bisa ubah data") + return res def _compute_invoice_day_to_due(self): for invoice in self: @@ -318,11 +323,6 @@ class AccountMove(models.Model): if rec.statement_line_id and not rec.statement_line_id.statement_id.is_edit and rec.statement_line_id.statement_id.state == 'confirm': raise UserError('Bank Statement di Lock, Minta admin reconcile untuk unlock') - def write(self, vals): - if not self.env.user.is_accounting: - raise UserError("Hanya Finence yang bisa ubah data") - return super(AccountMove, self).write(vals) - # def write(self, vals): # res = super(AccountMove, self).write(vals) # for rec in self.line_ids: -- cgit v1.2.3