You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
2.1 KiB
43 lines
2.1 KiB
# -*- coding: utf-8 -*-
|
|
#############################################################################
|
|
#
|
|
# Cybrosys Technologies Pvt. Ltd.
|
|
#
|
|
# Copyright (C) 2021-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
|
|
# Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>)
|
|
#
|
|
# You can modify it under the terms of the GNU LESSER
|
|
# GENERAL PUBLIC LICENSE (LGPL v3), Version 3.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
|
|
#
|
|
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
|
|
# (LGPL v3) along with this program.
|
|
# If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
#############################################################################
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class ResConfigSettings(models.TransientModel):
|
|
_inherit = 'res.config.settings'
|
|
|
|
def _get_account_manager_ids(self):
|
|
user_ids = self.env['res.users'].search([])
|
|
account_manager_ids = user_ids.filtered(lambda l: l.has_group('account.group_account_manager'))
|
|
return [('id', 'in', account_manager_ids.ids)]
|
|
|
|
payment_approval = fields.Boolean('Payment Approval', config_parameter='account_payment_approval.payment_approval')
|
|
approval_user_id = fields.Many2one('res.users', string="Payment Approver", required=False,
|
|
domain=_get_account_manager_ids,
|
|
config_parameter='account_payment_approval.approval_user_id')
|
|
approval_amount = fields.Float(
|
|
'Minimum Approval Amount', config_parameter='account_payment_approval.approval_amount',
|
|
help="If amount is 0.00, All the payments go through approval.")
|
|
approval_currency_id = fields.Many2one('res.currency', string='Approval Currency',
|
|
config_parameter='account_payment_approval.approval_currency_id',
|
|
help="Converts the payment amount to this currency if chosen.")
|
|
|