Page 1 of 1

Custom code After Save

Posted: Mon Nov 07, 2016 11:58 am
by sultan87
hello,
the code in after-save is not performed

Code: Select all

nuDebug("Après Sauvegarde Séjours Locataires");

// Recherche id_locataire dans table suivi

nuDebug("Recherche Numéro Locataires");

$s = "

SELECT s_id_locataire 
FROM suivi 
WHERE id_suivi = '1'

";

$t = nuRunQuery($s);
$r = db_fetch_row($t);
$p = $r[0];

// MAJ id_locataire dans table sejours

$s = "

UPDATE sejours 
SET id_locataire_sejour =  '$p' 
WHERE id_sejours = '#RECORD_ID#'

";
why ?
Best regards
pierre

Re: Custom code After Save

Posted: Sun Nov 13, 2016 10:31 pm
by admin
sultan87,

I don't understand your question.

Steven

Re: Custom code After Save

Posted: Thu Nov 17, 2016 6:07 am
by mobilemcclintic
I think you need to tell nuBuilder what to do.

Just reading the last bit,you set $s, but don't do anything with it.
Add nuRunQuery($s); to the end. If everything else is right, it should perform your update.