Commit 92db785b authored by Kevin Deldycke's avatar Kevin Deldycke

Fix wrong paysheet month.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@7854 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 206695a2
......@@ -134,7 +134,7 @@ if context.getTitle() in (\'\', None):\n
)\n
if context.getStartDate() not in (\'\', None):\n
payroll_date = context.getStartDate()\n
new_title += \' %s %s\' % ( N_(months[payroll_date.month()])\n
new_title += \' %s %s\' % ( N_(months[payroll_date.month() - 1])\n
, payroll_date.year()\n
)\n
context.setTitle(new_title)\n
......
2006-06-19 Kevin
* Fix wrong paysheet month.
2006-06-15 Kevin
* Add a new fast input to create a bunch of paysheets.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment