Hello,
Plz,how to display the value of plugin in another field of another plugin
Thank you in advance
Hello,
Plz,how to display the value of plugin in another field of another plugin
Thank you in advance
You would have to be a little bit more precise. Do you mean how to display the value of one field from one recordset in another module based on another recordset?
Yes Exactly
more precisely i want to display the last record of field of the DSprospection module in a filed of company module
can i do it like this ?
public static function display_last_vignle_record($name) {
DB::Execute('SELECT max(id),f_vignle FROM dsprospection_data_1 dsp
WHERE dsp.idclient = (select f_clientid from company_data_1 )) , array($name));
}
Please do not use direct SQL statements. Instead use Record Browser:
http://www.epesi.org/Utils/RecordBrowser/RBO