Hi,
strange, i just see in v8.1 (not tested on past version.)
i have a entity with many relation to same entity. So i name the relation : epidemioA .. epidemioB.. epidemioC
i have Link Multiple Field checked.
when i select a related record on "Link Multiple Field", and save => notification "saved" is green.
no error.
when i refresh the page, nothing is saved.
there are no error log (debug), nothing in front-end to.
But when a do the same in bottom panel, the relation is saved.
Maybe because i have added a A (letter, out-of-box espocrm add a digit)
Strange put header is OK.. with payload and status code = 200.
Any idea ?
Work perfectly on demo. so i don't know where to log without log :s
strange, i just see in v8.1 (not tested on past version.)
i have a entity with many relation to same entity. So i name the relation : epidemioA .. epidemioB.. epidemioC
i have Link Multiple Field checked.
when i select a related record on "Link Multiple Field", and save => notification "saved" is green.
no error.
when i refresh the page, nothing is saved.
there are no error log (debug), nothing in front-end to.
But when a do the same in bottom panel, the relation is saved.
Maybe because i have added a A (letter, out-of-box espocrm add a digit)
Strange put header is OK.. with payload and status code = 200.
Any idea ?
Work perfectly on demo. so i don't know where to log without log :s
PHP Code:
[2024-01-12 18:26:29] DEBUG: Schema\Builder: ManyMany for Clinic.epidemiosB
[2024-01-12 18:26:29] DEBUG: Schema\Builder: ManyMany for Clinic.epidemiosA
[2024-01-12 18:26:29] DEBUG: Schema\Builder: ManyMany for Clinic.epidemios
PHP Code:
Clinic clinics Many-to-Many epidemios Epidemio
Clinic clinicsA Many-to-Many epidemiosA Epidemio
Clinic clinicsB Many-to-Many epidemiosB Epidemio
PHP Code:
"epidemiosA": {
"type": "hasMany",
"relationName": "clinicEpidemioA",
"foreign": "clinicsA",
"entity": "Epidemio",
"audited": false,
"isCustom": true
},
"epidemiosB": {
"type": "hasMany",
"relationName": "clinicEpidemioB",
"foreign": "clinicsB",
"entity": "Epidemio",
"audited": false,
"isCustom": true
},
PHP Code:
"clinicsA": {
"type": "linkMultiple",
"layoutDetailDisabled": true,
"layoutMassUpdateDisabled": true,
"layoutListDisabled": true,
"noLoad": true,
"importDisabled": true,
"exportDisabled": true,
"customizationDisabled": false,
"isCustom": true
},
"clinicsB": {
"type": "linkMultiple",
"layoutDetailDisabled": true,
"layoutMassUpdateDisabled": true,
"layoutListDisabled": true,
"noLoad": true,
"importDisabled": true,
"exportDisabled": true,
"customizationDisabled": true,
"isCustom": true
},
Comment