← Back to team overview

credativ 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 again this issue but I did not face problem  
I have checked this issue with following revision :

Stable :

	Addons : 4947
	Gtk    : 1915
	Server : 3547
        Web-Client : 4741    

Thanks.

-- 
You received this bug notification because you are a member of OpenERP
Framework Experts, 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:
  Invalid

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