Hello Stefan Rijnhart, Thanks for reporting and also for giving suggestion. The solution for this bug is proposed in the branch : https://code.launchpad.net /~openerp-dev/openobject-addons/trunk-bug-897662-mdi/
with following Revision ID and Number. Revision ID : [email protected] Revision Number : 5896 Thanks and Regards, Divyesh Makwana(MDI) ** Changed in: openobject-addons Status: In Progress => Fix Committed -- 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/897662 Title: Weekly timesheet created on monday covers two weeks Status in OpenERP Addons (modules): Fix Committed Bug description: Hi, Set the company's timesheet range to 'Week'. Create a timesheet on Monday. The new timesheet covers a period of two weeks, starting from the Monday a week before. Culprit is (datetime.today() + relativedelta(weekday=0, weeks=-1) in hr_timesheet_sheet/hr_timesheet_sheet.py:hr_timesheet_sheet.default_date_to(). >>> from datetime import datetime >>> from dateutil.relativedelta import relativedelta >>> datetime(2011, 11, 28, 13, 38, 3, 560694) + relativedelta(weekday=0, weeks=-1) datetime.datetime(2011, 11, 21, 13, 38, 3, 560694) Instead, use (datetime.today() + relativedelta(weekday=0, days=-6). >>> datetime(2011, 11, 28, 13, 38, 3, 560694) + relativedelta(weekday=0, days=-6) datetime.datetime(2011, 11, 28, 13, 38, 3, 560694) Reproducable in 6.0 and trunk. Cheers, Stefan. To manage notifications about this bug go to: https://bugs.launchpad.net/openobject-addons/+bug/897662/+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

