Merge lp:~unifield-team/unifield-wm/UF_2194 into lp:unifield-wm

Proposed by jftempo
Status: Merged
Merged at revision: 1848
Proposed branch: lp:~unifield-team/unifield-wm/UF_2194
Merge into: lp:unifield-wm
Diff against target: 20 lines (+2/-2)
1 file modified
account_hq_entries/hq_entries.py (+2/-2)
To merge this branch: bzr merge lp:~unifield-team/unifield-wm/UF_2194
Reviewer Review Type Date Requested Status
UniField Dev Team Pending
Review via email: mp+195017@code.launchpad.net
To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'account_hq_entries/hq_entries.py'
2--- account_hq_entries/hq_entries.py 2013-11-05 17:14:26 +0000
3+++ account_hq_entries/hq_entries.py 2013-11-13 09:42:41 +0000
4@@ -378,7 +378,7 @@
5 account = self.pool.get('account.account').browse(cr, uid, line.account_id.id)
6 if line.destination_id.id not in [x.id for x in account.destination_ids]:
7 res[line.id] = 'invalid'
8- logger.notifyChannel('account_hq_entries', netsvc.LOG_WARNING, _('%s: DEST (%s) not compatible with account (%)') % (line.id or '', line.destination_id.code or '', account.code or ''))
9+ logger.notifyChannel('account_hq_entries', netsvc.LOG_WARNING, _('%s: DEST (%s) not compatible with account (%s)') % (line.id or '', line.destination_id.code or '', account.code or ''))
10 continue
11 else: # CASE 4/
12 # C Check, except B
13@@ -395,7 +395,7 @@
14 account = self.pool.get('account.account').browse(cr, uid, line.account_id.id)
15 if line.destination_id.id not in [x.id for x in account.destination_ids]:
16 res[line.id] = 'invalid'
17- logger.notifyChannel('account_hq_entries', netsvc.LOG_WARNING, _('%s: DEST (%s) not compatible with account (%)') % (line.id or '', line.destination_id.code or '', account.code or ''))
18+ logger.notifyChannel('account_hq_entries', netsvc.LOG_WARNING, _('%s: DEST (%s) not compatible with account (%s)') % (line.id or '', line.destination_id.code or '', account.code or ''))
19 continue
20 return res
21

Subscribers

People subscribed via source and target branches