08-13-2020, 06:34 PM
(08-13-2020, 11:34 AM)joebordes Wrote: there are two ways of establishing a relation via web service
1.- when creating/updating
create and update support a "virtual" field named "relations"
https://github.com/tsolucio/corebos/blob/master/include/Webservices/Create.php#L23
which you can pass in like the other fields, it is an array of records you want to relate to the record you are creating/updating
2.- SetRelation web service end point
https://github.com/tsolucio/corebos/blob/master/build/wsChanges/setRelation.php
https://github.com/tsolucio/coreBOSwsDevelopment/blob/master/testcode/424_setrelated.php
Obviously, both support the standard way of relating modules, if you have implemented your own relation you must follow the established way to override custom relations between modules for the two methods above to work
https://github.com/tsolucio/corebos/blob/master/vtlib/ModuleDir/ModuleFile.php#L129:L155
Hi Joe, thanks a lot for your advice. I think I'll try the second method.