← Back to team overview

openerp-india team mailing list archive

[Bug 898668] Re: calendar views with more than about 150 entries don't display all entries

 

hello Alan ,

I have checked this issue at my end but I did not face any 
problem in calendar view of "crm.meeting" so would you please 
provide more information regarding this issue I have checked with 
trunk and stable both.

I have attached a screen shot for your reference.

Thanks and waiting for replay.

** Changed in: openobject-client-web
       Status: Confirmed => Incomplete

-- 
You received this bug notification because you are a member of OpenERP
Indian Team, which is subscribed to OpenERP Server.
https://bugs.launchpad.net/bugs/898668

Title:
  calendar views with more than about 150 entries don't display all
  entries

Status in OpenERP Web Client:
  Incomplete
Status in OpenERP Server:
  New

Bug description:
  calendar views with realistic amounts of data in them seem to not work
  correctly. The code below creates 100 meetings for  several different
  people (user IDs 43, 57 and 23, yours might be different). They don't
  all display three entries on every day. Turning on and off people in
  the filters causes other entries to come and go.

  #!/usr/bin/env python
  import xmlrpclib
  import datetime

  user = 'admin'
  pwd = 'admin'
  dbname = 'calendarfail'

  sock = xmlrpclib.ServerProxy('http://localhost:8069/xmlrpc/common')
  uid = sock.login(dbname ,user ,pwd)
  sock = xmlrpclib.ServerProxy('http://localhost:8069/xmlrpc/object')

  numdays=100
  base = datetime.datetime.today()
  datelist = [ base - datetime.timedelta(days=x) for x in range(0,numdays) ]
  for u in [43,57,23]:
      for d in datelist:
          meeting_data = {'name':'test '+str(d.strftime("%Y-%m-%d %H:%M:%S")),
                          'date':str(d.strftime("%Y-%m-%d %H:%M:%S")),
                          'date_deadline':str(d.strftime("%Y-%m-%d %H:%M:%S")),
                          'user_id':u,
                          'description':"some text here!",
                         }
          meeting_id = sock.execute(dbname, uid, pwd, 'crm.meeting', 'create', meeting_data)

To manage notifications about this bug go to:
https://bugs.launchpad.net/openobject-client-web/+bug/898668/+subscriptions


References