Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
1 ตอบกลับ
637 มุมมอง

We are using v17, Odoo online.  


How would we set minimum ecommerce order value?  Say, only allows orders (check out) above $100.  Is there any way to set or manage this?  We have set a text alert on each of the product pages, but wondering if there was also a hard block function to force minimum order value?  


Thank you.  

อวตาร
ละทิ้ง
คำตอบที่ดีที่สุด

set a sql constraint checker:  define a function using decorator  "@api.constrains('field1', 'field2'...)".  

Then only the input value matchs your checker can be allowed and validated , otherwise it will raise an error by popping a notification window. 

See the example in the official doc:  developer/tutorials/getting_started/Chapter 11: Constraints

อวตาร
ละทิ้ง

Sorry i didn't noticed your online version, not sure whether the solution above works