Skip to content

Commit

Permalink
[MIG] rma_sale_force_invoiced: Migration to 17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JasminSForgeFlow committed Jan 3, 2025
1 parent 6662188 commit 2ac5ac7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rma_sale_force_invoiced/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

{
"name": "RMA Sale Force Invoiced",
"version": "16.0.1.0.0",
"version": "17.0.1.0.0",
"license": "AGPL-3",
"category": "RMA",
"summary": "Forces sales orders created from RMA to be forced as invoiced",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ class RmaLineMakeSaleOrder(models.TransientModel):

@api.model
def _prepare_sale_order(self, line):
data = super(RmaLineMakeSaleOrder, self)._prepare_sale_order(line)
data = super()._prepare_sale_order(line)
data["force_invoiced"] = line.operation_id.sale_force_invoiced
return data

0 comments on commit 2ac5ac7

Please sign in to comment.