No totals in pdf of price request (vendor proposal)

Dolibarr ver. 14.0.4


How do i get total in vendor proposal i.e Price request?

// Total TTC
				$index++;
				$pdf->SetXY($col1x, $tab2_top + $tab2_hl * $index);
				$pdf->SetTextColor(0, 0, 60);
				$pdf->SetFillColor(224, 224, 224);
				$pdf->MultiCell($col2x - $col1x, $tab2_hl, $outputlangs->transnoentities("TotalTTC"), $useborder, 'L', 1);

				$pdf->SetXY($col2x, $tab2_top + $tab2_hl * $index);
				$pdf->MultiCell($largcol2, $tab2_hl, price($object->total_ttc, 0, $outputlangs), $useborder, 'R', 1);
				$pdf->SetFont('', 'B', $default_font_size - 1);
				$pdf->SetTextColor(0, 0, 0);

The pdf templates code (pdf_aurore) is not commented out but yet the totals do not show at the bottom. Any idea how I can show the totals at the bottom?