mirror of
https://gitlab.com/flectra-community/bank-payment.git
synced 2024-11-22 13:42:07 +00:00
d202dad0ad
This reverts merge request !8
31 lines
1.0 KiB
Python
31 lines
1.0 KiB
Python
# Copyright 2014 Akretion - Alexis de Lattre <alexis.delattre@akretion.com>
|
|
# Copyright 2014 Tecnativa - Pedro M. Baeza
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
|
|
from flectra import api, fields, models
|
|
|
|
|
|
class ResPartner(models.Model):
|
|
_inherit = "res.partner"
|
|
|
|
supplier_payment_mode_id = fields.Many2one(
|
|
comodel_name="account.payment.mode",
|
|
company_dependent=True,
|
|
check_company=True,
|
|
domain="[('payment_type', '=', 'outbound')]",
|
|
help="Select the default payment mode for this supplier.",
|
|
)
|
|
customer_payment_mode_id = fields.Many2one(
|
|
comodel_name="account.payment.mode",
|
|
company_dependent=True,
|
|
check_company=True,
|
|
domain="[('payment_type', '=', 'inbound')]",
|
|
help="Select the default payment mode for this customer.",
|
|
)
|
|
|
|
@api.model
|
|
def _commercial_fields(self):
|
|
res = super()._commercial_fields()
|
|
res += ["supplier_payment_mode_id", "customer_payment_mode_id"]
|
|
return res
|