Example #1
0
 public static function buildChapitrePalettisation()
 {
     $bloc = '';
     $id_fta = self::$id_fta;
     $synthese_action = self::$synthese_action;
     $isEditable = self::$is_editable;
     //Identifiant FTA
     $ftaModel = new FtaModel($id_fta);
     $ftaView = new FtaView($ftaModel);
     $ftaView->setIsEditable($isEditable);
     $ftaView->setFtaChapitreModelById(self::ID_CHAPITRE_IDENTITE);
     //        $bloc.='<tr class=titre_principal><td class>Palettisasion</td></tr>';
     $bloc .= '<tr class=titre_principal><td class>Informations Générales de l\'UVF</td></tr>';
     //Poids total de l'emballage de l'UVF
     $bloc .= $ftaView->getHtmlPoidsEmballageUVC();
     //Poids Net UVF (en g):
     $bloc .= $ftaView->getHtmlPoidsNetEmballageUVC();
     //Poids Brut UVF (en g):
     $bloc .= $ftaView->getHtmlPoidsBrutEmballageUVC();
     //Dimension de l'UVF (en mm):
     $bloc .= $ftaView->getHtmlDimensionEmballageUVC();
     $bloc .= '<tr class=titre_principal> <td>Informations Générales du Colis</td></tr>';
     //Nombre d'UVC du colis:
     $bloc .= $ftaView->getHtmlNombreColisUVC();
     //Poids des Emballages du Colis (en g):
     $bloc .= $ftaView->getHtmlPoidsColisUVC();
     //Poids Net (en Kg) du Colis:
     $bloc .= $ftaView->getHtmlPoidsNetColisUVC();
     //Poids Brut (en Kg) du Colis:
     $bloc .= $ftaView->getHtmlPoidsBrutColisUVC();
     //Hauteur (en mm) du Colis
     $bloc .= $ftaView->getHtmlHauteurColisUVC();
     $bloc .= '<tr class=titre_principal> <td>Informations Générales d\'une Palette</td></tr>';
     //Poids Net (en Kg) d'une Palette:
     $bloc .= $ftaView->getHtmlPoidsNetPaletteUVC();
     //Poids Brut (en Kg) d'une Palette:
     $bloc .= $ftaView->getHtmlPoidsBrutPaletteUVC();
     //Hauteur (en m) d'une Palette:
     $bloc .= $ftaView->getHtmlHauteurPaletteUVC();
     //Nombre de couche par palette:
     $bloc .= $ftaView->getHtmlNombrePaletteUVC();
     //Nombre de colis par couche:
     $bloc .= $ftaView->getHtmlColisCouchePaletteUVC();
     //Nombre total de Carton par palette:
     $bloc .= $ftaView->getHtmlColisTotalUVC();
     return $bloc;
 }