Welcome to ProjeQtOr new Forum. We migrated old forum to the new website.
You will find all your posts here, with your usual account.
Just one point : you’ll have to reinitialize your password. Use “Lost password” feature.
Hi,
In QuotationMain model, method save(), you write
if ($this->creationDate == '')
$this->creationDate = date('Y-m-d H:i');
but creationdate field in db is date, not datetime. I think you should fix
if ($this->creationDate == '')
$this->creationDate = date('Y-m-d');
Best Regards
You're right.
Fix included.
Will be deployed with next version.