setTable('fichemetrologiques'); $this->setDisplayField('id'); $this->setPrimaryKey('id'); $this->addBehavior('Timestamp'); $this->belongsTo('Suivis', [ 'foreignKey' => 'suivi_id', 'joinType' => 'INNER' ]); $this->hasMany('Mesures', [ 'foreignKey' => 'fichemetrologique_id', 'dependent' => true ]); } /** * Default validation rules. * * @param \Cake\Validation\Validator $validator * Validator instance. * @return \Cake\Validation\Validator */ public function validationDefault(Validator $validator) { $mesureValidator = new Validator(); $mesureValidator->notEmpty('valeur', 'Ce champ doit être rempli')->add('valeur', 'valid', [ 'rule' => 'numeric', 'message' => 'Ce champ doit contenir des nombres' ]); $mesureValidator->notEmpty('erreur', 'Ce champ doit être rempli')->add('erreur', 'valid', [ 'rule' => 'numeric', 'message' => 'Ce champ doit contenir des nombres' ]); $validator->integer('id')->allowEmpty('id', 'create'); $validator->addNestedMany('mesures', $mesureValidator); $validator->notEmpty('mesurande', 'Ce champ doit être rempli'); $validator->notEmpty('nbMesure', 'Ce champ doit être rempli'); return $validator; } }