Skip to content

Commit

Permalink
[FIX] rma: _get_sequence_values signature
Browse files Browse the repository at this point in the history
  • Loading branch information
chienandalu committed Sep 6, 2023
1 parent 69cfbec commit 770cbf4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rma/models/stock_warehouse.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ def _get_rma_location_values(self):
"location_id": self.env.ref("rma.stock_location_rma").id,
}

def _get_sequence_values(self):
values = super()._get_sequence_values()
def _get_sequence_values(self, name=False, code=False):
values = super()._get_sequence_values(name, code)
values.update(
{
"rma_in_type_id": {
Expand Down

0 comments on commit 770cbf4

Please sign in to comment.