Hello Yuri,
some result on upgrade process :
Error: InjectableFactory: Class 'Espo\Core\Utils\Config\ConfigWriter' does not exist.
Syntax error in custom/Espo/Custom/Resources/metadata/recordDefs/Patient.json. => i have deleted and rebegin upgrade process
appParam templateEntityTypeList: Class 'Espo\Modules\Crm\SelectManagers\Account' not found
Class 'Espo\Modules\Crm\SelectManagers\Account' not found File: custom/Espo/Custom/SelectManagers/Account.php
I have begin upgrade process 4 time now it's v7 with 2 strange think :
I think the upgrade process have bugged in :
recordDefs
SelectManagers
two question :
- why in recordDefs, i have only 2 custom entity file with duplicateWhereBuilderClassName ? i have maybe 10 custom entity.
is old custom SelectManagers are still working ? i certainly change some extends ?
Best Regards
some result on upgrade process :
Error: InjectableFactory: Class 'Espo\Core\Utils\Config\ConfigWriter' does not exist.
Syntax error in custom/Espo/Custom/Resources/metadata/recordDefs/Patient.json. => i have deleted and rebegin upgrade process
appParam templateEntityTypeList: Class 'Espo\Modules\Crm\SelectManagers\Account' not found
Class 'Espo\Modules\Crm\SelectManagers\Account' not found File: custom/Espo/Custom/SelectManagers/Account.php
I have begin upgrade process 4 time now it's v7 with 2 strange think :
I think the upgrade process have bugged in :
recordDefs
SelectManagers
two question :
- why in recordDefs, i have only 2 custom entity file with duplicateWhereBuilderClassName ? i have maybe 10 custom entity.
is old custom SelectManagers are still working ? i certainly change some extends ?
Best Regards
PHP Code:
<?php
namespace Espo\Custom\SelectManagers;
class Account extends \Espo\Modules\Crm\SelectManagers\Account
{
protected function boolFilterIsMember(&$result)
{
$result['whereClause'][] = array(
'isMember' => true
);
}
protected function boolFilterIsActive(&$result)
{
$result['whereClause'][] = array(
'isActive' => true
);
}
}
Comment