Voici une solution avec `\usetikzlibrary{positioning}` :
\documentclass[border=5mm]{standalone}
\usepackage{tikz}
\usetikzlibrary{positioning}
\begin{document}
\begin{tikzpicture}[
mynode/.style={
rectangle,
draw,
text width=2.5cm,
align=center,
anchor=center
}
]
\begin{scope}[xscale=2]
% description et nommage des noeuds
\node[mynode] (AA) {Air Algérie\\SPA};
\node[below=of AA] (dummy) {};
\node[mynode,left=of dummy] (PAF) {P\^ole \\Administration\\et Finance};
\node[mynode,right=of dummy] (PO) {P\^ole \\Op\'eration};
\node[mynode,below right=of PO.center] (DC) {Division \\Commerciale};
\node[mynode,below=0.2cm of DC] (DP) {Division \\Production};
\node[mynode,below=0.2cm of DP] (DCE) {Division \\Commandement\\d'exploitation};
\node[mynode,dashed, below=7cm of AA] (AAH) {Air Algérie\\Handing};
\node[mynode,dashed, left=of AAH] (AAC) {Air Algérie\\Catering};
\node[mynode,dashed, right=of AAH] (AAM) {Air Algérie\\Maintenance};
%% description des arêtes
%% -- arête rectiligne entre les noeuds nommés
\draw (AA) -- (AAH);
\draw (PAF) -- (PO);
%% |- départ vertical arrivée horizontale
\draw (PO) |- (DC);
\draw (PO) |- (DP);
\draw (PO) |- (DCE);
%% -| départ horizontal (du noeud de coordonnée (0,1)) arrivée verticale
\draw (AAC.north) -- ++(0,0.5) -| (AAM.north);
\end{scope}
\end{tikzpicture}
\end{document}
![alt text][1]
[1]: https://texnique.fr/osqa/upfiles/document_gKm5UxO.png<img src="/upfiles/2alignement-tikz.png" style="width: 100%;"/>