Skip to content

Commit

Permalink
[FIX] sale_product_pack_assisted: fix expand_pack_line function
Browse files Browse the repository at this point in the history
  • Loading branch information
vib-adhoc committed Apr 24, 2023
1 parent 8e5e7ea commit 82f40e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sale_product_pack_assisted/models/sale_order_line.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def expand_pack_line(self, write=False):
"price_subtotal": price_unit * quantity,
}
self.assisted_pack_line_ids.create(vals)
return super().expand_pack_line()
return super().expand_pack_line(write)

def action_assisted_pack_detail(self):
view = self.env.ref("sale_product_pack_assisted.view_order_line_form2")
Expand Down

0 comments on commit 82f40e1

Please sign in to comment.