Merge lp:~vauxoo/addons-vauxoo/7.0-addons-vauxoo-pylint-dev-julio into lp:addons-vauxoo/7.0

Proposed by Julio Serna-http://www.vauxoo.com
Status: Merged
Merged at revision: 1160
Proposed branch: lp:~vauxoo/addons-vauxoo/7.0-addons-vauxoo-pylint-dev-julio
Merge into: lp:addons-vauxoo/7.0
Diff against target: 51 lines (+5/-0)
3 files modified
account_voucher_tax/account_voucher.py (+2/-0)
hr_expense_replenishment/model/hr_expense.py (+2/-0)
hr_expense_replenishment_tax/model/hr_expense.py (+1/-0)
To merge this branch: bzr merge lp:~vauxoo/addons-vauxoo/7.0-addons-vauxoo-pylint-dev-julio
Reviewer Review Type Date Requested Status
Moisés López - http://www.vauxoo.com Pending
Review via email: mp+241717@code.launchpad.net

Description of the change

applied disable locally errors of pylint

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_voucher_tax/account_voucher.py'
2--- account_voucher_tax/account_voucher.py 2014-11-12 22:19:44 +0000
3+++ account_voucher_tax/account_voucher.py 2014-11-13 17:41:57 +0000
4@@ -128,6 +128,7 @@
5 move_ids.append(move_create)
6 return move_ids
7
8+ # pylint: disable=W0622
9 def _preparate_move_line_tax(self, cr, uid, src_account_id, dest_account_id,
10 move_id, type, partner, period, journal, date,
11 company_currency, reference_amount,
12@@ -520,6 +521,7 @@
13 dat = cr.dictfetchall()
14 return dat
15
16+ # pylint: disable=W0622
17 def reconcile(self, cr, uid, ids, type='auto', writeoff_acc_id=False, writeoff_period_id=False, writeoff_journal_id=False, context=None):
18 res = super(account_move_line, self).reconcile(cr, uid, ids=ids,
19 type='auto', writeoff_acc_id=writeoff_acc_id, writeoff_period_id=writeoff_period_id,
20
21=== modified file 'hr_expense_replenishment/model/hr_expense.py'
22--- hr_expense_replenishment/model/hr_expense.py 2014-11-12 22:19:44 +0000
23+++ hr_expense_replenishment/model/hr_expense.py 2014-11-13 17:41:57 +0000
24@@ -480,6 +480,7 @@
25
26 return adv_ids + exp_ids + [lc], []
27
28+ # pylint: disable=R0911
29 def expense_reconcile_partial_payment(self, cr, uid, ids, aml, context=None):
30 """
31 This method make a distribution of the advances, whenever applies
32@@ -1047,6 +1048,7 @@
33 class account_move_line(osv.osv):
34 _inherit = "account.move.line"
35
36+ # pylint: disable=W0622
37 def reconcile(self, cr, uid, ids, type='auto', writeoff_acc_id=False,
38 writeoff_period_id=False, writeoff_journal_id=False,
39 context=None):
40
41=== modified file 'hr_expense_replenishment_tax/model/hr_expense.py'
42--- hr_expense_replenishment_tax/model/hr_expense.py 2014-11-13 00:57:59 +0000
43+++ hr_expense_replenishment_tax/model/hr_expense.py 2014-11-13 17:41:57 +0000
44@@ -234,6 +234,7 @@
45 class account_move_line(osv.osv):
46 _inherit = "account.move.line"
47
48+ # pylint: disable=W0622
49 def reconcile(self, cr, uid, ids, type='auto', writeoff_acc_id=False,
50 writeoff_period_id=False, writeoff_journal_id=False,
51 context=None):