I am digging through Openerp Web to find how can i remove the exception of date from it. eg I want to insert a date like 12/12/1523. with Current functionality it will show me an error message if i will enter a date less then 1900. I have checked it with _calendar.py, format.py, validates.py. but i didn't succeed. If anyone here can Help me through It will be highly appreciable.
| |||||
feedback
|
|
I found two problems in openerp-web: 1 - The date control calendar is restricted and cannot go below 01/01/1900 2 - There are validation errors raised from openerp/i18n/format.py when trying to save Point 1, the javascript widget can be easily fixed in
Point 2, replace in
| |||
|
feedback
|
|
The error message I get when entering a date in 1523 is this:
If you search for that error message in the client code, you'll find this in
If you look at the documentation for
Asking Mr. Google about "python strftime 1900" finds an issue with a patch and lots of discussion. It sounds like you have a few options:
| |||
|
feedback
|