Hi there,
I use EspoCRM 9.0.6 with all necessary extensions.
I've got 3 entities ("shelf-inspection V1.0" , "shelf-inspection V.2.0" and "shelves" - from both "shelf-inspections" I need to transfer the entire values of multi-enum fields to an enum-field in "shelves".
This is what I got so far (thanks to THIS POST):
It works almost perfectly fine, because it merges now the IDs of multi-enum field X of "shelf-inspection V1.0" and multi-enum field Y of "shelf-inspection V2.0" into multi-enum field Z of "shelves" ...
However, I'm completely lost at this point, because I actually want to see the "values" of the multi-enum field, not the ID's (e.g. "I-AS.2025.SLPR.00869" instead of its ID "67e3d6814396a3dbd") ...
What do I have to change /add to make this happen ?!
Would be great to get some help... Thanks a lot
Regards, Martin
I use EspoCRM 9.0.6 with all necessary extensions.
I've got 3 entities ("shelf-inspection V1.0" , "shelf-inspection V.2.0" and "shelves" - from both "shelf-inspections" I need to transfer the entire values of multi-enum fields to an enum-field in "shelves".
This is what I got so far (thanks to THIS POST):
Code:
$i=0; prevInspections = regalinspectionsV1Ids; while ($i < array\length(regalinspectionsV2Ids), $secondId = array\at(regalinspectionsV2Ids, $i); prevInspections = array\push(prevInspections, $secondId); $i = $i + 1; );
However, I'm completely lost at this point, because I actually want to see the "values" of the multi-enum field, not the ID's (e.g. "I-AS.2025.SLPR.00869" instead of its ID "67e3d6814396a3dbd") ...
What do I have to change /add to make this happen ?!
Would be great to get some help... Thanks a lot

Regards, Martin
Comment