X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=include%2Fvalidations%2Fentreprises.inc.php;h=42e1f4a19a6bf0ac95b89e5c1f193035b32969bc;hb=a6dcf7ed6e2ca2c8f39eda6008c24b9ecd0da3bd;hp=da2e65ee68c5fd180c9bec27dfc9db707e316d49;hpb=1c4a1d0a32c52851e9ffbbf585bb206c9a472dc9;p=platal.git diff --git a/include/validations/entreprises.inc.php b/include/validations/entreprises.inc.php index da2e65e..42e1f4a 100644 --- a/include/validations/entreprises.inc.php +++ b/include/validations/entreprises.inc.php @@ -1,6 +1,6 @@ id = $_id; @@ -101,7 +104,7 @@ class EntrReq extends ProfileValidate protected function handle_editor() { - foreach (array('name', 'acronym', 'url', 'email', 'NAF_code', 'tel', 'fax', 'address') as $field) { + foreach (array('name', 'acronym', 'url', 'email', 'SIREN', 'NAF_code', 'tel', 'fax', 'address') as $field) { $this->$field = (Env::t($field) == '' ? null : Env::t($field)); } foreach (array('AX_code', 'holdingid') as $field) { @@ -127,8 +130,7 @@ class EntrReq extends ProfileValidate if ($isok) { return " L'entreprise " . $this->name . " vient d'être ajoutée à ta fiche."; } else { - return " La demande que tu avais faite pour l'entreprise " . $this->name . - " a été refusée, car elle figure déjà dans notre base."; + return ' La demande que tu avais faite pour l\'entreprise ' . $this->name . ' a été refusée.'; } } @@ -142,10 +144,10 @@ class EntrReq extends ProfileValidate WHERE name = {?}', $this->name); if ($res->numRows() != 1) { - XDB::execute('INSERT INTO profile_job_enum (name, acronym, url, email, holdingid, NAF_code, AX_code) - VALUES ({?}, {?}, {?}, {?}, {?}, {?}, {?})', + XDB::execute('INSERT INTO profile_job_enum (name, acronym, url, email, holdingid, SIREN_code, NAF_code, AX_code) + VALUES ({?}, {?}, {?}, {?}, {?}, {?}, {?}, {?})', $this->name, $this->acronym, $this->url, $this->email, - $this->holdingid, $this->NAF_code, $this->AX_code); + $this->holdingid, $this->SIREN, $this->NAF_code, $this->AX_code); $jobid = XDB::insertId(); $phone = new Phone(array('link_type' => 'hq', 'link_id' => $jobid, 'id' => 0, @@ -177,5 +179,5 @@ class EntrReq extends ProfileValidate // }}} -// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8: +// vim:set et sw=4 sts=4 sws=4 foldmethod=marker fenc=utf-8: ?>