purchase_order_product_recommendation_supermarket: number of recommendations without limit by default

This commit is contained in:
Luis 2025-06-19 18:08:53 +02:00
parent ea68e3cc30
commit 3e20de2309

View file

@ -48,6 +48,9 @@ class PurchaseOrderRecommendationSupermarketWizard(models.TransientModel):
compute="_compute_order_total_amount", compute="_compute_order_total_amount",
readonly=True, readonly=True,
) )
line_amount = fields.Integer(
default=0,
)
@api.depends("date_begin", "date_end") @api.depends("date_begin", "date_end")
def _compute_total_days(self): def _compute_total_days(self):