Merge lp:~openerp-dev/openobject-addons/trunk-bug-1169145-Jaydeep into lp:openobject-addons

Proposed by Jaydeep Barot(OpenERP)
Status: Needs review
Proposed branch: lp:~openerp-dev/openobject-addons/trunk-bug-1169145-Jaydeep
Merge into: lp:openobject-addons
Diff against target: 20 lines (+3/-3)
1 file modified
account_analytic_analysis/account_analytic_analysis.py (+3/-3)
To merge this branch: bzr merge lp:~openerp-dev/openobject-addons/trunk-bug-1169145-Jaydeep
Reviewer Review Type Date Requested Status
Nimesh Contractor(Open ERP) (community) Approve
OpenERP Core Team Pending
Review via email: mp+173650@code.launchpad.net

Description of the change

Hello,

I have Remove the Bad Indentation.

Thanks,
Jaydeep Barot.

To post a comment you must log in.
Revision history for this message
Jaydeep Barot(OpenERP) (jaydeep.barot-openerp) wrote :

Hello,

I have Fixed in https://code.launchpad.net/~openerp-dev/openobject-addons/trunk-bug-1169145-Jaydeep
Revision ID: <email address hidden>
revision no :- 8808

Thanks,
Jaydeep Barot.

Revision history for this message
Nimesh Contractor(Open ERP) (nco-openerp) :
review: Approve

Unmerged revisions

8808. By Jaydeep Barot(OpenERP)

[FIX] Bad Indentation are remove on function of _sum_of_fields

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'account_analytic_analysis/account_analytic_analysis.py'
2--- account_analytic_analysis/account_analytic_analysis.py 2013-06-07 10:23:59 +0000
3+++ account_analytic_analysis/account_analytic_analysis.py 2013-07-09 06:38:28 +0000
4@@ -438,13 +438,13 @@
5 return total_toinvoice
6
7 def _sum_of_fields(self, cr, uid, ids, name, arg, context=None):
8- res = dict([(i, {}) for i in ids])
9- for account in self.browse(cr, uid, ids, context=context):
10+ res = dict([(i, {}) for i in ids])
11+ for account in self.browse(cr, uid, ids, context=context):
12 res[account.id]['est_total'] = self._get_total_estimation(account)
13 res[account.id]['invoiced_total'] = self._get_total_invoiced(account)
14 res[account.id]['remaining_total'] = self._get_total_remaining(account)
15 res[account.id]['toinvoice_total'] = self._get_total_toinvoice(account)
16- return res
17+ return res
18
19 _columns = {
20 'is_overdue_quantity' : fields.function(_is_overdue_quantity, method=True, type='boolean', string='Overdue Quantity',

Subscribers

People subscribed via source and target branches

to all changes: