Skip to content

Commit

Permalink
[FIX] fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastienbeau committed Mar 24, 2022
1 parent 8ce6392 commit 7e799d9
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,12 @@ class ProductProduct(models.Model):
_inherit = "product.product"

shopinvader_price = fields.Serialized(
compute="_compute_shopinvader_price", string="Shopinvader Price"
compute="_compute_shopinvader_price",
string="Computed Price for Shopinvader",
help=(
"Option are not bind on shopinvader, but this field allow to get "
"the price in the shopinvader context"
),
)

def _compute_product_price(self):
Expand Down

0 comments on commit 7e799d9

Please sign in to comment.