Ajouter un Matériel
=$this->Form->submit(__('Enregistrer'))?>
=$this->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 'Détail lieu de stockage ';
foreach ($lieu_detail as $e) {
echo "";
}
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
]);
?>