mirror of
https://github.com/OCA/account-financial-tools.git
synced 2025-02-02 12:47:26 +02:00
[FIX] account_move_name_sequence: issue #1465 vals get refund_sequence true if value not get in vals
This commit is contained in:
@@ -74,7 +74,7 @@ class AccountJournal(models.Model):
|
||||
vals["sequence_id"] = self._create_sequence(vals).id
|
||||
if (
|
||||
vals.get("type") in ("sale", "purchase")
|
||||
and vals.get("refund_sequence")
|
||||
and vals.get("refund_sequence", True)
|
||||
and not vals.get("refund_sequence_id")
|
||||
):
|
||||
vals["refund_sequence_id"] = self._create_sequence(vals, refund=True).id
|
||||
|
||||
Reference in New Issue
Block a user