validation.checkForMaxlength("error.promotion.name", this.getPname(), "error.application.maxlength", errors, 25);
// detail
validation.checkForRequired("label.promotion.desc", this.getPdescription(), "error.application.required", errors);
validation.checkForMaxlength("error.promotion.desc", this.getPdescription(), "error.application.maxlength", errors, 100);
validation.checkForRequired("error.promotion.startday", this.getStartday(), "error.application.required", errors);
validation.checkForRequired("error.promotion.startyear", this.getStartyear(), "error.application.required", errors);
validation.checkForRequired("error.promotion.startmonth", this.getStartmonth(), "error.application.required", errors);
validation.checkForRequired("error.promotion.endyear", this.getEndyear(), "error.application.required", errors);
validation.checkForRequired("error.promotion.endmonth", this.getEndmonth(), "error.application.required", errors);
validation.checkForRequired("error.promotion.endday", this.getEndday(), "error.application.required", errors);