mirror of
https://github.com/bringout/oca-ocb-pos.git
synced 2026-04-25 03:02:06 +02:00
Initial commit: Pos packages
This commit is contained in:
commit
95dfb9edb0
1301 changed files with 264148 additions and 0 deletions
|
|
@ -0,0 +1,20 @@
|
|||
# coding: utf-8
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
import logging
|
||||
|
||||
from odoo import api, fields, models, _
|
||||
from odoo.exceptions import ValidationError
|
||||
|
||||
_logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class PosConfig(models.Model):
|
||||
_inherit = 'pos.config'
|
||||
|
||||
adyen_ask_customer_for_tip = fields.Boolean('Ask Customers For Tip')
|
||||
|
||||
@api.constrains('adyen_ask_customer_for_tip', 'iface_tipproduct', 'tip_product_id')
|
||||
def _check_adyen_ask_customer_for_tip(self):
|
||||
for config in self:
|
||||
if config.adyen_ask_customer_for_tip and (not config.tip_product_id or not config.iface_tipproduct):
|
||||
raise ValidationError(_("Please configure a tip product for POS %s to support tipping with Adyen.", config.name))
|
||||
Loading…
Add table
Add a link
Reference in a new issue