designation; $Sur_categ_id = $cpMateriel->sur_categorie_id; $Categ_id = $cpMateriel->categorie_id; $Sous_categ_id = $cpMateriel->sous_categorie_id; $Description = $cpMateriel->description; $Organisme_id = $cpMateriel->organisme_id; $Mat_administratif = $cpMateriel->materiel_administratif; $Mat_technique = $cpMateriel->materiel_technique; $Date_acquisition = $cpMateriel->date_acquisition; $Date_reception = $cpMateriel->date_reception; $Fournisseur = $cpMateriel->fournisseur; $Prix_ht = $cpMateriel->prix_ht; $Groupes_thematique_id = $cpMateriel->groupes_thematique_id; $Groupes_metier_id = $cpMateriel->groupes_metier_id; $Lieu_detail = $cpMateriel->lieu_detail; $Site_id = $cpMateriel->site_id; } else { $Designation = NULL; $Sur_categ_id = NULL; $Categ_id = NULL; $Sous_categ_id = NULL; $Description = NULL; $Organisme_id = NULL; $Mat_administratif = NULL; $Mat_technique = NULL; $Date_acquisition = NULL; $Date_reception = NULL; $Fournisseur = NULL; $Prix_ht = NULL; $Groupes_thematique_id = 1; $Groupes_metier_id = 1; $Lieu_detail = NULL; $Site_id = 9; } ?>
Form->create($materiel)?>

Ajouter un Matériel

