From d5a1e05ce31b006e0ee77cb0da130aef340a915c Mon Sep 17 00:00:00 2001 From: Dany De Bontridder Date: Sat, 9 Dec 2017 12:41:41 +0100 Subject: [PATCH] Plan Comptable : max longueur du poste = 40 --- include/class/acc_plan_mtable.class.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/class/acc_plan_mtable.class.php b/include/class/acc_plan_mtable.class.php index 43fcdf384..c2b7ed489 100644 --- a/include/class/acc_plan_mtable.class.php +++ b/include/class/acc_plan_mtable.class.php @@ -129,6 +129,10 @@ class Acc_Plan_MTable extends Manage_Table_SQL if ( trim($this->table->pcm_val) == "") { $this->set_error("pcm_val", _("Poste comptable ne peut être vide")); } + // Check size + if ( strlen(trim($this->table->pcm_val)) > 40) { + $this->set_error("pcm_val", _("Poste comptable trop long")); + } if ( trim($this->table->parent_accounting) == "") { $this->set_error("parent_accounting", _("Poste comptable dépendant ne peut pas être vide")); }