Skip to content

Commit 7da08d7

Browse files
CarlosRoca13ferran-S73
authored andcommitted
[FIX] website_sale_checkout_skip_payment: Error when client is public user
When the client is a public user we got an error, because the request.session.uid is None and the value of the field checkout_skip_payment is not computed. As we want to compute this field always,the condition is removed to avoid the possible error. TT29736
1 parent 797ada7 commit 7da08d7

File tree

1 file changed

+3
-4
lines changed
  • website_sale_checkout_skip_payment/models

1 file changed

+3
-4
lines changed

website_sale_checkout_skip_payment/models/website.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ class Website(models.Model):
1717

1818
def _compute_checkout_skip_payment(self):
1919
for rec in self:
20-
if request.session.uid:
21-
rec.checkout_skip_payment = (
22-
request.env.user.partner_id.skip_website_checkout_payment
23-
)
20+
rec.checkout_skip_payment = (
21+
request.env.user.partner_id.skip_website_checkout_payment
22+
)

0 commit comments

Comments
 (0)