Merge lp:~matjaz-6/openerpsl/openerpsl_04_29 into lp:openerpsl/7.0

Proposed by Matjaz Kalic
Status: Merged
Merged at revision: 423
Proposed branch: lp:~matjaz-6/openerpsl/openerpsl_04_29
Merge into: lp:openerpsl/7.0
Diff against target: 12 lines (+1/-1)
1 file modified
account_receivables_payables/wizard/rec_pay_wizard.py (+1/-1)
To merge this branch: bzr merge lp:~matjaz-6/openerpsl/openerpsl_04_29
Reviewer Review Type Date Requested Status
Mentis Pending
Review via email: mp+224067@code.launchpad.net

Description of the change

[FIX] account_receivables_payables (unlinked payments fixed)

To post a comment you must log in.
423. By Dušan Laznik (Mentis)

[FIX] account_receivables_payables (unlinked payments fixed)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'account_receivables_payables/wizard/rec_pay_wizard.py'
2--- account_receivables_payables/wizard/rec_pay_wizard.py 2014-06-20 09:43:35 +0000
3+++ account_receivables_payables/wizard/rec_pay_wizard.py 2014-06-23 07:35:32 +0000
4@@ -578,7 +578,7 @@
5 insert_unlinked = True
6 open_payment_ids = self.pool.get('account.move.line').search(cr, uid, open_query_lst, order='date')
7 for open_account_line in self.pool.get('account.move.line').browse(cr, uid, open_payment_ids):
8- if [open_account_line.id] in all_payments_ids:
9+ if open_account_line.id in all_payments_ids:
10 continue
11
12 if insert_unlinked: #Dodamo glavo nepovezanih placil

Subscribers

People subscribed via source and target branches