35 lines
1.2 KiB
Python
35 lines
1.2 KiB
Python
# Part of BrowseInfo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import api, fields, models, _
|
|
from odoo.exceptions import UserError
|
|
|
|
MAP_INVOICE_TYPE_PARTNER_TYPE = {
|
|
'out_invoice': 'customer',
|
|
'out_refund': 'customer',
|
|
'in_invoice': 'supplier',
|
|
'in_refund': 'supplier',
|
|
}
|
|
|
|
class AccountPayment(models.Model):
|
|
_inherit = 'account.payment'
|
|
|
|
@api.model
|
|
def default_get(self, fields):
|
|
rec = super(AccountPayment, self).default_get(fields)
|
|
invoice_defaults = self.reconciled_invoice_ids
|
|
if invoice_defaults and len(invoice_defaults) == 1:
|
|
invoice = invoice_defaults[0]
|
|
rec['branch_id'] = invoice.branch_id.id
|
|
return rec
|
|
|
|
branch_id = fields.Many2one('res.branch')
|
|
|
|
@api.onchange('branch_id')
|
|
def _onchange_branch_id(self):
|
|
selected_brach = self.branch_id
|
|
if selected_brach:
|
|
user_id = self.env.user
|
|
user_branch = user_id.sudo().branch_id
|
|
if user_branch and user_branch.id != selected_brach.id:
|
|
raise UserError("Please select active branch only. Other may create the Multi branch issue. \n\ne.g: If you wish to add other branch then Switch branch from the header and set that.")
|