Form->submit(__('Enregistrer'))?> Html->link(__(' Annuler'), ['action' => 'index'], ['escape' => false,'onclick' => 'return true;','style' => 'margin-right: 10px'])?>
Form->input('designation', [ 'label' => 'Désignation', 'default' => $Designation ]); echo $this->Form->input('sur_categorie_id', [ 'label' => 'Domaine', 'style' => 'width: 260px', 'options' => $surCategories, 'empty' => 'Choisir un domaine', 'default' => $Sur_categ_id ]); // if a domaine is selected, reduce the categories list to this domaine $categs = $categories; if ($this->request->getData('sur_categorie_id') !== null && ($this->request->getData('sur_categorie_id') != '')) { $categs = $categs->where([ 'sur_categorie_id =' => $this->request->getData('sur_categorie_id') ]); } echo $this->Form->input('categorie_id', [ 'label' => 'Catégorie', 'style' => 'width: 380px', 'options' => $categs, 'empty' => 'Choisir une catégorie', 'default' => $Categ_id ]); // by default, list is empty $souscategs = []; // if a categ is selected, update sous-categs list for this categ (only) if ($this->request->getData('categorie_id') !== null && ($this->request->getData('categorie_id') != '')) { $souscategs = $sousCategories; $souscategs = $souscategs->where([ 'categorie_id' => $this->request->getData('categorie_id') ]); } echo $this->Form->input('sous_categorie_id', [ 'label' => 'Sous-catégorie', 'style' => 'width: 380px', 'options' => $souscategs, 'empty' => 'Choisir une sous-catégorie', 'default' => $Sous_categ_id ]); echo $this->Form->input('materiel_technique', [ 'label' => 'Technique', 'default' => $Mat_technique ]); echo $this->Form->input('materiel_administratif', [ 'label' => 'Inventoriable (>' . $configuration->prix_inventaire_administratif . '€)', 'default' => $Mat_administratif ]); if ($configuration->metrologie) { echo $this->Form->input('metrologie', [ 'label' => 'Métrologie', 'default' => false ]); } echo $this->Form->input('description', [ 'label' => 'Description', 'default' => $Description ]); if ($USER_IS_RESPONSABLE_OR_MORE) { /* * } * if (in_array($role, [ * 'Responsable', * 'Administration', * 'Administration Plus', * 'Super Administrateur' * ])) { */ echo $this->Form->input('etiquette', [ 'label' => 'Etiquette posée' ]); } echo $this->Form->input('site_id', [ 'options' => $sites, 'style' => 'width: 380px', 'default' => $Site_id ]); echo '
'; foreach ($lieu_detail as $e) { echo "
'; echo $this->Form->input('date_acquisition', [ 'type' => 'text', 'label' => 'Date de la commande', 'class' => 'datepicker', 'placeholder' => 'Cliquez pour sélectionner une date', 'default' => $Date_acquisition ]); echo $this->Form->input('date_reception', [ 'type' => 'text', 'label' => 'Date de réception', 'class' => 'datepicker', 'placeholder' => 'A éditer lors de la réception uniquement.', 'empty' => true, 'default' => $Date_reception ]); echo '
'; echo $this->Form->input('duree_garantie', [ 'type' => 'text', 'label' => 'Durée garantie', 'style' => 'width: 100px', 'templates' => [ 'inputContainer' => '
{{content}}
' ], 'placeholder' => '' ]); echo '
'; echo $this->Form->input('unite_duree_garantie', [ 'label' => false, 'templates' => [ 'inputContainer' => '
{{content}}
' ], 'options' => [ 'Mois' => 'Mois', 'Ans' => 'Ans' ], 'default' => 'Ans' ]); echo '
'; echo $this->Form->input('date_fin_garantie', [ 'type' => 'text', 'label' => 'Date fin de garantie', 'placeholder' => 'Cliquez pour selectionner une date', 'class' => 'datepicker', 'default' => NULL ]); echo $this->Form->input('numero_serie', [ 'label' => 'Numéro de série' ]); echo $this->Form->input('groupes_thematique_id', [ 'label' => $configuration->nom_groupe_thematique, 'options' => $groupesThematiques, 'default' => $Groupes_thematique_id ]); echo $this->Form->input('groupes_metier_id', [ 'label' => $configuration->nom_groupe_metier, 'options' => $groupesMetiers, 'default' => $Groupes_metier_id ]); $fieldType = $USER_IS_UTILISATEUR ? 'hidden' : 'input'; echo $this->Form->$fieldType('nom_responsable', [ 'label' => 'Nom de l\'utilisateur', 'empty' => 'Choisir un utilisateur', 'default' => $username, 'options' => $utilisateurs ]); echo $this->Form->input('email_responsable', [ 'label' => 'Email de l\'utilisateur', 'readonly' => true, 'default' => $mail_responsable ]); $res = TableRegistry::get('Users')->find() ->where([ 'username' => $username, 'role' => 'Administration' ]) ->first(); $administrateurs = TableRegistry::get('Users')->find('list', [ 'keyField' => 'id', 'valueField' => 'nom' ]) ->where([ 'role =' => 'Administration' ]) ->toArray(); echo $this->Form->input('gestionnaire_id', [ 'label' => 'Nom du gestionnaire de référence du matériel', 'empty' => 'Choisir un gestionnaire', 'default' => $_SESSION['Auth']['User']['sn'][0], 'options' => $administrateurs ]); //nouveau champ de saisie de Fournisseur, il ne se saisissait pas à l'ajout echo $this->Form->input('fournisseur_id', [ 'label' => 'Fournisseur', 'options' => $fournisseurs, 'style' => 'width: 380px', 'empty' => 'Choisir un fournisseur' ]); echo $this->Form->input('organisme_id', [ 'options' => $organismes, 'style' => 'width: 380px', 'empty' => 'Choisir un organisme', 'default' => $Organisme_id ]); echo $this->Form->input('prix_ht', [ 'label' => 'Prix HT (€)', 'default' => $Prix_ht ]); if ($USER_IS_ADMIN_OR_MORE) { /* * if (in_array($role, [ * 'Administration', * 'Administration Plus', * 'Super Administrateur' * ])) { */ echo '
Partie administrative'; echo $this->Form->input('eotp', [ 'label' => 'Centre financier/EOTP' ]); echo $this->Form->input('numero_commande', [ 'label' => 'Numéro de commande' ]); echo $this->Form->input('code_comptable', [ 'label' => 'Code comptable' ]); echo $this->Form->input('numero_inventaire_organisme', [ 'label' => 'N° inventaire organisme' ]); echo $this->Form->input('numero_inventaire_old', [ 'label' => 'Ancien N° inventaire' ]); echo '
'; } echo $this->Form->hidden('nom_createur', [ 'value' => $username ]); ?>
Form->submit(__('Enregistrer'))?> Form->end()?>
element('menu'); echo $this->element('menu_form', [ 'pluralHumanName' => 'Matériels' ]); ?>
value = TOUS, select = "choisir" (ADD) ou data (EDIT) * - categ ==> value = TOUTES (ADD) ou from domaine (EDIT), select = "choisir" (ADD) ou data (EDIT) * - scateg ==> value = Aucune (ADD) ou from categ (EDIT), select = "choisir" (ADD) ou data (EDIT) * Event domaine change : * - si select <> "choisir" ==> categ value = from domaine (select="choisir"), et vider scateg * - si select = "choisir" ==> categ value = TOUTES (select="choisir"), et vider scateg * Event categ change : * - si select <> "choisir" ==> domaine select = from categ, et scateg values = from categ * - si select = "choisir" ==> vider scateg * Event scateg change : RIEN A FAIRE */ ?> du site ... Et bien entendu c'est pas pris en compte ici .... Halleluja bordel (#JeremyFerrary) ?> Html->script('jquery-1.8.12')?> Html->script('script')?> Html->script('DatepickerConfig')?> Html->script('Verifications_dates_materiels.js')?>