-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathparty.py
41 lines (32 loc) · 1.3 KB
/
party.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
from trytond.i18n import gettext
from trytond.model import fields
from trytond.modules.party.exceptions import EraseError
from trytond.pool import Pool, PoolMeta
class Party(metaclass=PoolMeta):
__name__ = 'party.party'
agents = fields.One2Many('commission.agent.selection', 'party', "Agents")
class Replace(metaclass=PoolMeta):
__name__ = 'party.replace'
@classmethod
def fields_to_replace(cls):
return super().fields_to_replace() + [
('commission.agent', 'party'),
]
class Erase(metaclass=PoolMeta):
__name__ = 'party.erase'
def check_erase_company(self, party, company):
pool = Pool()
Commission = pool.get('commission')
super().check_erase_company(party, company)
commissions = Commission.search([
('agent.party', '=', party.id),
('agent.company', '=', company.id),
('invoice_line', '=', None),
])
if commissions:
raise EraseError(
gettext('commission.msg_erase_party_pending_commission',
party=party.rec_name,
company=company.rec_name))