[REF] account_followup

bzr revid: mra@mra-laptop-20101110114346-iuf18mlpxmk69ldu
This commit is contained in:
Mustufa Rangwala 2010-11-10 17:13:46 +05:30
parent 0e467180a9
commit 87fc609429
2 changed files with 1 additions and 4 deletions

View File

@ -20,10 +20,8 @@
##############################################################################
import time
import ir
import pooler
from osv import osv
from report import report_sxw
class report_rappel(report_sxw.rml_parse):

View File

@ -56,7 +56,6 @@ class account_followup_stat(osv.osv):
context=context, count=count)
def read_group(self, cr, uid, domain, fields, groupby, offset=0, limit=None, context=None):
todel=[]
for arg in domain:
if arg[0] == 'period_id' and arg[2] == 'current_year':
current_year = self.pool.get('account.fiscalyear').find(cr, uid)
@ -91,7 +90,7 @@ class account_followup_stat(osv.osv):
l.reconcile_id is NULL AND
l.partner_id IS NOT NULL
GROUP BY
l.id, l.partner_id, l.company_id, l.blocked, l.period_id
l.id, l.partner_id, l.company_id, l.blocked, l.period_id
)""")
account_followup_stat()