X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=include%2Fvalidations%2Fentreprises.inc.php;h=42e1f4a19a6bf0ac95b89e5c1f193035b32969bc;hb=a6dcf7ed6e2ca2c8f39eda6008c24b9ecd0da3bd;hp=61d117575a59b9157f2f7fde28716618afb7cf6b;hpb=6e1128e02f7568a692d548d8bc43cad6bde38efe;p=platal.git diff --git a/include/validations/entreprises.inc.php b/include/validations/entreprises.inc.php index 61d1175..42e1f4a 100644 --- a/include/validations/entreprises.inc.php +++ b/include/validations/entreprises.inc.php @@ -31,6 +31,7 @@ class EntrReq extends ProfileValidate public $url = null; public $email = null; public $holdingid = null; + public $SIREN = null; public $NAF_code = null; public $AX_code = null; @@ -103,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) { @@ -143,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, @@ -178,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: ?>