** Attachment added: "Calendar.png"
   
https://bugs.launchpad.net/openobject-client-web/+bug/898668/+attachment/2621616/+files/Calendar.png

-- 
You received this bug notification because you are a member of C2C
OERPScenario, which is subscribed to OpenERP Project Group.
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

_______________________________________________
Mailing list: https://launchpad.net/~c2c-oerpscenario
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~c2c-oerpscenario
More help   : https://help.launchpad.net/ListHelp

Reply via email to