Skip to content

Commit

Permalink
fixup! [MIG] pos_deposit: Migration to 16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ntsirintanis committed Dec 11, 2024
1 parent e66311a commit 44c8ad2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pos_deposit/models/product_template.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
class ProductTemplate(models.Model):
_inherit = "product.template"

use_deposit = fields.Boolean("Use Deposit")
is_deposit = fields.Boolean("Is Deposit")
use_deposit = fields.Boolean()
is_deposit = fields.Boolean()
select_deposit = fields.Many2one(
"product.product", "Select Deposit", domain=[("is_deposit", "!=", False)]
"product.product", domain=[("is_deposit", "!=", False)]
)

0 comments on commit 44c8ad2

Please sign in to comment.